2

我有一些 RSpec 控制器测试。有些有效,有些无效,我正试图弄清楚如何在地球上修复它们并提高它们的效率

理想情况下,我想看看是否可以将每个规范转换为以下形式

subject { ... }
  it { ... }
  it { ... }
  it { ... }

请注意,对于我所有的控制器规格,我已经为实际的控制器操作编写了宏。这些宏都经过测试并且都可以工作,并且名称使它们的作用相当明显。

我的“创建”测试:

formats ||= ["html", "js"]
formats.each do |format|
  context "valid attributes" do
    subject { do_post_create( :customer, valid_attributes, format ) }
      its(:response_code) { should eq(302)}
      it { should redirect_to admin_customer_path(Customer.find_by_id(???))}
      it { expect { subject }.to change(Customer, :count).by(1) }
  end

  context "invalid attributes" do
    subject { do_post_create( :customer, invalid_attributes, format ) }
      its(:response_code) { should eq(200)}
      it { should render_template :new }
      it { expect { subject }.to_not change(Customer, :count).by(1) }
  end
end

在该规范中,我一直试图找出某种方法来从 post 语句中获取新创建对象的 ID。我试过“Customer.last”,但这似乎不起作用。有什么想法吗?

我的“更新”规范:

formats ||= ["html", "js"]
formats.each do |format|
  context "valid attributes" do
    let(:object) { FactoryGirl.create(:customer) }
    subject { do_put_update( class_to_symbol(model), object.id, attributes, format ) }
      its(:response_code) { should eq(302)}

    it "does alter #{model}" do
      do_put_update( class_to_symbol(model), object.id, attributes, format )
      assigns(:customer).should eq(object)
      flash[:notice].should =~ /Success/
      object.reload
      attributes.each do |key, value|
        object.send(key.to_s).should eq(value)
      end
    end
  end
  context "invalid attributes" do
    let(:object) { FactoryGirl.create("customer") }
    let(:invalid_attributes) { {:username => "!"} }
    subject { do_put_update( class_to_symbol(model), object.id, invalid_attributes, format ) }
      its(:response_code) { should eq(200)}

    it "does not alter #{model}" do
      do_put_update( class_to_symbol(model), object.id, invalid_attributes, format )
      assigns(:customer).should eq(object)
      flash[:notice].should =~ /Fail/
      object.reload
      attributes.each do |key, value|
        object.send(key.to_s).should_not eq(value)
      end
    end
  end
end

在更新测试中,我想尝试以更简洁的方式表达第二个块,理想情况下,我可以对所有测试使用相同的“主题”语句。那可能吗?

4

1 回答 1

3

我认为你在考虑这些规格。不要试图将每个规范强制转换为预定义的格式(subject/ it/...),而是编写规范,以便它们清楚地记录应该发生的情况,然后尝试重构代码。

恰当的例子:使用隐式subject控制器动作。subject并且its旨在与对象一起使用,而不是与方法一起使用,并且只有在以这种方式使用时才真正有意义。例如,这是有道理的:

subject { [1, 2, 3, 4] }
its(:size) { should == 4 }

在这里,测试的是什么非常清楚:一个 4 元素数组的大小为 4。

但是,当您编写时:

subject { do_post_create( :customer, valid_attributes, format ) }
its(:response_code) { should eq(302)}

在不检查操作的情况下,您从哪里获取响应代码并不清楚do_post_create。您说宏的名称“使它们的作用相当明显”,但它们并没有使它们将返回的内容变得相当明显,这是使用隐式主题的关键,因为它是成为主题的返回值.

写出来会更清楚:

it "responds with a 302" do
  do_post_create(:customer, valid_attributes, format)
  response.should eq(302)
end

我也不建议混合使用或不使用隐式主题的规范,因为这会使您实际测试的内容更加混乱。例如,在您的无效属性context块中,您设置了一个主题,但是在您的第二个规范中您实际上测试了customer( assigns(:customer).should eq(object)) 的分配,因此基本上该主题与此测试无关。(但是,通过在此处设置主题然后不使用它,您实际上是两次发送 PUT 请求(通过do_put_update),这必然会导致问题 - 再次,另一个不在subject块中发出请求的原因。)

我可以继续,但我想你明白了。如果您可以在不影响可读性的情况下做到这一点,那么使规范简短而有趣是很棒的,但是在这种情况下,我认为您已经过火了。

只是我的两分钱,希望它有帮助。

ps 如果上面的观点看起来有点极端,请阅读隐式主题的文档,您会看到他们实际上建议不要在面向公众的测试中使用隐式主题:

虽然下面的示例演示了如何将主题用作面向用户的概念,但我们建议您保留它以支持自定义匹配器和/或隐藏其使用的扩展库。

于 2012-10-29T12:27:14.117 回答