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

environment_names_finder_spec.rb « finders « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9244e4fb3699e916793fcafd22e62f77ab42958f (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe EnvironmentNamesFinder do
  describe '#execute' do
    let!(:group) { create(:group) }
    let!(:project1) { create(:project, :public, namespace: group) }
    let!(:project2) { create(:project, :private, namespace: group) }
    let!(:user) { create(:user) }

    before do
      create(:environment, name: 'gstg', project: project1)
      create(:environment, name: 'gprd', project: project1)
      create(:environment, name: 'gprd', project: project2)
      create(:environment, name: 'gcny', project: project2)
    end

    context 'using a group and a group member' do
      it 'returns environment names for all projects' do
        group.add_developer(user)

        names = described_class.new(group, user).execute

        expect(names).to eq(%w[gcny gprd gstg])
      end
    end

    context 'using a group and a guest' do
      it 'returns environment names for all public projects' do
        names = described_class.new(group, user).execute

        expect(names).to eq(%w[gprd gstg])
      end
    end

    context 'using a public project and a project member' do
      it 'returns all the unique environment names' do
        project1.team.add_developer(user)

        names = described_class.new(project1, user).execute

        expect(names).to eq(%w[gprd gstg])
      end
    end

    context 'using a public project and a guest' do
      it 'returns all the unique environment names' do
        names = described_class.new(project1, user).execute

        expect(names).to eq(%w[gprd gstg])
      end
    end

    context 'using a private project and a guest' do
      it 'returns all the unique environment names' do
        names = described_class.new(project2, user).execute

        expect(names).to be_empty
      end
    end
  end
end