通过factory_girl协会查找或创建记录
我有一个属于组的用户模型。组必须具有唯一的名称属性。用户工厂和组工厂定义为:
Factory.define :user do |f|
f.association :group, :factory => :group
# ...
end
Factory.define :group do |f|
f.name "default"
end
创建第一个用户时,也会创建一个新组。当我尝试创建第二个用户时,它失败了,因为它想再次创建相同的组。
有没有办法告诉factory_girl关联方法首先查找现有记录?
注意:我确实尝试定义一个方法来处理这个问题,但是我无法使用 f.association。我希望能够在像这样的 Cucumber 场景中使用它:
Given the following user exists:
| Email | Group |
| [email protected] | Name: mygroup |
并且只有在工厂定义中使用关联时这才有效。
I have a User model that belongs to a Group. Group must have unique name attribute. User factory and group factory are defined as:
Factory.define :user do |f|
f.association :group, :factory => :group
# ...
end
Factory.define :group do |f|
f.name "default"
end
When the first user is created a new group is created too. When I try to create a second user it fails because it wants to create same group again.
Is there a way to tell factory_girl association method to look first for an existing record?
Note: I did try to define a method to handle this, but then I cannot use f.association. I would like to be able to use it in Cucumber scenarios like this:
Given the following user exists:
| Email | Group |
| [email protected] | Name: mygroup |
and this can only work if association is used in Factory definition.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
您可以将
initialize_with
与find_or_create
方法一起使用它也可以与 id 一起使用
对于 Rails 4
Rails 4 中正确的方法是
Group .find_or_create_by(name: name)
,因此您可以使用它。
You can to use
initialize_with
withfind_or_create
methodIt can also be used with id
For Rails 4
The correct way in Rails 4 is
Group.find_or_create_by(name: name)
, so you'd useinstead.
我最终使用了在网络上找到的多种方法,其中一种是继承工厂,正如 duckyfuzz 在另一个答案中所建议的那样。
我做了以下事情:
I ended up using a mix of methods found around the net, one of them being inherited factories as suggested by duckyfuzz in another answer.
I did following:
您还可以使用 FactoryGirl 策略来实现此目的。
您可以使用此要点。
然后执行以下操作
,但这对我有用。
You can also use a FactoryGirl strategy to achieve this
You can use this gist.
And then do the following
This is working for me, though.
我遇到了类似的问题并提出了这个解决方案。它按名称查找组,如果找到,则将用户与该组关联起来。否则,它会按该名称创建一个组,然后与其关联。
我希望这对某人有用:)
I had a similar problem and came up with this solution. It looks for a group by name and if it is found it associates the user with that group. Otherwise it creates a group by that name and then associates with it.
I hope this can be useful to someone :)
为了确保 FactoryBot 的
build
和create
仍然按其应有的方式运行,我们应该只覆盖create
的逻辑,方法是: build 保持“构建/初始化对象”的默认行为,并且不执行任何数据库读取或写入,因此它总是很快。仅覆盖
create
的逻辑以获取现有记录(如果存在),而不是尝试始终创建新记录。我写了一篇文章来解释这一点。
To ensure FactoryBot's
build
andcreate
still behaves as it should, we should only override the logic ofcreate
, by doing:This ensures
build
maintains it's default behavior of "building/initializing the object" and does not perform any database read or write so it's always fast. Only logic ofcreate
is overridden to fetch an existing record if exists, instead of attempting to always create a new record.I wrote an article explaining this.
我一直在寻找一种不影响工厂的方法。正如 @Hiasinho 所指出的,创建
策略
是正确的方法。然而,该解决方案不再适合我,可能是 API 发生了变化。想出了这个:并像这样使用它:
I was looking for a way that doesn't affect the factories. Creating a
Strategy
is the way to go, as pointed out by @Hiasinho. However, that solution didn't work for me anymore, probably the API changed. Came up with this:And use it like this:
通常我只是做多个工厂定义。一种用于有组的用户,一种用于无组的用户:
然后您可以在步骤定义中使用这些来单独创建用户和组,并随意将它们连接在一起。例如,您可以创建一名分组用户和一名单独用户,并将单独用户加入分组用户团队。
不管怎样,你应该看看 pickle gem ,它允许你编写如下步骤:
Usually I just make multiple factory definitions. One for a user with a group and one for a groupless user:
THen you can use these in your step definitions to create users and groups seperatly and join them together at will. For example you could create one grouped user and one lone user and join the lone user to the grouped users team.
Anyway, you should take a look at the pickle gem which will allow you to write steps like:
我正在使用您在问题中描述的 Cucumber 场景:
您可以将其扩展为:
这将创建 3 个具有“mygroup”组的用户。由于它像这样使用“find_or_create_by”功能,因此第一个调用创建组,接下来的两个调用查找已创建的组。
I'm using exactly the Cucumber scenario you described in your question:
You can extend it like:
This will create 3 users with the group "mygroup". As it used like this uses 'find_or_create_by' functionality, the first call creates the group, the next two calls finds the already created group.
另一种方法(适用于任何属性并适用于关联):
唯一的警告是您无法通过 nil 值找到。除此之外,一切就像做梦一样
Another way to do it (that will work with any attribute and work with associations):
The only caveat is that you can't find by nil values. Other than that, it works like a dream