Using django-nose and django-celery together — unit testing

风流意气都作罢 提交于 2019-12-13 12:56:50

问题


I have a django project that used django-nose. I'd like to add django-celery to the project. I use unit tests. Both django-nose and django-celery need a TEST_RUNNER setting in my settings.py file. Specifically:

TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'

for django-nose and:

TEST_RUNNER = 'djcelery.contrib.test_runner.CeleryTestSuiteRunner'

for django-celery.

How should I handle this so that I can use both packages?


回答1:


I found that the best way to handle this is to skip the Celery test runner. I just use decorate my celery-using tests with a @override_settings(CELERY_ALWAYS_EAGER=True) and everything gets tested nicely.




回答2:


If you're able to isolate your tests into celery and non-celery dependent functionality, you could try overriding settings on the test classes that invoke celery tasks:

from django.test.utils import override_settings

@override_settings(TEST_RUNNER='djcelery.contrib.test_runner.CeleryTestSuiteRunner')
class AsyncTestCase(TestCase):
     def test_async(self):
         self.assertEquals(add.delay(4,4), 8)

while the NoseTestRunner would be set as the default in settings.py




回答3:


You can subclass Celery runner and Nose runner, then you get good sides for all of them.

from django_nose import NoseTestSuiteRunner
from djcelery.contrib.test_runner import CeleryTestSuiteRunner

class TestRunner(CeleryTestSuiteRunner, NoseTestSuiteRunner):
    pass

Then in your settings:

TEST_RUNNER = '<package to>.TestRunner'

Why it works:

help(TestRunner)

You get:

|  Method resolution order:
|      TestRunner
|      djcelery.contrib.test_runner.CeleryTestSuiteRunner
|      django_nose.runner.NoseTestSuiteRunner
|      django_nose.runner.BasicNoseRunner
|      django_nose.runner.BaseRunner
|      django.test.runner.DiscoverRunner
|      builtins.object

The test CeleryTestRunner did nothing just setting some config and then call super().setup_test_environment(). Then the super will looking for setup_test_environment() in that chain.

Watch the video from Raymond Hettinger: super considered super(here).



来源:https://stackoverflow.com/questions/15582770/using-django-nose-and-django-celery-together-unit-testing

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!