Sha256: fc6840c513f5190f5781ac8d0435bfe903e8a0448d66b838b3365a15771635a9

Contents?: true

Size: 1.9 KB

Versions: 17

Compression:

Stored size: 1.9 KB

Contents

require 'spec_helper.rb'

describe Rack::OAuth2::Server::Authorize::Code do
  let(:request)            { Rack::MockRequest.new app }
  let(:redirect_uri)       { 'http://client.example.com/callback' }
  let(:authorization_code) { 'authorization_code' }  
  let(:response)           { request.get "/?response_type=code&client_id=client&redirect_uri=#{redirect_uri}&state=state" }

  context 'when approved' do
    subject { response }
    let :app do
      Rack::OAuth2::Server::Authorize.new do |request, response|
        response.redirect_uri = redirect_uri
        response.code = authorization_code
        response.approve!
      end
    end
    its(:status)   { should == 302 }
    its(:location) { should == "#{redirect_uri}?code=#{authorization_code}&state=state" }

    context 'when redirect_uri already includes query' do
      let(:redirect_uri) { 'http://client.example.com/callback?k=v' }
      its(:location)     { should == "#{redirect_uri}&code=#{authorization_code}&state=state" }
    end

    context 'when redirect_uri is missing' do
      let(:redirect_uri) { nil }
      it do
        expect { response }.to raise_error AttrRequired::AttrMissing
      end
    end

    context 'when code is missing' do
      let(:authorization_code) { nil }
      it do
        expect { response }.to raise_error AttrRequired::AttrMissing
      end
    end
  end

  context 'when denied' do
    let :app do
      Rack::OAuth2::Server::Authorize.new do |request, response|
        request.verify_redirect_uri! redirect_uri
        request.access_denied!
      end
    end
    it 'should redirect with error in query' do
      response.status.should == 302
      error_message = {
        :error => :access_denied,
        :error_description => Rack::OAuth2::Server::Authorize::ErrorMethods::DEFAULT_DESCRIPTION[:access_denied]
      }
      response.location.should == "#{redirect_uri}?#{error_message.to_query}&state=state"
    end
  end
end

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
rack-oauth2-1.1.1 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-1.1.0 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-1.0.10 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-1.0.9 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-1.0.8 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-revibe-1.0.7 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-1.0.7 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-1.0.6 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-1.0.5 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-1.0.4 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-1.0.3 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-1.0.2 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-1.0.1 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-1.0.0 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-0.14.9 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-0.14.8 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-0.14.7 spec/rack/oauth2/server/authorize/code_spec.rb