0

我正在尝试编写一个 rspec 功能/请求来测试这样一个事实,即在填写表格以在“VIN”模型中创建记录后,用户被重定向到刚刚创建的记录的 edit_path。这是我目前的测试:

    describe "Add VIN" do
    it "can be added on the VIN listing page" do

        sign_in_as_a_valid_user
        vin = FactoryGirl.create(:vin)

        current_path.should == vins_path
        page.should have_field("vin_text_box")
        fill_in "vin_text_box", :with => "hello"
        click_button "generate_vin"
        current_path.should == edit_vin_path(v.id))   <---- #problem
    end
end

明显的问题是我的工厂创建的 vin 与重定向到的 vin 无关。

所以问题是,我如何在请求规范中测试这个功能?

4

2 回答 2

0

Vin您可以从数据库中获取最近创建的。

# ...
click_button "generate_vin"

v = Vin.order("id desc").first
current_path.should eq(edit_vin_path(v.id))
于 2013-02-03T17:52:16.677 回答
0

这是 RelishApp 的示例:https ://www.relishapp.com/rspec/rspec-rails/docs/request-specs/request-spec

require "spec_helper"

describe "Widget management" do

it "creates a Widget and redirects to the Widget's page" do
    get "/widgets/new"
    expect(response).to render_template(:new)

    post "/widgets", :widget => {:name => "My Widget"}

    expect(response).to redirect_to(assigns(:widget))
    follow_redirect!

    expect(response).to render_template(:show)
    expect(response.body).to include("Widget was successfully created.")
  end

end

看看他们是怎么做的?将 :show 更改为 :edit 并测试页面的完整性,而不是您的控制器是否选择了正确的 @vin。您将通过向 FactoryGirl 传递其属性之一的特定值来获得它。

于 2013-02-03T19:40:18.023 回答