summaryrefslogtreecommitdiff
path: root/spec/controllers/projects/runners_controller_spec.rb
blob: d63d88f828351d1e98fd40c4c1d7a453298f752d (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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::RunnersController do
  let(:user) { create(:user) }
  let(:project) { create(:project) }
  let(:runner) { create(:ci_runner, :project, projects: [project]) }

  let(:params) do
    {
      namespace_id: project.namespace,
      project_id: project,
      id: runner
    }
  end

  before do
    sign_in(user)
    project.add_maintainer(user)
  end

  describe '#update' do
    it 'updates the runner and ticks the queue' do
      new_desc = runner.description.swapcase

      expect do
        post :update, params: params.merge(runner: { description: new_desc } )
      end.to change { runner.ensure_runner_queue_value }

      runner.reload

      expect(response).to have_gitlab_http_status(:found)
      expect(runner.description).to eq(new_desc)
    end
  end

  describe '#destroy' do
    it 'destroys the runner' do
      delete :destroy, params: params

      expect(response).to have_gitlab_http_status(:found)
      expect(Ci::Runner.find_by(id: runner.id)).to be_nil
    end
  end

  describe '#resume' do
    it 'marks the runner as active and ticks the queue' do
      runner.update(active: false)

      expect do
        post :resume, params: params
      end.to change { runner.ensure_runner_queue_value }

      runner.reload

      expect(response).to have_gitlab_http_status(:found)
      expect(runner.active).to eq(true)
    end
  end

  describe '#pause' do
    it 'marks the runner as inactive and ticks the queue' do
      runner.update(active: true)

      expect do
        post :pause, params: params
      end.to change { runner.ensure_runner_queue_value }

      runner.reload

      expect(response).to have_gitlab_http_status(:found)
      expect(runner.active).to eq(false)
    end
  end

  describe '#toggle_shared_runners' do
    let(:group) { create(:group) }
    let(:project) { create(:project, group: group) }

    context 'without feature flag' do
      before do
        stub_feature_flags(vueify_shared_runners_toggle: false)
      end

      it 'toggles shared_runners_enabled when the group allows shared runners' do
        project.update!(shared_runners_enabled: true)

        post :toggle_shared_runners, params: params

        project.reload

        expect(response).to have_gitlab_http_status(:found)
        expect(project.shared_runners_enabled).to eq(false)
      end

      it 'toggles shared_runners_enabled when the group disallows shared runners but allows overrides' do
        group.update!(shared_runners_enabled: false, allow_descendants_override_disabled_shared_runners: true)
        project.update!(shared_runners_enabled: false)

        post :toggle_shared_runners, params: params

        project.reload

        expect(response).to have_gitlab_http_status(:found)
        expect(project.shared_runners_enabled).to eq(true)
      end

      it 'does not enable if the group disallows shared runners' do
        group.update!(shared_runners_enabled: false, allow_descendants_override_disabled_shared_runners: false)
        project.update!(shared_runners_enabled: false)

        post :toggle_shared_runners, params: params

        project.reload

        expect(response).to have_gitlab_http_status(:found)
        expect(project.shared_runners_enabled).to eq(false)
        expect(flash[:alert]).to eq('Cannot enable shared runners because parent group does not allow it')
      end
    end

    context 'with feature flag: vueify_shared_runners_toggle' do
      it 'toggles shared_runners_enabled when the group allows shared runners' do
        project.update!(shared_runners_enabled: true)

        post :toggle_shared_runners, params: params

        project.reload

        expect(response).to have_gitlab_http_status(:ok)
        expect(project.shared_runners_enabled).to eq(false)
      end

      it 'toggles shared_runners_enabled when the group disallows shared runners but allows overrides' do
        group.update!(shared_runners_enabled: false, allow_descendants_override_disabled_shared_runners: true)
        project.update!(shared_runners_enabled: false)

        post :toggle_shared_runners, params: params

        project.reload

        expect(response).to have_gitlab_http_status(:ok)
        expect(project.shared_runners_enabled).to eq(true)
      end

      it 'does not enable if the group disallows shared runners' do
        group.update!(shared_runners_enabled: false, allow_descendants_override_disabled_shared_runners: false)
        project.update!(shared_runners_enabled: false)

        post :toggle_shared_runners, params: params

        project.reload

        expect(response).to have_gitlab_http_status(:unauthorized)
        expect(project.shared_runners_enabled).to eq(false)
        expect(json_response['error']).to eq('Cannot enable shared runners because parent group does not allow it')
      end
    end
  end
end