我正在使用 Satchmo 购物车软件进行 Django 项目。我必须为这个项目使用相当复杂的自定义代码,因此希望所有 Django 和 Satchmo 测试都能通过。
但是,其中一项测试只能单独使用,准确地说是custom.ShopTest.test_custom_product
在product/modules/custom/tests.py
. 该测试单独运行(即使用./manage.py test custom.ShopTest
),但当我一起运行所有测试时(./manage.py test
)就不行了。
此测试使用 Django 测试客户端打开主页,并断言页面上是否包含某些文本。当我在生产数据库中加载相同的夹具时,这些文本也在页面上。
另外,当测试开始时,应该在页面上显示标题的产品也确实存在于测试数据库中,因此夹具加载正确。
我认为其他一些 Satchmo 应用程序以某种方式破坏了测试,但我一直认为 Django 尽可能独立地运行测试。
编辑:
失败测试的输出是:
======================================================================
FAIL: test_custom_product (product.modules.custom.tests.ShopTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/Projects/satchmo/satchmo/apps/product/modules/custom/tests.py", line 43, in test_custom_product
self.assertContains(response, "Computer", count=1)
File "/data/PythonEnvironments/mywebsite.nl/local/lib/python2.7/site-packages/django/test/testcases.py", line 427, in assertContains
" (expected %d)" % (real_count, text, count))
AssertionError: Found 0 instances of 'Computer' in response (expected 1)
----------------------------------------------------------------------
编辑2:我刚刚发现,当我在请求的视图函数中放置一个断点时,测试并不总是发生,并在调试器在断点处停止时等待一段时间再继续。也许这与线程有关?