summaryrefslogtreecommitdiff
path: root/spec/controllers/groups/labels_controller_spec.rb
blob: 33041f1af9f284ecf1c3030c59f2ac14c62a9040 (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Groups::LabelsController do
  let_it_be(:group) { create(:group) }
  let_it_be(:user)  { create(:user) }
  let_it_be(:project) { create(:project, namespace: group) }

  before do
    group.add_owner(user)
    # by default FFs are enabled in specs so we turn it off
    stub_feature_flags(show_inherited_labels: false)

    sign_in(user)
  end

  describe 'GET #index' do
    let_it_be(:label_1) { create(:label, project: project, title: 'label_1') }
    let_it_be(:group_label_1) { create(:group_label, group: group, title: 'group_label_1') }

    it 'returns group and project labels by default' do
      get :index, params: { group_id: group }, format: :json

      label_ids = json_response.map {|label| label['title']}
      expect(label_ids).to match_array([label_1.title, group_label_1.title])
    end

    context 'with ancestor group' do
      let_it_be(:subgroup) { create(:group, parent: group) }
      let_it_be(:subgroup_label_1) { create(:group_label, group: subgroup, title: 'subgroup_label_1') }

      before do
        subgroup.add_owner(user)
      end

      RSpec.shared_examples 'returns ancestor group labels' do
        it 'returns ancestor group labels' do
          get :index, params: params, format: :json

          label_ids = json_response.map {|label| label['title']}
          expect(label_ids).to match_array([group_label_1.title, subgroup_label_1.title])
        end
      end

      context 'when include_ancestor_groups true' do
        let(:params) { { group_id: subgroup, include_ancestor_groups: true, only_group_labels: true } }

        it_behaves_like 'returns ancestor group labels'
      end

      context 'when include_ancestor_groups false' do
        let(:params) { { group_id: subgroup, only_group_labels: true } }

        it 'does not return ancestor group labels', :aggregate_failures do
          get :index, params: params, format: :json

          label_ids = json_response.map {|label| label['title']}
          expect(label_ids).to match_array([subgroup_label_1.title])
          expect(label_ids).not_to include([group_label_1.title])
        end
      end

      context 'when show_inherited_labels enabled' do
        let(:params) { { group_id: subgroup } }

        before do
          stub_feature_flags(show_inherited_labels: true)
        end

        it_behaves_like 'returns ancestor group labels'
      end
    end

    context 'external authorization' do
      subject { get :index, params: { group_id: group.to_param } }

      it_behaves_like 'disabled when using an external authorization service'
    end
  end

  describe 'POST #toggle_subscription' do
    it 'allows user to toggle subscription on group labels' do
      label = create(:group_label, group: group)

      post :toggle_subscription, params: { group_id: group.to_param, id: label.to_param }

      expect(response).to have_gitlab_http_status(:ok)
    end
  end

  describe 'DELETE #destroy' do
    context 'when current user has ability to destroy the label' do
      before do
        sign_in(user)
      end

      it 'removes the label' do
        label = create(:group_label, group: group)
        delete :destroy, params: { group_id: group.to_param, id: label.to_param }

        expect { label.reload }.to raise_error(ActiveRecord::RecordNotFound)
      end

      context 'when label is succesfuly destroyed' do
        it 'redirects to the group labels page' do
          label = create(:group_label, group: group)
          delete :destroy, params: { group_id: group.to_param, id: label.to_param }

          expect(response).to redirect_to(group_labels_path)
        end
      end
    end

    context 'when current_user does not have ability to destroy the label' do
      let(:another_user) { create(:user) }

      before do
        sign_in(another_user)
      end

      it 'responds with status 404' do
        label = create(:group_label, group: group)
        delete :destroy, params: { group_id: group.to_param, id: label.to_param }

        expect(response).to have_gitlab_http_status(:not_found)
      end
    end
  end
end