Skip to content
Extraits de code Groupes Projets
services_controller_spec.rb 2,02 ko
Newer Older
  • Learn to ignore specific revisions
  • #   Copyright (c) 2010, Diaspora Inc.  This file is
    #   licensed under the Affero General Public License version 3 or later.  See
    #   the COPYRIGHT file.
    
    require 'spec_helper'
    
    
    describe ServicesController do
    
      let(:user) { make_user }
    
      let!(:aspect) { user.aspects.create(:name => "lame-os") }
    
      let!(:service1) {a = Factory(:service); user.services << a; a}
      let!(:service2) {a = Factory(:service); user.services << a; a}
      let!(:service3) {a = Factory(:service); user.services << a; a}
      let!(:service4) {a = Factory(:service); user.services << a; a}
    
    
      let(:mock_access_token) { Object.new }
    
      let(:omniauth_auth) {{ 'provider' => 'twitter', 'uid' => '2', 
                             'user_info' => { 'nickname' => 'grimmin' },
                             'extra' => { 'access_token' => mock_access_token }}}
    
      before do
        sign_in :user, user
    
        @controller.stub!(:current_user).and_return(user)
    
        mock_access_token.stub!(:token).and_return("12345")
        mock_access_token.stub!(:secret).and_return("56789")
      end
    
      describe '#index' do
        it 'displays all connected serivices for a user' do
          get :index
          assigns[:services].should == user.services
        end
      end
    
      describe '#create' do
        it 'creates a new OmniauthService' do
          request.env['omniauth.auth'] = omniauth_auth
          lambda{post :create}.should change(user.services, :count).by(1)
        end
    
    
        it 'should redirect to getting started if the user still getting started' do
          user.getting_started = true
          request.env['omniauth.auth'] = omniauth_auth
          post :create
          response.should redirect_to getting_started_path(:step => 3)
        end
    
        it 'should redirect to services url' do
          user.getting_started = false
          request.env['omniauth.auth'] = omniauth_auth
          post :create
          response.should redirect_to services_url
        end
    
      end
    
      describe '#destroy' do
        it 'should destroy a service of a users with the id' do
          lambda{delete :destroy, :id => service1.id.to_s}.should change(user.services, :count).by(-1)
        end
      end
    end