summaryrefslogtreecommitdiff
path: root/spec/services/auth/dependency_proxy_authentication_service_spec.rb
blob: ba50149f53aa515be464111ca34728dcd1572fbb (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Auth::DependencyProxyAuthenticationService do
  let_it_be(:user) { create(:user) }
  let(:service) { Auth::DependencyProxyAuthenticationService.new(nil, user) }

  before do
    stub_config(dependency_proxy: { enabled: true })
  end

  describe '#execute' do
    subject { service.execute(authentication_abilities: nil) }

    context 'dependency proxy is not enabled' do
      before do
        stub_config(dependency_proxy: { enabled: false })
      end

      it 'returns not found' do
        result = subject

        expect(result[:http_status]).to eq(404)
        expect(result[:message]).to eq('dependency proxy not enabled')
      end
    end

    context 'without a user' do
      let(:user) { nil }

      it 'returns forbidden' do
        result = subject

        expect(result[:http_status]).to eq(403)
        expect(result[:message]).to eq('access forbidden')
      end
    end

    context 'with a user' do
      it 'returns a token' do
        expect(subject[:token]).not_to be_nil
      end
    end
  end
end