12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- from __future__ import absolute_import, unicode_literals
- import pytest
- from case import Mock, patch, skip
- from celery.exceptions import ImproperlyConfigured
- from celery.worker.components import Beat, Hub, Pool, Timer
- # some of these are tested in test_worker, so I've only written tests
- # here to complete coverage. Should move everyting to this module at some
- # point [-ask]
- class test_Timer:
- def test_create__eventloop(self):
- w = Mock(name='w')
- w.use_eventloop = True
- Timer(w).create(w)
- assert not w.timer.queue
- class test_Hub:
- def setup(self):
- self.w = Mock(name='w')
- self.hub = Hub(self.w)
- self.w.hub = Mock(name='w.hub')
- @patch('celery.worker.components.set_event_loop')
- @patch('celery.worker.components.get_event_loop')
- def test_create(self, get_event_loop, set_event_loop):
- self.hub._patch_thread_primitives = Mock(name='ptp')
- assert self.hub.create(self.w) is self.hub
- self.hub._patch_thread_primitives.assert_called_with(self.w)
- def test_start(self):
- self.hub.start(self.w)
- def test_stop(self):
- self.hub.stop(self.w)
- self.w.hub.close.assert_called_with()
- def test_terminate(self):
- self.hub.terminate(self.w)
- self.w.hub.close.assert_called_with()
- class test_Pool:
- def test_close_terminate(self):
- w = Mock()
- comp = Pool(w)
- pool = w.pool = Mock()
- comp.close(w)
- pool.close.assert_called_with()
- comp.terminate(w)
- pool.terminate.assert_called_with()
- w.pool = None
- comp.close(w)
- comp.terminate(w)
- @skip.if_win32()
- def test_create_when_eventloop(self):
- w = Mock()
- w.use_eventloop = w.pool_putlocks = w.pool_cls.uses_semaphore = True
- comp = Pool(w)
- w.pool = Mock()
- comp.create(w)
- assert w.process_task is w._process_task_sem
- def test_create_calls_instantiate_with_max_memory(self):
- w = Mock()
- w.use_eventloop = w.pool_putlocks = w.pool_cls.uses_semaphore = True
- comp = Pool(w)
- comp.instantiate = Mock()
- w.max_memory_per_child = 32
- comp.create(w)
- assert comp.instantiate.call_args[1]['max_memory_per_child'] == 32
- class test_Beat:
- def test_create__green(self):
- w = Mock(name='w')
- w.pool_cls.__module__ = 'foo_gevent'
- with pytest.raises(ImproperlyConfigured):
- Beat(w).create(w)
|