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: e0225070986f74e5ca0f90cc3eb8f468c42dc3ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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