Sha256: a43fdba34849611395aec5e8db1bb3691451e2f5c69e81d101fd65bf802b9011

Contents?: true

Size: 1.11 KB

Versions: 7

Compression:

Stored size: 1.11 KB

Contents

require 'spec_helper'

module Doorkeeper::OAuth
  describe CodeRequest do
    let(:pre_auth) do
      double(
        :pre_auth,
        client: double(:application, id: 9990),
        redirect_uri: 'http://tst.com/cb',
        scopes: nil,
        state: nil,
        error: nil,
        authorizable?: true,
        code_challenge: nil,
        code_challenge_method: nil
      )
    end

    let(:owner) { double :owner, id: 8900 }

    subject do
      CodeRequest.new(pre_auth, owner)
    end

    it 'creates an access grant' do
      expect do
        subject.authorize
      end.to change { Doorkeeper::AccessGrant.count }.by(1)
    end

    it 'returns a code response' do
      expect(subject.authorize).to be_a(CodeResponse)
    end

    it 'does not create grant when not authorizable' do
      allow(pre_auth).to receive(:authorizable?).and_return(false)
      expect { subject.authorize }.not_to(change { Doorkeeper::AccessGrant.count })
    end

    it 'returns a error response' do
      allow(pre_auth).to receive(:authorizable?).and_return(false)
      expect(subject.authorize).to be_a(ErrorResponse)
    end
  end
end

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
doorkeeper-5.0.3 spec/lib/oauth/code_request_spec.rb
doorkeeper-5.1.0.rc2 spec/lib/oauth/code_request_spec.rb
doorkeeper-5.1.0.rc1 spec/lib/oauth/code_request_spec.rb
doorkeeper-5.0.2 spec/lib/oauth/code_request_spec.rb
doorkeeper-mongodb-5.0.0 spec/lib/oauth/code_request_spec.rb
doorkeeper-5.0.1 spec/lib/oauth/code_request_spec.rb
doorkeeper-sequel-2.0.0 spec/lib/oauth/code_request_spec.rb