我需要在我的Django项目中做一些unit tests
。问题是几乎每个用例都依赖于预先填充的数据库对象。
例如,如果所有pre_save
信号都成功,我想创建一个产品并进行测试。
from django.contrib.auth.models import User
from django.test import TestCase
from .models import Product
class ProductTestCase(TestCase):
def setUp(self):
self.user = User.objects.create(username='test_user')
self.product = Product.objects.create(name='Test product',user=self.user)
def test_product_exists(self):
self.assertIsNotNone(self.product)
def product_is_active_by_default(self):
...
我无法做到这一点,因为产品必须与User
对象相关。但我无法创建User
对象,因为User
必须包含相关的plan
对象。我的生产数据库中有多个计划,其中一个是默认计划,但测试数据库中没有计划。
因此,为了能够进行单元测试,我需要使用多个应用程序中的多个对象预填充测试数据库。
我该怎么做?
答案 0 :(得分:8)
你可以简单地使用django灯具: - )
首先使用数据填充示例数据库,然后使用python manage.py dumpdata
导出数据然后在你的一个应用程序中创建一个名为fixtures
的目录并将导出的json文件放在那里(名为tests.json
或其他内容)
在您的测试类中加载像这样的
class ProductTestCase(TestCase):
fixtures = ['tests.json', ]
结帐django docs
PS:结帐工厂男孩也是(@Gabriel Muj)回答