简体   繁体   English

如何用RSpec测试这种破坏行为?

[英]How can this destroy action be tested with RSpec?

In my Rails app, if a user wants to delete his own account he will first have to enter his password in my terminate view: 在我的Rails应用程序中,如果user想要删除自己的帐户,他首先必须在我的terminate视图中输入他的密码:

<%= form_for @user, :method => :delete do |f| %>

  <%= f.label :password %><br/>
  <%= f.password_field :password %>

  <%= f.submit %>

<% end %>

This is my UsersController : 这是我的UsersController

def terminate
  @user = User.find(params[:id])
  @title = "Terminate your account"
end

def destroy
  if @user.authenticate(params[:user][:password])
    @user.destroy
    flash[:success] = "Your account was terminated."
    redirect_to root_path
  else
    flash.now[:alert] = "Wrong password."
    render :terminate
  end
end

The problem is that I can't seem to find a way to test this with RSpec. 问题是我似乎找不到用RSpec测试这个的方法。

What I have is this: 我有的是这个:

describe 'DELETE #destroy' do

  before :each do
    @user = FactoryGirl.create(:user)
  end

  context "success" do

    it "deletes the user" do
      expect{ 
        delete :destroy, :id => @user, :password => "password"
      }.to change(User, :count).by(-1)
    end

  end

end

However, this gives me an error: 但是,这给了我一个错误:

ActionView::MissingTemplate:
Missing template users/destroy, application/destroy with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
* "#<RSpec::Rails::ViewRendering::EmptyTemplatePathSetDecorator:0x007fa7f51310d8>"

Can anybody tell me what I'm missing here or suggest a better way to test this action? 任何人都能告诉我我在这里缺少什么或建议更好的方法来测试这个动作吗?

Thanks for any help. 谢谢你的帮助。

OK, this is my solution: 好的,这是我的解决方案:

describe 'DELETE #destroy' do

  context "success" do

    it "deletes the user" do
      expect{ 
        delete :destroy, :id => @user, :user => {:password => @user.password}
     }.to change(User, :count).by(-1)
    end

  end

end

The before :each call I had before was useless (this is not an integration test after all). before :eachbefore :each通话都是无用的(毕竟这不是集成测试)。 The password has to be passed in like this: :user => {:password => @user.password} which I didn't know until reading this thread . 密码必须像这样传递:user => {:password => @user.password} ,在阅读此主题之前我不知道。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM