Sha256: 4f307eade2a146c73801e99cc4ceec69f64c35f8334d6c95c014b7df8c3eef1f

Contents?: true

Size: 1.46 KB

Versions: 13

Compression:

Stored size: 1.46 KB

Contents

shared_examples 'an oauth2 strategy' do
  describe '#client' do
    it 'should be initialized with symbolized client_options' do
      @options = { :client_options => { 'authorize_url' => 'https://example.com' } }
      subject.client.options[:authorize_url].should == 'https://example.com'
    end
  end

  describe '#authorize_params' do
    it 'should include any authorize params passed in the :authorize_params option' do
      @options = { :authorize_params => { :foo => 'bar', :baz => 'zip' } }
      subject.authorize_params['foo'].should eq('bar')
      subject.authorize_params['baz'].should eq('zip')
    end

    it 'should include top-level options that are marked as :authorize_options' do
      @options = { :authorize_options => [:scope, :foo], :scope => 'bar', :foo => 'baz' }
      subject.authorize_params['scope'].should eq('bar')
      subject.authorize_params['foo'].should eq('baz')
    end
  end

  describe '#token_params' do
    it 'should include any token params passed in the :token_params option' do
      @options = { :token_params => { :foo => 'bar', :baz => 'zip' } }
      subject.token_params['foo'].should eq('bar')
      subject.token_params['baz'].should eq('zip')
    end

    it 'should include top-level options that are marked as :token_options' do
      @options = { :token_options => [:scope, :foo], :scope => 'bar', :foo => 'baz' }
      subject.token_params['scope'].should eq('bar')
      subject.token_params['foo'].should eq('baz')
    end
  end
end

Version data entries

13 entries across 13 versions & 3 rubygems

Version Path
omniauth-bookingsync-0.2.0 spec/support/shared_examples.rb
omniauth-bookingsync-0.1.0 spec/support/shared_examples.rb
omniauth-surveymonkey2-0.0.14 spec/support/shared_examples.rb
omniauth-surveymonkey2-0.0.13 spec/support/shared_examples.rb
omniauth-surveymonkey2-0.0.12 spec/support/shared_examples.rb
omniauth-surveymonkey2-0.0.6 spec/support/shared_examples.rb
omniauth-surveymonkey2-0.0.5 spec/support/shared_examples.rb
omniauth-surveymonkey2-0.0.4 spec/support/shared_examples.rb
omniauth-surveymonkey2-0.0.3 spec/support/shared_examples.rb
omniauth-surveymonkey2-0.0.2 spec/support/shared_examples.rb
omniauth-surveymonkey2-0.0.1 spec/support/shared_examples.rb
omniauth-roomorama-0.2.0 spec/support/shared_examples.rb
omniauth-roomorama-0.1.0 spec/support/shared_examples.rb