X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4609a76d9b84e0f63233cdf6dcbef376b1686b69..372aaff2b572ce772fafc506e9c57d465eb823f6:/sdk/python/tests/test_websockets.py diff --git a/sdk/python/tests/test_websockets.py b/sdk/python/tests/test_websockets.py index 6b57fe3c8e..d879ebe1f8 100644 --- a/sdk/python/tests/test_websockets.py +++ b/sdk/python/tests/test_websockets.py @@ -1,32 +1,40 @@ +import Queue import run_test_server import unittest import arvados import arvados.events -import time +import mock +import threading + +class WebsocketTest(run_test_server.TestCaseWithServers): + MAIN_SERVER = {} -class WebsocketTest(unittest.TestCase): def setUp(self): - run_test_server.run(websockets=True) + self.ws = None - def on_event(self, ev): - if self.state == 1: - self.assertEqual(200, ev['status']) - self.state = 2 - elif self.state == 2: - self.assertEqual(self.h[u'uuid'], ev[u'object_uuid']) - self.state = 3 - elif self.state == 3: - self.fail() + def tearDown(self): + if self.ws: + self.ws.close() + super(WebsocketTest, self).tearDown() - def runTest(self): - self.state = 1 + def _test_subscribe(self, poll_fallback, expect_type): + run_test_server.authorize_with('active') + events = Queue.Queue(3) + self.ws = arvados.events.subscribe( + arvados.api('v1'), [['object_uuid', 'is_a', 'arvados#human']], + events.put, poll_fallback=poll_fallback) + self.assertIsInstance(self.ws, expect_type) + self.assertEqual(200, events.get(True, 10)['status']) + human = arvados.api('v1').humans().create(body={}).execute() + self.assertEqual(human['uuid'], events.get(True, 10)['object_uuid']) + self.assertTrue(events.empty(), "got more events than expected") - run_test_server.authorize_with("admin") - api = arvados.api('v1', cache=False) - arvados.events.subscribe(api, [['object_uuid', 'is_a', 'arvados#human']], lambda ev: self.on_event(ev)) - time.sleep(1) - self.h = api.humans().create(body={}).execute() - time.sleep(1) + def test_subscribe_websocket(self): + self._test_subscribe( + poll_fallback=False, expect_type=arvados.events.EventClient) - def tearDown(self): - run_test_server.stop() + @mock.patch('arvados.events.EventClient.__init__') + def test_subscribe_poll(self, event_client_constr): + event_client_constr.side_effect = Exception('All is well') + self._test_subscribe( + poll_fallback=1, expect_type=arvados.events.PollClient)