使用Rspec测试“Post create”

时间:2012-05-11 11:46:19

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

我正在尝试使用Rspec测试“Post create”操作。代码如下:

   def valid_attributes
     {
    :zone => Flymgr::Zone.new(:countries => Flymgr::ZoneCountry.first,
        :name => 'USA',
        :description => 'USA Flight',
        :zipcodes => ''),
    :price => '100.00',
    :class => 'first',

     }
   end

   def valid_session
     {}
   end

   before(:each) do
       @request.env["devise.mapping"] = Devise.mappings[:admin]
       admin = FactoryGirl.create(:admin)
       sign_in admin                           
      end

describe "POST create" do
     describe "with valid params" do
       it "creates a new Flymgr::Rule" do
         expect {
           post :create, {:Flymgr_rule => valid_attributes}
         }.to change(Flymgr::Rule, :count).by(1)
       end

表单所需的属性之一是“区域”,这是一个下拉框,下拉列表的选项是使用不同的表单创建的。我不知道如何使用Rspec创建表单条目。如您所见,我尝试从不同的控制器Flymgr::Zone.new调用方法。我不认为这是有效的,它打破了我的考验。

有人可以建议最好的方法吗?也许我应该使用FactoryGirl来创建区域和规则条目?

2 个答案:

答案 0 :(得分:5)

你的请求参数hash有一个对象值为:zone,当你发布它时,它只是'to_s'-ed,这不太可能是你想要的。

通常,最佳做法是使用factory girl构建对象,并使用attributes_for策略为post请求参数化其属性: What is the proper way to test 'create' controller actions?

您的问题是建议该关联是belongs_to,因此您只需要发布一个ID。请注意,目前,FactoryGirl不会为关联创建任何属性。如果规则的工厂定义负责区域关联,则可以使用此解决方法:

FactoryGirl.build(:flymgr_rule).attributes

还包括zone_id但是,您需要排除不需要的参数。 (“id”,“created_at”,“updated_at”等)。

因此,您可以更好地以有效的帖子请求中看到的方式显式插入区域的参数哈希信息。

在factorygirl属性和关联上阅读此主题: https://github.com/thoughtbot/factory_girl/issues/359

答案 1 :(得分:3)

正如guide所指出的那样:

# Returns a hash of attributes that can be used to build a User instance
attrs = FactoryGirl.attributes_for(:user)