单元测试Flask视图嘲笑芹菜任务

时间:2013-06-16 10:40:34

标签: python unit-testing mocking flask celery

所以,我有一个烧瓶视图,它将芹菜任务添加到队列中,并向用户返回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

问题在于测试以下内容,我不想要有芹菜实例等等。我只是想知道在所有验证都没问题后,它会向用户返回200。芹菜launch_task()将在其他地方进行测试。

因此,我很想模仿launch_task()调用,所以基本上什么都不做,使我的单元测试独立于芹菜实例。

我尝试了各种各样的化身:

@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错误。任何帮助将不胜感激!

2 个答案:

答案 0 :(得分: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()

答案 1 :(得分:1)

@task装饰器用Task对象替换该函数(参见documentation)。如果您模拟任务本身,您将用Task替换(有些神奇的)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)