Welcome to mirror list, hosted at ThFree Co, Russian Federation.

debian_common_shared_examples.rb « api « requests « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ba42b8e8fa1e16f3dbbeb576097778b8d8beff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

RSpec.shared_examples 'rejects Debian access with unknown container id' do |anonymous_status, auth_method|
  context 'with an unknown container' do
    let(:container) { double(id: non_existing_record_id) }

    context 'as anonymous' do
      it_behaves_like 'Debian packages GET request', anonymous_status, nil
    end

    context 'as authenticated user' do
      include_context 'Debian repository auth headers', :not_a_member, auth_method do
        it_behaves_like 'Debian packages GET request', :not_found, nil
      end
    end
  end
end

RSpec.shared_examples 'Debian API FIPS mode' do
  context 'when FIPS mode is enabled', :fips_mode do
    it_behaves_like 'returning response status', :not_found
  end
end