繁体   English   中英

在单元测试中打补丁时,由 Celery 任务调用的函数没有调用?

[英]Function called by a Celery task has no calls when patched in a unit test?

考虑以下tasks.py模块(改编自http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html#first-steps ):

import logging
import sys

from celery import Celery

app = Celery('tasks', broker='pyamqp://guest@localhost//')


@app.task
def add(x, y):
    logging.info(f"Adding {x} and {y}...")
    return x + y


def call_add(x, y):
    add.delay(x, y)

在同一个目录中,我有一个test_tasks.py测试模块,它读取

from unittest.mock import patch

import tasks


@patch('logging.info')
def test_adder(info_mock):
    tasks.call_add(1, 2)

    info_mock.assert_not_called()

这个测试通过了(如果我用pytest test_tasks.py运行它),但我不确定为什么没有调用info_mock 我希望以下断言通过

info_mock.assert_called_with("Adding 1 and 2...")

为什么在这个例子中没有通过tasks.call_add()调用logging.info 在我看来,它等同于http://docs.celeryproject.org/en/latest/userguide/testing.html 中给出的示例。

确保在运行单元测试时直接在同一进程中运行测试。

Celery 使得在“同步”运行任务时保持相同的 API 变得非常简单,并跳过损坏的/工作器部分。

app = Celery('tasks', broker='pyamqp://guest@localhost//', task_always_eager=True)

http://docs.celeryproject.org/en/latest/userguide/configuration.html#task-always-eager

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM