X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2e5ac62b550f7dd608cf133ae66ef04f801be76b..8eb65b21a7b7eea1f987d7fec9cb8ac65de2aeb2:/sdk/python/tests/test_api.py diff --git a/sdk/python/tests/test_api.py b/sdk/python/tests/test_api.py index 576e47ae3d..faaaac307c 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() @@ -76,6 +100,13 @@ class ArvadosApiClientTest(unittest.TestCase): self.api.humans().delete(uuid='xyz-xyz-abcdef').execute() self.assertIn("500", str(err_ctx.exception)) + def test_request_too_large(self): + api = arvados.api('v1') + maxsize = api._rootDesc.get('maxRequestSize', 0) + with self.assertRaises(apiclient_errors.MediaUploadSizeError): + text = "X" * maxsize + arvados.api('v1').collections().create(body={"manifest_text": text}).execute() + if __name__ == '__main__': unittest.main()