rspec控制器以一种形式构建多个记录

时间:2013-09-08 16:57:08

标签: ruby-on-rails-3 rspec2

我有一个拥有帐户注册表单的rails应用,在创建帐户的同时也会创建一个管理员用户。

新方法的控制器代码很简单

  def new
    @account = Account.new
    @account.users.build
  end

在create方法中,两个模型以下列方式验证和创建

  def create
    @account = Account.new(params[:account])
    @account.status = "signup"
    if @account.save
      #find the user
      user = User.where("account_id =?", @account.id).first
      role = Role.where("rolesymbol =?", "admin").first
      @authorization = Authorization.new
      @authorization.role_id = role.id
      @authorization.user_id = user.id
      @authorization.save
    else
      render action: "new"
    end
  end

在实践中,一切运作良好。但是,我无法弄清楚如何在rspec控制器测试中构建用户。我已经尝试了

的内容
  describe "POST 'create'" do
    it "should create if all the details are correct" do
      account_params = FactoryGirl.attributes_for(:account)
      user_params = FactoryGirl.attributes_for(:user)
      post :create, :account => account_params, ;user => user_params
    end

然而,正如代码所示,这只是按顺序放置两个模型而不是将用户作为帐户的一部分。

有没有人做过类似的事情?

1 个答案:

答案 0 :(得分:0)

好的,我把它解决了。因此,在一个模型的控制器规范中,可以在一个表单中构建两个模型。

控制器规范应该是

post :create, :account => attributes_for(:account).merge(users_attributes: [ attributes_for(:user) ])
  response.should redirect_to "http://test.host/subscribe/subcode/1/user-2"

很抱歉早些时候对错误的位置描述不佳,但希望这可以帮助其他人解决同样的问题