我有一个拥有帐户注册表单的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
然而,正如代码所示,这只是按顺序放置两个模型而不是将用户作为帐户的一部分。
有没有人做过类似的事情?
答案 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"
很抱歉早些时候对错误的位置描述不佳,但希望这可以帮助其他人解决同样的问题