使用RSpec,Devise,Factory Girl测试控制器

时间:2012-02-12 12:00:35

标签: ruby-on-rails testing rspec controller factory-bot

我有模特:帖子和用户(设计)。我正在测试控制器Post。

describe "If user sign_in" do

   before(:all){ 
     @user = Factory(:user)
   }

   it "should get new" do
     sign_in @user  
     get 'new'
     response.should be_success
     response.should render_template('posts/new')
   end

   it "should create post" do
     sign_in @user
     post 'create', :post => Factory(:post)
     response.should redirect_to(post_path(:post))
   end
 end  

但第二次测试失败了:

  

失败/错误:发布'创建',:post =>厂(:后)        ActiveRecord的:: RecordInvalid:          验证失败:已收到电子邮件,已收到电子邮件,已使用用户名

我该如何解决这个问题?

2 个答案:

答案 0 :(得分:9)

你不需要另外的宝石。 FactoryGirl为此建立了动态​​助手。我建议看一下这个短Railscast。以下是它如何运作的片段:

FactoryGirl.define do
  factory :user do
    sequence(:username) { |n| "foo#{n}" }
    password "foobar"
    email { "#{username}@example.com" }

答案 1 :(得分:7)

您需要一个工具来在测试之间清理数据库。因为您应该能够使用干净的数据库运行每个测试。我正在使用database_cleaner,这是一个非常着名的宝石,它的效果非常好。它也很容易设置。 README(RSpec相关)的一个例子:

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