Extend N+1 Builds and Jobs API specs
This commit is contained in:
parent
87cc03736c
commit
a4d7f155bf
2 changed files with 24 additions and 2 deletions
|
@ -54,8 +54,19 @@ describe API::Jobs do
|
|||
end
|
||||
|
||||
it 'avoids N+1 queries', skip_before_request: true do
|
||||
first_build = create(:ci_build, :artifacts, pipeline: pipeline)
|
||||
first_build.runner = create(:ci_runner)
|
||||
first_build.user = create(:user)
|
||||
first_build.save
|
||||
|
||||
control_count = ActiveRecord::QueryRecorder.new { go }.count
|
||||
create_list(:ci_build, 5, pipeline: pipeline)
|
||||
|
||||
second_pipeline = create(:ci_empty_pipeline, project: project, sha: project.commit.id, ref: project.default_branch)
|
||||
second_build = create(:ci_build, :artifacts, pipeline: second_pipeline)
|
||||
second_build.runner = create(:ci_runner)
|
||||
second_build.user = create(:user)
|
||||
second_build.save
|
||||
|
||||
expect { go }.not_to exceed_query_limit(control_count)
|
||||
end
|
||||
|
||||
|
|
|
@ -43,8 +43,19 @@ describe API::V3::Builds do
|
|||
end
|
||||
|
||||
it 'avoids N+1 queries', skip_before_request: true do
|
||||
first_build = create(:ci_build, :artifacts, pipeline: pipeline)
|
||||
first_build.runner = create(:ci_runner)
|
||||
first_build.user = create(:user)
|
||||
first_build.save
|
||||
|
||||
control_count = ActiveRecord::QueryRecorder.new { go }.count
|
||||
create_list(:ci_build, 5, pipeline: pipeline)
|
||||
|
||||
second_pipeline = create(:ci_empty_pipeline, project: project, sha: project.commit.id, ref: project.default_branch)
|
||||
second_build = create(:ci_build, :artifacts, pipeline: second_pipeline)
|
||||
second_build.runner = create(:ci_runner)
|
||||
second_build.user = create(:user)
|
||||
second_build.save
|
||||
|
||||
expect { go }.not_to exceed_query_limit(control_count)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue