Sha256: 827c9ea8bcb656e39f199dde4f83d0107892f77685e3c23a8862292031133786

Contents?: true

Size: 1.91 KB

Versions: 11

Compression:

Stored size: 1.91 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 }.should raise_error AttrRequired::AttrMissing
      end
    end

    context 'when code is missing' do
      let(:authorization_code) { nil }
      it do
        expect { response }.should 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

11 entries across 11 versions & 1 rubygems

Version Path
rack-oauth2-0.14.6 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-0.14.5 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-0.14.4 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-0.14.3 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-0.14.2 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-0.14.1 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-0.14.0 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-0.13.0 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-0.12.2 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-0.12.1 spec/rack/oauth2/server/authorize/code_spec.rb
rack-oauth2-0.12.0 spec/rack/oauth2/server/authorize/code_spec.rb