summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/external_authorization/response_spec.rb
blob: 43211043ecaf915412cc288948dfe481543bbf4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
require 'spec_helper'

describe Gitlab::ExternalAuthorization::Response do
  let(:excon_response) { double }
  subject(:response) { described_class.new(excon_response) }

  describe '#valid?' do
    it 'is valid for 200, 401, and 403 responses' do
      [200, 401, 403].each do |status|
        allow(excon_response).to receive(:status).and_return(status)

        expect(response).to be_valid
      end
    end

    it "is invalid for other statuses" do
      expect(excon_response).to receive(:status).and_return(500)

      expect(response).not_to be_valid
    end
  end

  describe '#reason' do
    it 'returns a reason if it was included in the response body' do
      expect(excon_response).to receive(:body).and_return({ reason: 'Not authorized' }.to_json)

      expect(response.reason).to eq('Not authorized')
    end

    it 'returns nil when there was no body' do
      expect(excon_response).to receive(:body).and_return('')

      expect(response.reason).to eq(nil)
    end
  end

  describe '#successful?' do
    it 'is `true` if the status is 200' do
      allow(excon_response).to receive(:status).and_return(200)

      expect(response).to be_successful
    end

    it 'is `false` if the status is 401 or 403' do
      [401, 403].each do |status|
        allow(excon_response).to receive(:status).and_return(status)

        expect(response).not_to be_successful
      end
    end
  end
end