diaspora/spec/controllers/services_controller_spec.rb
2014-01-13 12:25:37 +01:00

141 lines
4.3 KiB
Ruby

# Copyright (c) 2010-2011, 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(:omniauth_auth) do
{ 'provider' => 'facebook',
'uid' => '2',
'info' => { 'nickname' => 'grimmin' },
'credentials' => { 'token' => 'tokin', 'secret' =>"not_so_much" }}
end
let(:user) { alice }
before do
sign_in :user, user
@controller.stub(:current_user).and_return(user)
end
describe '#index' do
before do
FactoryGirl.create(:service, user: user)
end
it "displays user's connected services" do
get :index
assigns[:services].should == user.services
end
end
describe '#create' do
before do
request.env['omniauth.auth'] = omniauth_auth
request.env['omniauth.origin'] = root_url
end
it 'creates a new service and associates it with the current user' do
expect {
post :create, :provider => 'facebook'
}.to change(user.services, :count).by(1)
end
it 'saves the provider' do
post :create, :provider => 'facebook'
user.reload.services.first.class.name.should == "Services::Facebook"
end
context 'when service exists with the same uid' do
before { Services::Twitter.create!(uid: omniauth_auth['uid'], user_id: user.id) }
it 'doesnt create a new service' do
expect {
post :create, :provider => 'twitter'
}.to_not change(Service, :count).by(1)
end
it 'flashes an already_authorized error with the diaspora handle for the user' do
post :create, :provider => 'twitter'
flash[:error].include?(user.profile.diaspora_handle).should be_true
flash[:error].include?( 'already authorized' ).should be_true
end
end
context 'Twitter' do
context 'when the access-level is read-only' do
let(:header) { { 'x-access-level' => 'read' } }
let(:access_token) { double('access_token') }
let(:extra) { {'extra' => { 'access_token' => access_token }} }
let(:provider) { {'provider' => 'twitter'} }
before do
access_token.stub_chain(:response, :header).and_return header
request.env['omniauth.auth'] = omniauth_auth.merge!( provider).merge!( extra )
end
it 'doesnt create a new service' do
expect {
post :create, :provider => 'twitter'
}.to_not change(Service, :count).by(1)
end
it 'flashes an read-only access error' do
post :create, :provider => 'twitter'
flash[:error].include?( 'Access level is read-only' ).should be_true
end
end
end
context 'Facebook' do
before do
facebook_auth_without_twitter_extras = { 'provider' => 'facebook', 'extras' => { 'someotherkey' => 'lorem'}}
request.env['omniauth.auth'] = omniauth_auth.merge!( facebook_auth_without_twitter_extras )
end
it "doesn't break when twitter-specific extras aren't available in omniauth hash" do
expect {
post :create, :provider => 'facebook'
}.to change(user.services, :count).by(1)
end
end
context 'when fetching a photo' do
before do
omniauth_auth
omniauth_auth["info"].merge!({"image" => "https://service.com/fallback_lowres.jpg"})
request.env['omniauth.auth'] = omniauth_auth
end
it 'does not queue a job if the profile photo is set' do
@controller.stub(:no_profile_image?).and_return false
Workers::FetchProfilePhoto.should_not_receive(:perform_async)
post :create, :provider => 'twitter'
end
it 'queues a job to save user photo if the photo does not exist' do
@controller.stub(:no_profile_image?).and_return true
Workers::FetchProfilePhoto.should_receive(:perform_async).with(user.id, anything(), "https://service.com/fallback_lowres.jpg")
post :create, :provider => 'twitter'
end
end
end
describe '#destroy' do
before do
@service1 = FactoryGirl.create(:service, :user => user)
end
it 'destroys a service selected by id' do
lambda{
delete :destroy, :id => @service1.id
}.should change(user.services, :count).by(-1)
end
end
end