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

package_pipelines_resolver_spec.rb « resolvers « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a52dee59bc65ae52e718da052305e759d46adeca (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
162
163
164
165
166
167
168
169
170
171
172
173
174
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Resolvers::PackagePipelinesResolver do
  include GraphqlHelpers

  let_it_be_with_reload(:package) { create(:package) }
  let_it_be(:pipelines) { create_list(:ci_pipeline, 3, project: package.project) }

  let(:user) { package.project.first_owner }

  describe '#resolve' do
    let(:returned_pipelines) { graphql_dig_at(subject, 'data', 'package', 'pipelines', 'nodes') }
    let(:returned_errors) { graphql_dig_at(subject, 'errors', 'message') }
    let(:pagination_args) { {} }
    let(:query) do
      pipelines_nodes = 'nodes { id }'
      graphql_query_for(
        :package,
        { id: global_id_of(package) },
        query_graphql_field('pipelines', pagination_args, pipelines_nodes)
      )
    end

    subject do
      GitlabSchema.execute(query, context: { current_user: user })
    end

    before do
      pipelines.each do |pipeline|
        create(:package_build_info, package: package, pipeline: pipeline)
      end
    end

    it 'contains the expected pipelines' do
      expect_to_contain_exactly(*pipelines)
    end

    context 'with valid after' do
      let(:pagination_args) { { first: 1, after: encode_cursor(id: pipelines[1].id) } }

      it 'contains the expected pipelines' do
        expect_to_contain_exactly(pipelines[0])
      end
    end

    context 'with valid before' do
      let(:pagination_args) { { last: 1, before: encode_cursor(id: pipelines[1].id) } }

      it 'contains the expected pipelines' do
        expect_to_contain_exactly(pipelines[2])
      end
    end

    context 'with invalid after' do
      let(:pagination_args) { { first: 1, after: 'not_json_string' } }

      it 'generates an argument error' do
        expect(returned_errors).to include('Please provide a valid cursor')
      end
    end

    context 'with invalid after key' do
      let(:pagination_args) { { first: 1, after: encode_cursor(foo: 3) } }

      it 'generates an argument error' do
        expect(returned_errors).to include('Please provide a valid cursor')
      end
    end

    context 'with invalid before' do
      let(:pagination_args) { { last: 1, before: 'not_json_string' } }

      it 'generates an argument error' do
        expect(returned_errors).to include('Please provide a valid cursor')
      end
    end

    context 'with invalid before key' do
      let(:pagination_args) { { last: 1, before: encode_cursor(foo: 3) } }

      it 'generates an argument error' do
        expect(returned_errors).to include('Please provide a valid cursor')
      end
    end

    context 'with unauthorized user' do
      let_it_be(:user) { create(:user) }

      it 'returns nothing' do
        expect(returned_pipelines).to be_nil
      end
    end

    context 'with many packages' do
      let_it_be_with_reload(:other_package) { create(:package, project: package.project) }
      let_it_be(:other_pipelines) { create_list(:ci_pipeline, 3, project: package.project) }

      let(:returned_pipelines) do
        graphql_dig_at(subject, 'data', 'project', 'packages', 'nodes', 'pipelines', 'nodes')
      end

      let(:query) do
        pipelines_query = query_graphql_field('pipelines', pagination_args, 'nodes { id }')
        <<~QUERY
        {
          project(fullPath: "#{package.project.full_path}") {
            packages {
              nodes { #{pipelines_query} }
            }
          }
        }
        QUERY
      end

      before do
        other_pipelines.each do |pipeline|
          create(:package_build_info, package: other_package, pipeline: pipeline)
        end
      end

      it 'contains the expected pipelines' do
        expect_to_contain_exactly(*(pipelines + other_pipelines))
      end

      it 'handles n+1 situations' do
        control = ActiveRecord::QueryRecorder.new do
          GitlabSchema.execute(query, context: { current_user: user })
        end

        create_package_with_pipelines(package.project)

        expectation = expect { GitlabSchema.execute(query, context: { current_user: user }) }

        expectation.not_to exceed_query_limit(control)
      end

      def create_package_with_pipelines(project)
        extra_package = create(:package, project: project)
        create_list(:ci_pipeline, 3, project: project).each do |pipeline|
          create(:package_build_info, package: extra_package, pipeline: pipeline)
        end
      end
    end

    def encode_cursor(json)
      GitlabSchema.cursor_encoder.encode(
        Gitlab::Json.dump(json),
        nonce: true
      )
    end

    def expect_to_contain_exactly(*pipelines)
      entities = pipelines.map { |pipeline| a_graphql_entity_for(pipeline) }
      expect(returned_pipelines).to match_array(entities)
    end
  end

  describe '.field options' do
    let(:field) do
      field_options = described_class.field_options.merge(
        owner: resolver_parent,
        name: 'dummy_field'
      )
      ::Types::BaseField.new(**field_options)
    end

    it 'sets them properly' do
      expect(field).not_to be_connection
      expect(field.extras).to match_array([:lookahead])
    end
  end
end