summaryrefslogtreecommitdiff
path: root/spec/graphql/resolvers/ci/runner_setup_resolver_spec.rb
blob: 3d004290d9b6dca578135ce16f5023ca38088359 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Resolvers::Ci::RunnerSetupResolver do
  include GraphqlHelpers

  describe '#resolve' do
    let(:user) { create(:user) }

    subject(:resolve_subject) { resolve(described_class, ctx: { current_user: user }, args: { platform: platform, architecture: 'amd64' }.merge(target_param)) }

    context 'with container platforms' do
      let(:platform) { 'docker' }
      let(:project) { create(:project) }
      let(:target_param) { { project_id: project.to_global_id } }

      it 'returns install instructions' do
        expect(resolve_subject[:install_instructions]).not_to eq(nil)
      end

      it 'does not return register instructions' do
        expect(resolve_subject[:register_instructions]).to eq(nil)
      end
    end

    context 'with regular platforms' do
      let(:platform) { 'linux' }

      context 'without target parameter' do
        let(:target_param) { {} }

        context 'when user is not admin' do
          it 'returns access error' do
            expect { resolve_subject }.to raise_error(Gitlab::Graphql::Errors::ResourceNotAvailable)
          end
        end

        context 'when user is admin' do
          before do
            user.update!(admin: true)
          end

          it 'returns install and register instructions' do
            expect(resolve_subject.keys).to contain_exactly(:install_instructions, :register_instructions)
            expect(resolve_subject.values).not_to include(nil)
          end
        end
      end

      context 'with project target parameter' do
        let(:project) { create(:project) }
        let(:target_param) { { project_id: project.to_global_id } }

        context 'when user has access to admin builds on project' do
          before do
            project.add_maintainer(user)
          end

          it 'returns install and register instructions' do
            expect(resolve_subject.keys).to contain_exactly(:install_instructions, :register_instructions)
            expect(resolve_subject.values).not_to include(nil)
          end
        end

        context 'when user does not have access to admin builds on project' do
          before do
            project.add_developer(user)
          end

          it 'returns access error' do
            expect { resolve_subject }.to raise_error(Gitlab::Graphql::Errors::ResourceNotAvailable)
          end
        end
      end

      context 'with group target parameter' do
        let(:group) { create(:group) }
        let(:target_param) { { group_id: group.to_global_id } }

        context 'when user has access to admin builds on group' do
          before do
            group.add_owner(user)
          end

          it 'returns install and register instructions' do
            expect(resolve_subject.keys).to contain_exactly(:install_instructions, :register_instructions)
            expect(resolve_subject.values).not_to include(nil)
          end
        end

        context 'when user does not have access to admin builds on group' do
          before do
            group.add_developer(user)
          end

          it 'returns access error' do
            expect { resolve_subject }.to raise_error(Gitlab::Graphql::Errors::ResourceNotAvailable)
          end
        end
      end
    end
  end
end