Sha256: 58670c2896b6133b25c742e556ae81317920c45f6237749cf7a1a2fa0d64b658

Contents?: true

Size: 1.99 KB

Versions: 6

Compression:

Stored size: 1.99 KB

Contents

# frozen_string_literal: true

require "spec_helper"

describe Doorkeeper::OAuth::ErrorResponse do
  describe "#status" do
    it "should have a status of bad_request" do
      expect(subject.status).to eq(:bad_request)
    end

    it "should have a status of unauthorized for an invalid_client error" do
      subject = described_class.new(name: :invalid_client)

      expect(subject.status).to eq(:unauthorized)
    end
  end

  describe ".from_request" do
    it "has the error from request" do
      error = described_class.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 = described_class.from_request double(error: :some_error)
      expect(error.state).to be_nil
    end

    it "has state if request responds to state" do
      error = described_class.from_request double(error: :some_error, state: :hello)
      expect(error.state).to eq(:hello)
    end
  end

  it "ignores empty error values" do
    subject = described_class.new(error: :some_error, state: nil)
    expect(subject.body).not_to have_key(:state)
  end

  describe ".body" do
    subject { described_class.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) { described_class.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

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
doorkeeper-5.3.3 spec/lib/oauth/error_response_spec.rb
doorkeeper-5.3.2 spec/lib/oauth/error_response_spec.rb
doorkeeper-mongodb-5.2.1 spec/lib/oauth/error_response_spec.rb
doorkeeper-mongodb-5.2.0 spec/lib/oauth/error_response_spec.rb
doorkeeper-5.3.1 spec/lib/oauth/error_response_spec.rb
doorkeeper-5.3.0 spec/lib/oauth/error_response_spec.rb