Browse Source

Added a _parse_rank method in LeRelation and the corresponding tests

Roland Haroutiounian 9 years ago
parent
commit
5a21025d89
2 changed files with 32 additions and 0 deletions
  1. 26
    0
      leapi/lerelation.py
  2. 6
    0
      leapi/test/test_lerelation.py

+ 26
- 0
leapi/lerelation.py View File

@@ -1,6 +1,7 @@
1 1
 #-*- coding: utf-8 -*-
2 2
 
3 3
 import copy
4
+import re
4 5
 
5 6
 import EditorialModel.fieldtypes.leo as ft_leo
6 7
 from . import lecrud
@@ -81,6 +82,31 @@ class _LeRelation(lecrud._LeCrud):
81 82
         ret = cls._datasource.delete(target_class, filters)
82 83
         return True if ret == 1 else False
83 84
 
85
+    @classmethod
86
+    ## @brief checks if a rank value is valid
87
+    # @param rank str|int
88
+    # @return tuple|str|int The tuple is for the case using an operator and a step (i.e. '+x' => ('+','x'))
89
+    # @throw ValueError if the rank value or type is not valid
90
+    def _parse_rank(cls, rank):
91
+        if isinstance(rank, str):
92
+            if rank == 'first' or rank == 'last':
93
+                return rank
94
+            else:
95
+                compiled_regular_expression = re.compile('([+]?)([0-9]+)')
96
+                matching_groups = compiled_regular_expression.search(rank)
97
+                if matching_groups:
98
+                    return (matching_groups.group(1), matching_groups.group(2))
99
+                else:
100
+                    raise ValueError("Invalid rank value : %s" % rank)
101
+        elif isinstance(rank, int):
102
+            if rank < 1:
103
+                raise ValueError("Invalid rank value : %d" % rank)
104
+            else:
105
+                return rank
106
+        else:
107
+            raise ValueError("Invalid rank type : %s" % type(rank))
108
+
109
+
84 110
 ## @brief Abstract class to handle hierarchy relations
85 111
 class _LeHierarch(_LeRelation):
86 112
     

+ 6
- 0
leapi/test/test_lerelation.py View File

@@ -77,6 +77,12 @@ 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')
80 86
 
81 87
 class LeHierarch(LeRelationTestCase):
82 88
     

Loading…
Cancel
Save