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

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

RSpec.describe 'Query.project.pipeline.stages' do
  include GraphqlHelpers

  subject(:post_query) { post_graphql(query, current_user: user) }

  let_it_be(:project) { create(:project, :repository, :public) }
  let_it_be(:user) { create(:user) }
  let_it_be(:pipeline) { create(:ci_pipeline, project: project, user: user) }

  let(:stage_nodes) { graphql_data_at(:project, :pipeline, :stages, :nodes) }
  let(:params) { {} }

  let(:fields) do
    <<~QUERY
      nodes {
        #{all_graphql_fields_for('CiStage')}
      }
    QUERY
  end

  let(:query) do
    %(
      query {
        project(fullPath: "#{project.full_path}") {
          pipeline(iid: "#{pipeline.iid}") {
            stages {
              #{fields}
            }
          }
        }
      }
    )
  end

  before_all do
    create(:ci_stage_entity, pipeline: pipeline, name: 'deploy')
    create_list(:ci_build, 2, pipeline: pipeline, stage: 'deploy')
  end

  it_behaves_like 'a working graphql query' do
    before do
      post_query
    end
  end

  it 'returns the stage of a pipeline' do
    post_query

    expect(stage_nodes.first['name']).to eq('deploy')
  end

  describe 'job pagination' do
    let(:job_nodes) { graphql_dig_at(stage_nodes, :jobs, :nodes) }

    it 'returns up to default limit jobs per stage' do
      post_query

      expect(job_nodes.count).to eq(2)
    end

    context 'when the limit is manually set' do
      before do
        stub_application_setting(jobs_per_stage_page_size: 1)
      end

      it 'returns up to custom limit jobs per stage' do
        post_query

        expect(job_nodes.count).to eq(1)
      end
    end
  end
end