0

我正在使用 factory_boy 创建我正在开发的应用程序的工厂。我在尝试创建与另一个模型具有一对一关系的模型工厂时遇到问题。

以下是模型:

class Playlist(AccountDependantMixin, models.Model):
    test = models.OneToOneField('core.PlaylistTest', related_name='playlist')

class PlaylistTest(Test):
    pass

AccountDependantMixin 是一个包含额外信息的类。它在外面,因为其他模型也需要它。我有不同类型的测试。这就是 PlaylistTest 为空的原因

这是工厂:

class PlaylistTestFactory(factory.DjangoModelFactory):
    class Meta:
        model = PlaylistTest


class PlaylistFactory(factory.DjangoModelFactory):
    class Meta:
        model = Playlist       
    test = factory.SubFactory(PlaylistTestFactory)

这是我尝试使用工厂初始化实例的方式:

self.playlist = PlaylistFactory(creator=AdminUserFactory(account=self.account))

我收到以下错误:

IntegrityError: null value in column "test_id" violates not-null constraint
DETAIL:  Failing row contains (1, , playlist0, sub_title0, description0, 0, t, f, 2016-03-31 12:49:23.739207+00, 0, 2, 1, null)
4

2 回答 2

1

test = factory.RelatedFactory(PlaylistTestFactory)

您需要使用 aSubFactory而不是 aRelatedFactory以便它首先创建测试对象:

RelatedFactory 的行为主要类似于 SubFactory,主要区别在于相关 Factory 将在基础 Factory之后生成。

https://factoryboy.readthedocs.org/en/latest/reference.html#factory.RelatedFactory

于 2016-03-31T15:18:39.240 回答
0

问题是我有另一个模型与另一个从测试继承的一对一到另一个类。

我将子工厂添加到这个其他类的工厂中,问题就解决了。

于 2016-04-04T13:22:08.613 回答