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

play_spec.rb « job « ci « mutations « graphql « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c700248f854d9491c23fa3001972eeebb474340 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'JobPlay', feature_category: :continuous_integration do
  include GraphqlHelpers

  let_it_be(:user) { create(:user) }
  let_it_be(:project) { create(:project) }
  let_it_be(:pipeline) { create(:ci_pipeline, project: project, user: user) }
  let_it_be(:job) { create(:ci_build, :playable, pipeline: pipeline, name: 'build') }

  let(:variables) do
    {
      id: job.to_global_id.to_s
    }
  end

  let(:mutation) do
    graphql_mutation(:job_play, variables,
      <<-QL
                       errors
                       job {
                         id
                         manualVariables {
                           nodes {
                             key
                           }
                         }
                       }
      QL
    )
  end

  let(:mutation_response) { graphql_mutation_response(:job_play) }

  before_all do
    project.add_maintainer(user)
  end

  it 'returns an error if the user is not allowed to play the job' do
    post_graphql_mutation(mutation, current_user: create(:user))

    expect(graphql_errors).not_to be_empty
  end

  it 'plays a job' do
    job_id = ::Gitlab::GlobalId.build(job, id: job.id).to_s
    post_graphql_mutation(mutation, current_user: user)

    expect(response).to have_gitlab_http_status(:success)
    expect(mutation_response['job']['id']).to eq(job_id)
  end

  context 'when given variables' do
    let(:variables) do
      {
        id: job.to_global_id.to_s,
        variables: [
          { key: 'MANUAL_VAR_1', value: 'test var' },
          { key: 'MANUAL_VAR_2', value: 'test var 2' }
        ]
      }
    end

    it 'provides those variables to the job', :aggregate_failures do
      expect_next_instance_of(Ci::PlayBuildService) do |instance|
        expect(instance).to receive(:execute).with(an_instance_of(Ci::Build), variables[:variables]).and_call_original
      end

      post_graphql_mutation(mutation, current_user: user)

      expect(response).to have_gitlab_http_status(:success)
      expect(mutation_response['job']['manualVariables']['nodes'].pluck('key')).to contain_exactly(
        'MANUAL_VAR_1', 'MANUAL_VAR_2'
      )
    end
  end
end