Sha256: 6ac54214adc1ff7f1843727c2619031ddf76247fd9569f4359e6ec81f63157c4
Contents?: true
Size: 1.55 KB
Versions: 1
Compression:
Stored size: 1.55 KB
Contents
require 'spec_helper' require 'omniauth-bookingsync' describe OmniAuth::Strategies::BookingSync do before do OmniAuth.config.test_mode = true end let(:request) { double('Request', :params => {}, :cookies => {}, :env => {}) } subject do OmniAuth::Strategies::BookingSync.new(nil, @options || {}).tap do |strategy| allow(strategy).to receive(:request) { request } end end it_should_behave_like 'an oauth2 strategy' describe '#client' do it 'should have the correct site' do subject.client.site.should eq("https://www.bookingsync.com/") end it 'should have the correct authorization url' do subject.client.options[:authorize_url].should eq("/oauth/authorize") end it 'should have the correct token url' do subject.client.options[:token_url].should eq('/oauth/token') end end describe '#callback_path' do it 'should have the correct callback path' do subject.callback_path.should eq('/auth/bookingsync/callback') end end describe '#authorize_params' do it 'should pass account_id from request params' do request.params['account_id'] = '123' expect(subject.authorize_params[:account_id]).to eq('123') end end describe '#raw_info' do it 'should fetch account info from api v3' do subject.stub(:access_token => double) response = double(:parsed => {'accounts' => [{'id' => 1}]}) subject.access_token.should_receive(:get).with('/api/v3/accounts'). and_return(response) subject.raw_info.should eq({'id' => 1}) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
omniauth-bookingsync-0.2.0 | spec/omniauth/strategies/bookingsync_spec.rb |