Example #1
0
    def test_on_chord_part_return(self, setresult):
        tb = CacheBackend(backend="memory://")

        deps = Mock()
        deps.total = 2
        setresult.restore.return_value = deps
        task = Mock()
        task.name = "foobarbaz"
        try:
            current_app.tasks["foobarbaz"] = task
            task.request.chord = subtask(task)
            task.request.taskset = "setid"

            tb.on_chord_apply(task.request.taskset, [])

            self.assertFalse(deps.join.called)
            tb.on_chord_part_return(task)
            self.assertFalse(deps.join.called)

            tb.on_chord_part_return(task)
            deps.join.assert_called_with(propagate=False)
            deps.delete.assert_called_with()

        finally:
            current_app.tasks.pop("foobarbaz")
Example #2
0
    def test_mget(self):
        tb = CacheBackend(backend="memory://")
        tb.set("foo", 1)
        tb.set("bar", 2)

        self.assertDictEqual(tb.mget(["foo", "bar"]),
                             {"foo": 1, "bar": 2})
Example #3
0
    def test_on_chord_part_return(self, restore):
        tb = CacheBackend(backend='memory://', app=self.app)

        deps = Mock()
        deps.__len__ = Mock()
        deps.__len__.return_value = 2
        restore.return_value = deps
        task = Mock()
        task.name = 'foobarbaz'
        self.app.tasks['foobarbaz'] = task
        task.request.chord = signature(task)

        result = self.app.GroupResult(
            uuid(),
            [self.app.AsyncResult(uuid()) for _ in range(3)],
        )
        task.request.group = result.id
        tb.apply_chord(result, None)

        deps.join_native.assert_not_called()
        tb.on_chord_part_return(task.request, 'SUCCESS', 10)
        deps.join_native.assert_not_called()

        tb.on_chord_part_return(task.request, 'SUCCESS', 10)
        deps.join_native.assert_called_with(propagate=True, timeout=3.0)
        deps.delete.assert_called_with()
Example #4
0
 def test_forget(self):
     tb = CacheBackend(backend="memory://")
     tid = gen_unique_id()
     tb.mark_as_done(tid, {"foo": "bar"})
     x = AsyncResult(tid, backend=tb)
     x.forget()
     self.assertIsNone(x.result)
Example #5
0
    def test_on_chord_part_return(self, setresult):
        tb = CacheBackend(backend='memory://')

        deps = Mock()
        deps.__len__ = Mock()
        deps.__len__.return_value = 2
        setresult.restore.return_value = deps
        task = Mock()
        task.name = 'foobarbaz'
        try:
            current_app.tasks['foobarbaz'] = task
            task.request.chord = subtask(task)

            gid, res = uuid(), [AsyncResult(uuid()) for _ in range(3)]
            task.request.group = gid
            tb.on_chord_apply(gid, {}, result=res)

            self.assertFalse(deps.join_native.called)
            tb.on_chord_part_return(task)
            self.assertFalse(deps.join_native.called)

            tb.on_chord_part_return(task)
            deps.join_native.assert_called_with(propagate=True)
            deps.delete.assert_called_with()

        finally:
            current_app.tasks.pop('foobarbaz')
Example #6
0
    def test_on_chord_part_return(self, setresult):
        tb = CacheBackend(backend='memory://')

        deps = Mock()
        deps.__len__ = Mock()
        deps.__len__.return_value = 2
        setresult.restore.return_value = deps
        task = Mock()
        task.name = 'foobarbaz'
        try:
            current_app.tasks['foobarbaz'] = task
            task.request.chord = subtask(task)
            task.request.group = 'group_id'

            tb.on_chord_apply(task.request.group, [])

            self.assertFalse(deps.join.called)
            tb.on_chord_part_return(task)
            self.assertFalse(deps.join.called)

            tb.on_chord_part_return(task)
            deps.join.assert_called_with(propagate=False)
            deps.delete.assert_called_with()

        finally:
            current_app.tasks.pop('foobarbaz')
Example #7
0
    def test_deduplicate_successful_tasks__result_not_found(self):
        @self.app.task(shared=False)
        def add(x, y):
            return x + y

        backend = CacheBackend(app=self.app, backend='memory')
        add.backend = backend
        add.store_eager_result = True
        add.ignore_result = False
        add.acks_late = True

        self.app.conf.worker_deduplicate_successful_tasks = True
        task_id = str(uuid4())
        request = {'id': task_id, 'delivery_info': {'redelivered': True}}

        with patch('celery.app.trace.AsyncResult') as async_result_mock:
            assert trace(self.app,
                         add, (1, 1),
                         task_id=task_id,
                         request=request) == (2, None)
            state_property = PropertyMock(side_effect=BackendGetMetaError)
            type(async_result_mock()).state = state_property
            assert trace(self.app,
                         add, (1, 1),
                         task_id=task_id,
                         request=request) == (2, None)

        self.app.conf.worker_deduplicate_successful_tasks = False
Example #8
0
    def test_deduplicate_successful_tasks__no_deduplication(self):
        @self.app.task(shared=False)
        def add(x, y):
            return x + y

        backend = CacheBackend(app=self.app, backend='memory')
        add.backend = backend
        add.store_eager_result = True
        add.ignore_result = False
        add.acks_late = True

        self.app.conf.worker_deduplicate_successful_tasks = True
        task_id = str(uuid4())
        request = {'id': task_id, 'delivery_info': {'redelivered': True}}

        with patch('celery.app.trace.AsyncResult') as async_result_mock:
            async_result_mock().state.return_value = PENDING
            assert trace(self.app,
                         add, (1, 1),
                         task_id=task_id,
                         request=request) == (2, None)
            assert trace(self.app,
                         add, (1, 1),
                         task_id=task_id,
                         request=request) == (2, None)

        self.app.conf.worker_deduplicate_successful_tasks = False
Example #9
0
 def test_memory_client_is_shared(self):
     """This test verifies that memory:// backend state is shared over multiple threads"""
     from threading import Thread
     t = Thread(target=lambda: CacheBackend(
         backend='memory://', app=self.app).set('test', 12345))
     t.start()
     t.join()
     assert self.tb.client.get('test') == 12345
Example #10
0
 def test_apply_chord(self):
     tb = CacheBackend(backend='memory://', app=self.app)
     result = self.app.GroupResult(
         uuid(),
         [self.app.AsyncResult(uuid()) for _ in range(3)],
     )
     tb.apply_chord(result, None)
     assert self.app.GroupResult.restore(result.id, backend=tb) == result
    def test_mark_as_failure(self):
        tb = CacheBackend(backend="memory://")

        tid3 = gen_unique_id()
        try:
            raise KeyError("foo")
        except KeyError, exception:
            pass
Example #12
0
 def test_no_backend(self):
     prev, self.app.conf.CELERY_CACHE_BACKEND = (
         self.app.conf.CELERY_CACHE_BACKEND, None,
     )
     try:
         with self.assertRaises(ImproperlyConfigured):
             CacheBackend(backend=None, app=self.app)
     finally:
         self.app.conf.CELERY_CACHE_BACKEND = prev
    def test_is_pickled(self):
        tb = CacheBackend(backend="memory://")

        tid2 = gen_unique_id()
        result = {"foo": "baz", "bar": SomeClass(12345)}
        tb.mark_as_done(tid2, result)
        # is serialized properly.
        rindb = tb.get_result(tid2)
        self.assertEqual(rindb.get("foo"), "baz")
        self.assertEqual(rindb.get("bar").data, 12345)
    def test_mark_as_done(self):
        tb = CacheBackend(backend="memory://")

        tid = gen_unique_id()

        self.assertEqual(tb.get_status(tid), states.PENDING)
        self.assertIsNone(tb.get_result(tid))

        tb.mark_as_done(tid, 42)
        self.assertEqual(tb.get_status(tid), states.SUCCESS)
        self.assertEqual(tb.get_result(tid), 42)
Example #15
0
    def test_mark_as_failure(self):
        tb = CacheBackend(backend="memory://")

        tid3 = uuid()
        try:
            raise KeyError("foo")
        except KeyError, exception:
            pass
            tb.mark_as_failure(tid3, exception)
            self.assertEqual(tb.get_status(tid3), states.FAILURE)
            self.assertIsInstance(tb.get_result(tid3), KeyError)
Example #16
0
    def test_deduplicate_successful_tasks__deduplication(self):
        @self.app.task(shared=False)
        def add(x, y):
            return x + y

        backend = CacheBackend(app=self.app, backend='memory')
        add.backend = backend
        add.store_eager_result = True
        add.ignore_result = False
        add.acks_late = True

        self.app.conf.worker_deduplicate_successful_tasks = True
        task_id = str(uuid4())
        request = {'id': task_id, 'delivery_info': {'redelivered': True}}

        assert trace(self.app, add, (1, 1), task_id=task_id,
                     request=request) == (2, None)
        assert trace(self.app, add, (1, 1), task_id=task_id,
                     request=request) == (None, None)

        self.app.conf.worker_deduplicate_successful_tasks = False
Example #17
0
    def test_on_chord_part_return(self, restore):
        tb = CacheBackend(backend='memory://', app=self.app)

        deps = Mock()
        deps.__len__ = Mock()
        deps.__len__.return_value = 2
        restore.return_value = deps
        task = Mock()
        task.name = 'foobarbaz'
        self.app.tasks['foobarbaz'] = task
        task.request.chord = signature(task)

        gid, res = uuid(), [self.app.AsyncResult(uuid()) for _ in range(3)]
        task.request.group = gid
        tb.on_chord_apply(gid, {}, result=res)

        self.assertFalse(deps.join_native.called)
        tb.on_chord_part_return(task)
        self.assertFalse(deps.join_native.called)

        tb.on_chord_part_return(task)
        deps.join_native.assert_called_with(propagate=True)
        deps.delete.assert_called_with()
Example #18
0
 def setup(self):
     self.tb = CacheBackend(backend='memory://', app=self.app)
     self.tid = uuid()
     self.old_get_best_memcached = backends['memcache']
     backends['memcache'] = lambda: (DummyClient, ensure_bytes)
Example #19
0
 def test_no_backend(self):
     self.app.conf.CELERY_CACHE_BACKEND = None
     with self.assertRaises(ImproperlyConfigured):
         CacheBackend(backend=None, app=self.app)
 def test_process_cleanup(self):
     tb = CacheBackend(backend="memory://")
     tb.process_cleanup()
Example #21
0
 def setup(self):
     self.tb = CacheBackend(backend='memory://', app=self.app)
     self.tid = uuid()
Example #22
0
 def test_no_backend(self):
     self.app.conf.cache_backend = None
     with pytest.raises(ImproperlyConfigured):
         CacheBackend(backend=None, app=self.app)
 def test_apply_chord(self):
     tb = CacheBackend(backend='memory://', app=self.app)
     gid, res = uuid(), [self.app.AsyncResult(uuid()) for _ in range(3)]
     tb.apply_chord(group(app=self.app), (), gid, {}, result=res)
Example #24
0
 def setup(self):
     self.app.conf.result_serializer = 'pickle'
     self.tb = CacheBackend(backend='memory://', app=self.app)
     self.tid = uuid()
     self.old_get_best_memcached = backends['memcache']
     backends['memcache'] = lambda: (DummyClient, ensure_bytes)
Example #25
0
 def test_as_uri_multiple_servers(self):
     backend = 'memcache://127.0.0.1:11211;127.0.0.2:11211;127.0.0.3/'
     b = CacheBackend(backend=backend, app=self.app)
     assert b.as_uri() == backend
Example #26
0
 def test_as_uri_one_server(self):
     backend = 'memcache://127.0.0.1:11211/'
     b = CacheBackend(backend=backend, app=self.app)
     assert b.as_uri() == backend
Example #27
0
 def test_unknown_backend_raises_ImproperlyConfigured(self):
     with pytest.raises(ImproperlyConfigured):
         CacheBackend(backend='unknown://', app=self.app)
Example #28
0
 def test_expires_as_int(self):
     tb = CacheBackend(backend='memory://', expires=10, app=self.app)
     assert tb.expires == 10
 def test_expires_as_int(self):
     tb = CacheBackend(backend="memory://", expires=10)
     self.assertEqual(tb.expires, 10)
 def test_expires_as_int(self):
     tb = CacheBackend(backend='memory://', expires=10, app=self.app)
     self.assertEqual(tb.expires, 10)