X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/cb79358321eff7a49dd4a3fb6e0ea448ead92597..6ee389b798bd7898e16b8ab8bf9394bf97c40f46:/sdk/python/tests/test_api.py diff --git a/sdk/python/tests/test_api.py b/sdk/python/tests/test_api.py index 576e47ae3d..5cf2d2b58c 100644 --- a/sdk/python/tests/test_api.py +++ b/sdk/python/tests/test_api.py @@ -59,11 +59,35 @@ class ArvadosApiClientTest(unittest.TestCase): for index in [0, 1]] self.assertIsNot(*clients) - def test_basic_list(self): - answer = self.api.humans().list( + def test_empty_list(self): + answer = arvados.api('v1').humans().list( filters=[['uuid', 'is', None]]).execute() self.assertEqual(answer['items_available'], len(answer['items'])) + def test_nonempty_list(self): + answer = arvados.api('v1').collections().list().execute() + self.assertNotEqual(0, answer['items_available']) + self.assertNotEqual(0, len(answer['items'])) + + def test_timestamp_inequality_filter(self): + api = arvados.api('v1') + new_item = api.specimens().create(body={}).execute() + for operator, should_include in [ + ['<', False], ['>', False], + ['<=', True], ['>=', True], ['=', True]]: + response = api.specimens().list(filters=[ + ['created_at', operator, new_item['created_at']], + # Also filter by uuid to ensure (if it matches) it's on page 0 + ['uuid', '=', new_item['uuid']]]).execute() + uuids = [item['uuid'] for item in response['items']] + did_include = new_item['uuid'] in uuids + self.assertEqual( + did_include, should_include, + "'%s %s' filter should%s have matched '%s'" % ( + operator, new_item['created_at'], + ('' if should_include else ' not'), + new_item['created_at'])) + def test_exceptions_include_errors(self): with self.assertRaises(apiclient_errors.HttpError) as err_ctx: self.api.humans().get(uuid='xyz-xyz-abcdef').execute()