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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/requests/api/graphql/jobs_query_spec.rb')
-rw-r--r--spec/requests/api/graphql/jobs_query_spec.rb41
1 files changed, 32 insertions, 9 deletions
diff --git a/spec/requests/api/graphql/jobs_query_spec.rb b/spec/requests/api/graphql/jobs_query_spec.rb
index 0aea8e4c253..7607aeac6e0 100644
--- a/spec/requests/api/graphql/jobs_query_spec.rb
+++ b/spec/requests/api/graphql/jobs_query_spec.rb
@@ -5,17 +5,26 @@ require 'spec_helper'
RSpec.describe 'getting job information', feature_category: :continuous_integration do
include GraphqlHelpers
- let_it_be(:job) { create(:ci_build, :success, name: 'job1') }
-
let(:query) do
- graphql_query_for(:jobs)
+ graphql_query_for(
+ :jobs, {}, %(
+ count
+ nodes {
+ #{all_graphql_fields_for(::Types::Ci::JobType, max_depth: 1)}
+ })
+ )
end
+ let_it_be(:runner) { create(:ci_runner) }
+ let_it_be(:job) { create(:ci_build, :success, name: 'job1', runner: runner) }
+
+ subject(:request) { post_graphql(query, current_user: current_user) }
+
context 'when user is admin' do
let_it_be(:current_user) { create(:admin) }
- it 'has full access to all jobs', :aggregate_failure do
- post_graphql(query, current_user: current_user)
+ it 'has full access to all jobs', :aggregate_failures do
+ request
expect(graphql_data_at(:jobs, :count)).to eq(1)
expect(graphql_data_at(:jobs, :nodes)).to contain_exactly(a_graphql_entity_for(job))
@@ -25,14 +34,14 @@ RSpec.describe 'getting job information', feature_category: :continuous_integrat
let_it_be(:pending_job) { create(:ci_build, :pending) }
let_it_be(:failed_job) { create(:ci_build, :failed) }
- it 'gets pending jobs', :aggregate_failure do
+ it 'gets pending jobs', :aggregate_failures do
post_graphql(graphql_query_for(:jobs, { statuses: :PENDING }), current_user: current_user)
expect(graphql_data_at(:jobs, :count)).to eq(1)
expect(graphql_data_at(:jobs, :nodes)).to contain_exactly(a_graphql_entity_for(pending_job))
end
- it 'gets pending and failed jobs', :aggregate_failure do
+ it 'gets pending and failed jobs', :aggregate_failures do
post_graphql(graphql_query_for(:jobs, { statuses: [:PENDING, :FAILED] }), current_user: current_user)
expect(graphql_data_at(:jobs, :count)).to eq(2)
@@ -40,13 +49,27 @@ RSpec.describe 'getting job information', feature_category: :continuous_integrat
a_graphql_entity_for(failed_job)])
end
end
+
+ context 'when N+1 queries' do
+ it 'avoids N+1 queries successfully', :use_sql_query_cache do
+ post_graphql(query, current_user: current_user) # warmup
+
+ control = ActiveRecord::QueryRecorder.new(skip_cached: false) do
+ post_graphql(query, current_user: current_user)
+ end
+
+ create(:ci_build, :success, name: 'job2', runner: create(:ci_runner))
+
+ expect { post_graphql(query, current_user: current_user) }.not_to exceed_all_query_limit(control)
+ end
+ end
end
context 'if the user is not an admin' do
let_it_be(:current_user) { create(:user) }
- it 'has no access to the jobs', :aggregate_failure do
- post_graphql(query, current_user: current_user)
+ it 'has no access to the jobs', :aggregate_failures do
+ request
expect(graphql_data_at(:jobs, :count)).to eq(0)
expect(graphql_data_at(:jobs, :nodes)).to match_array([])