forked from celery/pytest-celery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconftest.py
57 lines (39 loc) · 1.48 KB
/
conftest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from unittest.mock import Mock
from unittest.mock import patch
import pytest
from pytest_celery import CeleryWorkerContainer
from pytest_celery import LocalstackContainer
from pytest_celery import MemcachedContainer
from pytest_celery import RabbitMQContainer
from pytest_celery import RedisContainer
@pytest.fixture(autouse=True)
def mock_wait_for_callable():
with patch("pytest_celery.api.base.wait_for_callable", new=Mock()):
with patch("pytest_celery.api.container.wait_for_callable", new=Mock()):
yield
def mocked_container(spec: type) -> Mock:
mocked_container = Mock(spec=spec)
mocked_container.id = "mocked_test_container_id"
mocked_container.celeryconfig = {
"url": "mocked_url/",
"host_url": "mocked_host_url/",
}
return mocked_container
@pytest.fixture
def default_localstack_broker() -> LocalstackContainer:
return mocked_container(LocalstackContainer)
@pytest.fixture
def default_memcached_backend() -> MemcachedContainer:
return mocked_container(MemcachedContainer)
@pytest.fixture
def default_rabbitmq_broker() -> RabbitMQContainer:
return mocked_container(RabbitMQContainer)
@pytest.fixture
def default_redis_backend() -> RedisContainer:
return mocked_container(RedisContainer)
@pytest.fixture
def default_redis_broker() -> RedisContainer:
return mocked_container(RedisContainer)
@pytest.fixture
def default_worker_container() -> CeleryWorkerContainer:
return mocked_container(CeleryWorkerContainer)