Welcome to mirror list, hosted at ThFree Co, Russian Federation.

services_controller_spec.rb « controllers « spec - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71c7317b4e7d849f02664e658ec0a1cbf426b485 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#   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
  render_views
  let(:user) { make_user }
  let!(:aspect) { user.aspect(: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
    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
  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