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

visibility_level_examples.rb « bulk_imports « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02eae250e6add1b57cd47307faca66f17cc0184c (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# frozen_string_literal: true

RSpec.shared_examples 'visibility level settings' do
  context 'when public' do
    let(:data) { { 'visibility' => 'public' } }

    context 'when destination is a public group' do
      let(:destination_group) { create(:group, :public) }

      it 'sets visibility level to public' do
        expect(transformed_data[:visibility_level]).to eq(Gitlab::VisibilityLevel::PUBLIC)
      end
    end

    context 'when destination is a internal group' do
      let(:destination_group) { create(:group, :internal) }

      it 'sets visibility level to internal' do
        expect(transformed_data[:visibility_level]).to eq(Gitlab::VisibilityLevel::INTERNAL)
      end
    end

    context 'when destination is a private group' do
      let(:destination_group) { create(:group, :private) }

      it 'sets visibility level to private' do
        expect(transformed_data[:visibility_level]).to eq(Gitlab::VisibilityLevel::PRIVATE)
      end
    end
  end

  context 'when internal' do
    let(:data) { { 'visibility' => 'internal' } }

    context 'when destination is a public group' do
      let(:destination_group) { create(:group, :public) }

      it 'sets visibility level to internal' do
        expect(transformed_data[:visibility_level]).to eq(Gitlab::VisibilityLevel::INTERNAL)
      end
    end

    context 'when destination is a internal group' do
      let(:destination_group) { create(:group, :internal) }

      it 'sets visibility level to internal' do
        expect(transformed_data[:visibility_level]).to eq(Gitlab::VisibilityLevel::INTERNAL)
      end
    end

    context 'when destination is a private group' do
      let(:destination_group) { create(:group, :private) }

      it 'sets visibility level to private' do
        expect(transformed_data[:visibility_level]).to eq(Gitlab::VisibilityLevel::PRIVATE)
      end
    end
  end

  context 'when private' do
    let(:data) { { 'visibility' => 'private' } }

    context 'when destination is a public group' do
      let(:destination_group) { create(:group, :public) }

      it 'sets visibility level to private' do
        expect(transformed_data[:visibility_level]).to eq(Gitlab::VisibilityLevel::PRIVATE)
      end
    end

    context 'when destination is a internal group' do
      let(:destination_group) { create(:group, :internal) }

      it 'sets visibility level to private' do
        expect(transformed_data[:visibility_level]).to eq(Gitlab::VisibilityLevel::PRIVATE)
      end
    end

    context 'when destination is a private group' do
      let(:destination_group) { create(:group, :private) }

      it 'sets visibility level to private' do
        expect(transformed_data[:visibility_level]).to eq(Gitlab::VisibilityLevel::PRIVATE)
      end
    end
  end
end