Sha256: 70d02ad1ffafa2ace14c04f04d17acec4ca7752713ab8c076570041ea9caefad
Contents?: true
Size: 1.85 KB
Versions: 9
Compression:
Stored size: 1.85 KB
Contents
require 'spec_helper' module Doorkeeper::OAuth describe ErrorResponse do describe '#status' do it 'should have a status of unauthorized' do expect(subject.status).to eq(:unauthorized) end end describe :from_request do it 'has the error from request' do error = ErrorResponse.from_request double(error: :some_error) expect(error.name).to eq(:some_error) end it 'ignores state if request does not respond to state' do error = ErrorResponse.from_request double(error: :some_error) expect(error.state).to be_nil end it 'has state if request responds to state' do error = ErrorResponse.from_request double(error: :some_error, state: :hello) expect(error.state).to eq(:hello) end end it 'ignores empty error values' do subject = ErrorResponse.new(error: :some_error, state: nil) expect(subject.body).not_to have_key(:state) end describe '.body' do subject { ErrorResponse.new(name: :some_error, state: :some_state).body } describe '#body' do it { expect(subject).to have_key(:error) } it { expect(subject).to have_key(:error_description) } it { expect(subject).to have_key(:state) } end end describe '.headers' do let(:error_response) { ErrorResponse.new(name: :some_error, state: :some_state) } subject { error_response.headers } it { expect(subject).to include 'WWW-Authenticate' } describe "WWW-Authenticate header" do subject { error_response.headers["WWW-Authenticate"] } it { expect(subject).to include("realm=\"#{error_response.realm}\"") } it { expect(subject).to include("error=\"#{error_response.name}\"") } it { expect(subject).to include("error_description=\"#{error_response.description}\"") } end end end end
Version data entries
9 entries across 9 versions & 3 rubygems