0

我写这个来测试我的控制器使用嵌套资源的创建操作。我有一个带有has_many :users关联的 Account 模型。注册后,将创建一个具有单个用户的帐户。

  describe "POST #create", focus: true do
    let(:account) { mock_model(Account).as_null_object }

    before do
      Account.stub(:new).and_return(account)
    end

    it "creates a new account object" do
      account_attributes         = FactoryGirl.attributes_for(:account)
      user_attributes            = FactoryGirl.attributes_for(:user)
      account_attributes[:users] = user_attributes

      Account.should_receive(:new).with(account_attributes).and_return(account)
      post :create, account: account_attributes
    end
  end

这是我得到的失败输出;注意预期和得到之间的区别:它在得到一个字符串时期望一个符号。

1) AccountsController POST #create creates a new account object
     Failure/Error: Account.should_receive(:new).with(account_attributes).and_return(account)
       <Account(id: integer, title: string, subdomain: string, created_at: datetime, updated_at: datetime) (class)> received :new with unexpected arguments
         # notice that expected has symbols while the other users strings...
         expected: ({:title=>"ACME Corp", :subdomain=>"acme1", :users=>{ ... }})
              got: ({"title"=>"ACME Corp", "subdomain"=>"acme1", "users"=>{ ... }})
     # ./spec/controllers/accounts_controller_spec.rb:34:in `block (3 levels) in <top (required)>'

我不禁注意到这段代码也有点味道。我不知道我是否正确。我是 RSpec 的新手,所以如果你能对我的努力提供一些反馈,我会加分。

4

1 回答 1

3

params哈希通常包含字符串而不是符号的键。虽然我们确实使用符号访问它们,但这是因为它是一个具有无关访问的 Hash,它不关心它是使用字符串还是符号访问。

为了让您的测试通过,您可以在设置期望值时使用散列stringify_keys上的方法。account_attributes然后,当 Rspec 比较哈希时,两者都将是字符串键控的。


现在,关于您提出的评论:实例化帐户真的是您对控制器的期望吗?如果您将断言/期望放在更具体的、外部可见的行为上,而不是放在对象应该使用的每种方法上,那么您的测试将不那么脆弱。

Rails 控制器通常很难测试,因为有许多等效的方法来操作 ActiveRecord 模型...我通常尝试使我的控制器尽可能愚蠢,并且我不会对它们进行单元测试,让它们的行为被覆盖更高级别的集成测试。

于 2012-10-06T14:54:34.583 回答