I have a Groups Controller with a method def inbox.

If the user is a group member then inbox returns a JSON object.

if the user is not a member, then inbox should redirect thanks to CanCan permissions.

How do I write an rspec to test these two use cases?

Thanks

Current spec:

require 'spec_helper'

describe GroupsController do
  include Devise::TestHelpers

  before (:each) do
    @user1 = Factory.create(:user)
    @user1.confirm!
    sign_in @user1
    @group = Factory(:group)
    @permission_user_1 = Factory.create(:permission, :user => @user1, :creator_id => @user1.id, :group => @group)
  end

  describe "GET inbox" do
    it "should be successful" do
      get inbox_group_path(@group.id), :format => :json
      response.should be_success
    end
  end
end

Rake Routes:

inbox_group GET    /groups/:id/inbox(.:format)                                                                       {:controller=>"groups", :action=>"inbox"}

Routes File:

  resources :groups do
    member do
      get 'vcard', 'inbox'
    end
    ....
link|improve this question

80% accept rate
feedback

3 Answers

up vote 9 down vote accepted

This is how I do this:


  describe "GET index" do

    it "returns correct JSON" do
      # @groups.should have(2).items
      get :index, :format => :json
      response.should be_success
      body = JSON.parse(response.body)
      body.should include('group')
      groups = body['group']
      groups.should have(2).items
      groups.all? {|group| group.key?('customers_count')}.should be_true
      groups.any? {|group| group.key?('customer_ids')}.should be_false
    end
  end

I'm not using cancan, therefor I cannot help with this part.

link|improve this answer
Thanks Tried that but I get an error: "Failure/Error: get :inbox, :format => :json ActionController::RoutingError: No route matches {:controller=>"groups", :format=>:json, :action=>"inbox"} # ./controllers/groups_controller_spec.rb:19 " Which is strange considering rake routes yields: inbox_group GET /groups/:id/inbox(.:format) {:controller=>"groups", :action=>"inbox"} – ColdTree May 13 '11 at 23:28
1  
try to provide the path to get with url_for - apidock.com/rails/ActionDispatch/Integration/RequestHelpers/get – Roman May 13 '11 at 23:36
What would that look like? – ColdTree May 13 '11 at 23:44
1  
get inbox_group_path(group_id), :format => :json – Roman May 13 '11 at 23:46
Strange. Sorry, not sure what I'm doing wrong. "Failures: 1) GroupsController GET index should be successful Failure/Error: get inbox_group_path(@group.id), :format => :json ActionController::RoutingError: No route matches {:controller=>"groups", :format=>:json, :action=>"/groups/33/inbox"} # ./controllers/groups_controller_spec.rb:16 " – ColdTree May 13 '11 at 23:49
show 11 more comments
feedback

To assert json you can do this too:

      ActiveSupport::JSON.decode(response.body).should == ActiveSupport::JSON.decode(
       {"error" => " An email address is required "}.to_json)

This blog gives some more ideas http://www.idolhands.com/ruby-on-rails/specs-and-testing/writing-specs-for-controller-actions-that-return-json

link|improve this answer
feedback

try this

_expected = {:order => order.details}.to_json response.body.should == _expected

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.