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

listing_spec.rb « catalog « ci « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9ccecbc9fed00b8869688329c61da32f70a1497 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Ci::Catalog::Listing, feature_category: :pipeline_composition do
  let_it_be(:namespace) { create(:group) }
  let_it_be(:project_1) { create(:project, namespace: namespace) }
  let_it_be(:project_2) { create(:project, namespace: namespace) }
  let_it_be(:project_3) { create(:project) }
  let_it_be(:user) { create(:user) }

  let(:list) { described_class.new(namespace, user) }

  describe '#new' do
    context 'when namespace is not a root namespace' do
      let(:namespace) { create(:group, :nested) }

      it 'raises an exception' do
        expect { list }.to raise_error(ArgumentError, 'Namespace is not a root namespace')
      end
    end
  end

  describe '#resources' do
    subject(:resources) { list.resources }

    context 'when the user has access to all projects in the namespace' do
      before do
        namespace.add_developer(user)
      end

      context 'when the namespace has no catalog resources' do
        it { is_expected.to be_empty }
      end

      context 'when the namespace has catalog resources' do
        let!(:resource) { create(:catalog_resource, project: project_1) }
        let!(:other_namespace_resource) { create(:catalog_resource, project: project_3) }

        it 'contains only catalog resources for projects in that namespace' do
          is_expected.to contain_exactly(resource)
        end
      end
    end

    context 'when the user only has access to some projects in the namespace' do
      let!(:resource_1) { create(:catalog_resource, project: project_1) }
      let!(:resource_2) { create(:catalog_resource, project: project_2) }

      before do
        project_1.add_developer(user)
      end

      it 'only returns catalog resources for projects the user has access to' do
        is_expected.to contain_exactly(resource_1)
      end
    end

    context 'when the user does not have access to the namespace' do
      let!(:resource) { create(:catalog_resource, project: project_1) }

      it { is_expected.to be_empty }
    end
  end
end