我使用FactoryBot和Faker进行测试,看起来Faker正在生成相同的名称:
class Profile < ApplicationRecord
belongs_to :user
validates_presence_of :first_name, :last_name, :nickname
validates :nickname, uniqueness: { case_sensitive: false }
end
FactoryBot.define do
factory :user do
sequence(:email) { |n| "user#{n}@example.org" }
password "123456"
trait :with_profile do
profile
end
end
end
FactoryBot.define do
factory :profile do
first_name Faker::Name.unique.first_name
last_name Faker::Name.unique.last_name
nickname { "#{first_name}_#{last_name}".downcase }
user
end
end
RSpec.feature "Friendships", type: :feature do
scenario "User can accept a pending friendship request" do
@tom = create(:user, :with_profile)
@jerry = create(:user, :with_profile)
#other stuff
end
end
即使我使用独特的方法,我也会收到错误
ActiveRecord::RecordInvalid: Validation failed: Nickname has already been taken`.
任何线索?
答案 0 :(得分:6)
应该是:
first_name { Faker::Name.unique.first_name }
last_name { Faker::Name.unique.last_name }
将评估加载Faker::Name.unique.first_name
。因此,请使用积木。
编辑:
FactoryBot.define do
factory :profile do
first_name Faker::Name.unique.first_name
end
end
在此示例中,Faker::Name.unique.first_name
将在工厂定义期间(加载/需要文件时)进行一次评估。如果它找到了一个独特的价值,请说“John Doe&#39;它将用于该工厂创建的每个项目。
或者换句话说:在加载文件并评估Faker::Name.unique.first_name
后,您可能会认为这个工厂好像是:
FactoryBot.define do
factory :profile do
first_name 'John Doe'
end
end
当您使用积木时 - 每次拨打create(:profile)
或build(:profile)
时,都会评估该块的正文。每次调用块内的Faker::Name.unique.first_name
部分,并返回不同的唯一结果。