Browse Source

Changed the leapidatasource's update_rank method according to the LeRelation.set_rank method's changes

Roland Haroutiounian 9 years ago
parent
commit
6b92ec7d9b
3 changed files with 7 additions and 54 deletions
  1. 6
    22
      DataSource/MySQL/leapidatasource.py
  2. 0
    25
      leapi/lerelation.py
  3. 1
    7
      leapi/test/test_lerelation.py

+ 6
- 22
DataSource/MySQL/leapidatasource.py View File

@@ -406,36 +406,20 @@ class LeDataSourceSQL(DummyDatasource):
406 406
         self._set_relation_rank(id_relation, rank)
407 407
 
408 408
     ## @brief Sets a new rank on a relation
409
-    # @param id_relation int: relation ID
410
-    # @param rank int|str|tuple : 'first', 'last', an integer value or a (operator, value) tuple (for the shifting)
411
-    # @throw leapi.leapi.LeObjectQueryError if id_relation doesn't exist
412
-    #
409
+    # @param le_relation LeRelation
410
+    # @param new_rank int: integer representing the absolute new rank
411
+    # @return True if success, False if failure
413 412
     # TODO Conserver cette méthode dans le datasource du fait des requêtes SQL. Elle est appelée par le set_rank de LeRelation
414
-    def update_rank(self, id_relation, rank):
415
-        ret = self.get_relation(id_relation, no_attr=True)
413
+    def update_rank(self, le_relation, rank):
414
+        ret = self.get_relation(le_relation.id_relation, no_attr=True)
416 415
         if not ret:
417
-            raise leapi.leapi.LeObjectQueryError("No relation with id_relation = %d" % id_relation)
416
+            raise leapi.leapi.LeObjectQueryError("No relation with id_relation = %d" % le_relation.id_relation)
418 417
         lesup = ret['lesup']
419 418
         lesub = ret['lesub']
420 419
         current_rank = ret['rank']
421 420
 
422
-        # In case we passed an (operator, value) tuple, we will recalculate the new rank
423
-        if isinstance(rank, tuple):
424
-            operator = rank[0]
425
-            step_value = rank[1]
426
-            rank = current_rank + step_value if operator == '+' else current_rank - step_value
427
-
428
-        rank = 1 if rank == 'first' or rank < 1 else rank
429
-        if current_rank == rank:
430
-            return True
431
-
432 421
         relations = self.get_related(lesup, lesub.__class__, get_sub=True)
433 422
 
434
-        if rank == 'last' or rank > len(relations):
435
-            rank = len(relations)
436
-            if current_rank == rank:
437
-                return True
438
-
439 423
         # insert the relation at the right position considering its new rank
440 424
         our_relation = relations.pop(current_rank)
441 425
         relations.insert(our_relation, rank)

+ 0
- 25
leapi/lerelation.py View File

@@ -135,31 +135,6 @@ class _LeRelation(lecrud._LeCrud):
135 135
     def get_max_rank(self):
136 136
         pass
137 137
 
138
-    @classmethod
139
-    ## @brief checks if a rank value is valid
140
-    # @param rank str|int
141
-    # @return tuple|str|int The tuple is for the case using an operator and a step (i.e. '+x' => ('+','x'))
142
-    # @throw ValueError if the rank value or type is not valid
143
-    def _parse_rank(cls, rank):
144
-        if isinstance(rank, str):
145
-            if rank == 'first' or rank == 'last':
146
-                return rank
147
-            else:
148
-                compiled_regular_expression = re.compile('([+]?)([0-9]+)')
149
-                matching_groups = compiled_regular_expression.search(rank)
150
-                if matching_groups:
151
-                    return (matching_groups.group(1), matching_groups.group(2))
152
-                else:
153
-                    raise ValueError("Invalid rank value : %s" % rank)
154
-        elif isinstance(rank, int):
155
-            if rank < 1:
156
-                raise ValueError("Invalid rank value : %d" % rank)
157
-            else:
158
-                return rank
159
-        else:
160
-            raise ValueError("Invalid rank type : %s" % type(rank))
161
-
162
-
163 138
 ## @brief Abstract class to handle hierarchy relations
164 139
 class _LeHierarch(_LeRelation):
165 140
     

+ 1
- 7
leapi/test/test_lerelation.py View File

@@ -77,13 +77,7 @@ class LeRelationTestCase(TestCase):
77 77
         dsmock.assert_called_once_with(LeHierarch, [('lesup', '=', Numero(42)), ('nature','=','"parent"')])
78 78
         dsmock.reset_mock()
79 79
 
80
-    def test_check_rank(self):
81
-        """ Testing set_rank method """
82
-        from dyncode import LeRelation
83
-        self.assertEqual(LeRelation._parse_rank('+2'), ('+', '2'))
84
-        self.assertTrue(LeRelation._parse_rank(3), 3)
85
-        self.assertRaises(ValueError,LeRelation._parse_rank, 'print')
86
-
80
+    
87 81
 class LeHierarch(LeRelationTestCase):
88 82
     
89 83
     @patch('DataSource.dummy.leapidatasource.DummyDatasource.select')

Loading…
Cancel
Save