celery_worker
灯具在测试烧瓶应用时不起作用,因为芹菜附带的pytest灯具不会在烧瓶应用环境中运行。
# tasks.py
@current_app.task(bind=True)
def some_task(name, sha):
return Release.query.filter_by(name=name, sha=sha).all()
# test_celery.py
def test_some_celery_task(celery_worker):
async_result = some_task.delay(default_appname, default_sha)
assert len(async_result.get()) == 0
上面的测试只会抛出RuntimeError: No application found.
和
拒绝参加。
通常在烧瓶项目中使用芹菜时,我们必须继承celery.Celery
并修补__call__
方法,以便实际的芹菜任务将在烧瓶应用程序上下文中运行,如下所示:
def make_celery(app):
celery = Celery(app.import_name)
celery.config_from_object('citadel.config')
class EruGRPCTask(Task):
abstract = True
def __call__(self, *args, **kwargs):
with app.app_context():
return super(EruGRPCTask, self).__call__(*args, **kwargs)
celery.Task = EruGRPCTask
celery.autodiscover_tasks(['citadel'])
return celery
但是看看celery.contrib.pytest,我认为没有简单的方法可以对这些灯具做同样的事情,即修改基本芹菜应用程序,以便任务可以在烧瓶应用程序上下文中运行。
答案 0 :(得分:0)
我没有使用celery.contrib.pytest
,但我想提出一个不错的解决方案。
首先,您需要将芹菜任务划分为sync
和async
部分。
这是sync_tasks.py
的一个例子:
def filtering_something(my_arg1):
# do something here
def processing_something(my_arg2):
# do something here
async_tasks.py
(或您的芹菜任务)的示例:
@current_app.task(bind=True)
def async_filtering_something(my_arg1):
# just call sync code from celery task...
return filtering_something(my_arg1)
@current_app.task(bind=True)
def async_processing_something(my_arg2):
processing_something(my_arg2)
# or one more call...
# or one more call...
在这种情况下,您可以编写所有功能的测试,而不依赖于Celery application
:
from unittest import TestCase
class SyncTasks(TestCase):
def test_filtering_something(self):
# ....
def test_processing_something(self):
# ....
有什么好处?
celery app
和flask app
分开。worker_pool
,brokers
,connection-pooling或其他方面遇到了问题。 celery.contrib.pytest
,但您可以通过100%的测试来覆盖您的代码。mocks
。 希望这有帮助。
答案 1 :(得分:0)
run.py
from flask import Flask
from celery import Celery
celery = Celery()
def make_celery(app):
celery.conf.update(app.config)
class ContextTask(celery.Task):
def __call__(self, *args, **kwargs):
with app.app_context():
return self.run(*args, **kwargs)
celery.Task = ContextTask
return celery
@celery.task
def add(x, y):
return x + y
def create_app():
app = Flask(__name__)
# CELERY_BROKER_URL
app.config['BROKER_URL'] = 'sqla+sqlite:///celerydb.sqlite'
app.config['CELERY_RESULT_BACKEND'] = 'db+sqlite:///results.sqlite'
make_celery(app)
return app
app = create_app()
test_celery.py
import pytest
from run import app as app_, add
@pytest.fixture(scope='session')
def app(request):
ctx = app_.app_context()
ctx.push()
def teardown():
ctx.pop()
request.addfinalizer(teardown)
return app_
@pytest.fixture(scope='session')
def celery_app(app):
from run import celery
# for use celery_worker fixture
from celery.contrib.testing import tasks # NOQA
return celery
def test_add(celery_app, celery_worker):
assert add.delay(1, 2).get() == 3
希望这对您有帮助!
有关Flask RESTful API,项目构建...的更多示例:https://github.com/TTWShell/hobbit-core
为什么不在celery.contrib.pytest中使用夹具celery_config
,celery_app
,celery_worker
?参见celery doc: Testing with Celery。
由于此实例Celery两次,一个在run.py
中,另一个在celery.contrib.pytest.celery_app
中。当我们delay
执行任务时,发生了错误。
我们为在烧瓶应用程序上下文中运行的芹菜重写了celery_app
。