9

所以,我有一个烧瓶视图,它将芹菜任务添加到队列中,并向用户返回 200。

from flask.views import MethodView
from app.tasks import launch_task

class ExampleView(MethodView):
    def post(self):
        # Does some verification of the incoming request, if all good:
        launch_task(task, arguments)
        return 'Accepted', 200

问题在于测试以下内容,我不想拥有 celery 实例等。我只想知道,在所有验证都正常之后,它会向用户返回 200。芹菜launch_task()将在别处进行测试。

因此,我热衷于模拟该launch_task()调用,因此基本上它什么都不做,使我的单元测试独立于 celery 实例。

我尝试了各种化身:

@mock.patch('app.views.launch_task.delay'):
def test_launch_view(self, mock_launch_task):
    mock_launch_task.return_value = None
    # post a correct dictionary to the view
    correct_data = {'correct': 'params'}
    rs.self.app.post('/launch/', data=correct_data)
    self.assertEqual(rs.status_code, 200)

@mock.patch('app.views.launch_task'):
def test_launch_view(self, mock_launch_task):
    mock_launch_task.return_value = None
    # post a correct dictionary to the view
    correct_data = {'correct': 'params'}
    rs.self.app.post('/launch/', data=correct_data)
    self.assertEqual(rs.status_code, 200)

但似乎无法让它工作,我的视图只是以 500 错误退出。任何援助将不胜感激!

4

2 回答 2

4

我也尝试了任何@patch装饰器但它没有工作我发现模拟setUp如下:

import unittest
from mock import patch
from mock import MagicMock

class TestLaunchTask(unittest.TestCase):
    def setUp(self):
        self.patcher_1 = patch('app.views.launch_task')
        mock_1 = self.patcher_1.start()

        launch_task = MagicMock()
        launch_task.as_string = MagicMock(return_value = 'test')
        mock_1.return_value = launch_task

    def tearDown(self):
        self.patcher_1.stop()
于 2013-06-16T11:03:22.937 回答
1

装饰器将@task函数替换为Task对象(参见文档)。如果您模拟任务本身,您将用Taska 替换(有点神奇的)对象,MagicMock它根本不会安排任务。而是模拟Task对象的run()方法,如下所示:

# With CELERY_ALWAYS_EAGER=True
@patch('monitor.tasks.monitor_user.run')
def test_monitor_all(self, monitor_user):
    """
    Test monitor.all task
    """

    user = ApiUserFactory()
    tasks.monitor_all.delay()
    monitor_user.assert_called_once_with(user.key)
于 2015-03-26T00:50:08.310 回答