summaryrefslogtreecommitdiffstats
path: root/result_collection_api/opnfv_testapi/tests
diff options
context:
space:
mode:
authorSerenaFeng <feng.xiaowei@zte.com.cn>2016-06-04 14:58:14 +0800
committerSerenaFeng <feng.xiaowei@zte.com.cn>2016-06-04 15:13:14 +0800
commitaad984f2b471149f0c8ceaf2487583cb0e64edf1 (patch)
tree285295e1ad10b9220dab07ec54e3e01d46362a4d /result_collection_api/opnfv_testapi/tests
parentb0deca64aa30b264ce845ed67118c36ba76c391b (diff)
test APi evolution add filter to retrieve last results
add 'last' query parameter prcess in ResultsCLHandler.get() add 'sort' and 'last' parameters process in GenericApiHandler._list() add sort() and limit() fake in fake_pymongo.py JIRA: FUNCTEST-259 Change-Id: I96c1ff37325c65cf9c421f4277662dde28b1473d Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'result_collection_api/opnfv_testapi/tests')
-rw-r--r--result_collection_api/opnfv_testapi/tests/unit/fake_pymongo.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/result_collection_api/opnfv_testapi/tests/unit/fake_pymongo.py b/result_collection_api/opnfv_testapi/tests/unit/fake_pymongo.py
index e556968..9b4d120 100644
--- a/result_collection_api/opnfv_testapi/tests/unit/fake_pymongo.py
+++ b/result_collection_api/opnfv_testapi/tests/unit/fake_pymongo.py
@@ -32,6 +32,12 @@ class MemCursor(object):
self.count -= 1
return self.collection.pop()
+ def sort(self, key_or_list, direction=None):
+ return self
+
+ def limit(self, limit):
+ return self
+
class MemDb(object):