Browse Source

Add two more operators for filters : "like" and "not like" + updates the associated tests

Yann Weber 9 years ago
parent
commit
7b22eef33b
2 changed files with 3 additions and 1 deletions
  1. 1
    1
      leapi/lecrud.py
  2. 2
    0
      leapi/test/test_lecrud.py

+ 1
- 1
leapi/lecrud.py View File

@@ -50,7 +50,7 @@ class _LeCrud(object):
50 50
     ## @brief Stores a regular expression to parse query filters strings
51 51
     _query_re = None
52 52
     ## @brief Stores Query filters operators
53
-    _query_operators = ['=', '<=', '>=', '!=', '<', '>', ' in ', ' not in ']
53
+    _query_operators = ['=', '<=', '>=', '!=', '<', '>', ' in ', ' not in ', ' like ', ' not like ']
54 54
 
55 55
     def __init__(self):
56 56
         raise NotImplementedError("Abstract class")

+ 2
- 0
leapi/test/test_lecrud.py View File

@@ -41,6 +41,8 @@ class LeCrudTestCase(TestCase):
41 41
             'hello != bar':('hello', '!=', 'bar'),
42 42
             'hello = "world>= <= != in not in"': ('hello', '=', '"world>= <= != in not in"'),
43 43
             'superior.parent = 13': ('superior.parent', '=', '13'),
44
+            'hello like "%world%"': ('hello', ' like ', '"%world%"'),
45
+            'world not like "foo%bar"': ('world', ' not like ', '"foo%bar"'),
44 46
         }
45 47
         for query, result in query_results.items():
46 48
             res = dyncode.LeCrud._split_filter(query)

Loading…
Cancel
Save