我正在尝试使用gem FactoryGirl创建一个平衡对象,但是当我打开rails console并写入命令FactoryGirl.create(:balance)时,我收到一个错误.
我在模型之间创建关联has_one和belongs_to,另外在外部字段中添加唯一键的验证,这些是我的模型.
平衡
class Balance < ActiveRecord::Base
#association macros
belongs_to :user
belongs_to :wallet
#validation macros
validates :user_id, presence: true, uniqueness: true
validates :wallet_id, presence: true, uniqueness: true
end
钱包
class Wallet < ActiveRecord::Base
#association macros
belongs_to :user
belongs_to :wallet_type
has_one :bank_account, dependent: :destroy
has_one :debit_card, dependent: :destroy
has_one :credit_card, dependent: :destroy
has_one :balance, dependent: :destroy
#validation macros
validates :user_id, presence: true
validates :wallet_type_id, presence: true
end
用户
class User < ActiveRecord::Base
#association macros
...
has_one :salt
has_one :balance
end
工厂平衡
FactoryGirl.define do
factory :balance do
user
wallet
amount 2000
end
end
我的平衡测试
RSpec.describe @Balance, type: :model do
describe "Balance" do
before(:each) do
@user = FactoryGirl.create(:user)
@wallet = FactoryGirl.create(:wallet)
@balance = FactoryGirl.create(:balance, user_id: @user[:id], wallet_id: @wallet[:id])
end
it "when is valid" do
expect(@balance).to be_valid
end
it "when is presence user_id" do
expect(@balance).to validate_presence_of :user_id
end
it "when is presence wallet_id" do
expect(@balance).to validate_presence_of :wallet_id
end
pending "when is uniqueness user_id" do
expect(@balance).to validate_uniqueness_of :user_id
end
pending "when is uniqueness wallet_id" do
expect(@balance).to validate_uniqueness_of :wallet_id
end
it "when is belongs_to :user" do
should belong_to(:user)
end
it "when is belongs_to :wallet" do
should belong_to(:wallet)
end
end
end
当我创建平衡对象FactoryGirl.create(:balance)时,我收到以下错误.
ActiveRecord::RecordInvalid: Validation failed: User has already been taken
from .../lib/active_record/validations.rb:79:in `raise_record_invalid'
from .../lib/active_record/validations.rb:43:in `save!'
from .../lib/active_record/attribute_methods/dirty.rb:29:in `save!'
from .../lib/active_record/transactions.rb:291:in `block in save!'
from .../lib/active_record/transactions.rb:351:in `block in with_transaction_returning_status'
from .../lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction'
from .../lib/active_record/connection_adapters/abstract/transaction.rb:184:in `within_new_transaction'
from .../lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction'
from .../lib/active_record/transactions.rb:220:in `transaction'
from .../lib/active_record/transactions.rb:348:in `with_transaction_returning_status'
from .../lib/active_record/transactions.rb:291:in `save!'
from .../lib/factory_girl/configuration.rb:14:in `block in initialize'
from .../lib/factory_girl/evaluation.rb:15:in `[]'
from .../lib/factory_girl/evaluation.rb:15:in `create'
from .../lib/factory_girl/strategy/create.rb:12:in `block in result'
from .../lib/factory_girl/strategy/create.rb:9:in `tap'
from .../lib/factory_girl/strategy/create.rb:9:in `result'
from .../lib/factory_girl/factory.rb:42:in `run'
from .../lib/factory_girl/factory_runner.rb:23:in `block in run'
from .../lib/active_support/notifications.rb:166:in `instrument'
from .../lib/factory_girl/factory_runner.rb:22:in `run'
from .../lib/factory_girl/strategy_syntax_method_registrar.rb:20:in `block in define_singular_strategy_method'
from (irb):1
from .../lib/rails/commands/console.rb:110:in `start'
from .../lib/rails/commands/console.rb:9:in `start'
from .../lib/rails/commands/commands_tasks.rb:68:in `console'
from .../lib/rails/commands/commands_tasks.rb:39:in `run_command!'
from ..lib/rails/commands.rb:17:in `<top (required)>'
from bin/rails:4:in `require'
from bin/rails:4:in `<main>'irb(main):002:0> a= FactoryGirl.create(:balance)
最佳答案 问题
运行测试时看到此错误:
ActiveRecord::RecordInvalid: Validation failed: User has already been taken
因为您已在之前的任何测试运行中创建了该用户.所以,它得到了验证错误.
解
您可以使用database_cleaner gem,这将确保您运行测试的测试数据库的干净状态.
您可以通过将gem添加到Gemfile来安装gem:
group :test do
gem 'database_cleaner'
end
然后,运行:
bundle install
之后,在spec_helper.rb中配置database_cleaner:
RSpec.configure do |config|
config.before(:suite) do
DatabaseCleaner.strategy = :transaction
DatabaseCleaner.clean_with(:truncation)
end
config.before(:each) do
DatabaseCleaner.start
end
config.after(:each) do
DatabaseCleaner.clean
end
end
此配置将确保在每个规范之后将截断先前测试运行的数据.并且,每次运行新规范时,都会针对干净的数据库执行此操作.
您可以在gem的documentation页面中看到如何使用RSpec配置database_cleaner.