Add additional test case for Gitaly N+1 for diff files
This commit is contained in:
parent
356bf3afff
commit
49f8697a49
2 changed files with 76 additions and 43 deletions
|
@ -40,7 +40,7 @@ class EnvironmentStatus
|
|||
end
|
||||
|
||||
def changes
|
||||
return [] if project.route_map_for(sha).nil?
|
||||
return [] unless has_route_map?
|
||||
|
||||
changed_files.map { |file| build_change(file) }.compact
|
||||
end
|
||||
|
@ -50,6 +50,10 @@ class EnvironmentStatus
|
|||
.merge_request_diff_files.where(deleted_file: false)
|
||||
end
|
||||
|
||||
def has_route_map?
|
||||
project.route_map_for(sha).present?
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
PAGE_EXTENSIONS = /\A\.(s?html?|php|asp|cgi|pl)\z/i.freeze
|
||||
|
|
|
@ -870,40 +870,6 @@ describe Projects::MergeRequestsController do
|
|||
end
|
||||
end
|
||||
|
||||
context 'when multiple environments with deployments are present' do
|
||||
let(:another_environment) { create(:environment, project: forked) }
|
||||
|
||||
it 'has no N+1 SQL issues for environments', :request_store, retry: 0 do
|
||||
# First run to insert test data from lets, which does take up some 30 queries
|
||||
get_ci_environments_status
|
||||
|
||||
control_count = ActiveRecord::QueryRecorder.new(skip_cached: false) { get_ci_environments_status }.count
|
||||
|
||||
create(:deployment, :succeed, environment: another_environment,
|
||||
sha: sha,
|
||||
ref: 'master',
|
||||
deployable: build)
|
||||
|
||||
# TODO address the last 11 queries
|
||||
# See https://gitlab.com/gitlab-org/gitlab-ce/issues/63952 (5 queries)
|
||||
# And https://gitlab.com/gitlab-org/gitlab-ce/issues/64105 (6 queries)
|
||||
leeway = 11
|
||||
expect { get_ci_environments_status }.not_to exceed_all_query_limit(control_count + leeway)
|
||||
end
|
||||
|
||||
it 'has no N+1 Gitaly requests for deployments', :request_store do
|
||||
expect(merge_request).to be_present
|
||||
|
||||
create(:deployment, :succeed, environment: another_environment,
|
||||
sha: sha,
|
||||
ref: 'master',
|
||||
deployable: build)
|
||||
|
||||
expect { get_ci_environments_status }
|
||||
.not_to change { Gitlab::GitalyClient.get_request_count }
|
||||
end
|
||||
end
|
||||
|
||||
# we're trying to reduce the overall number of queries for this method.
|
||||
# set a hard limit for now. https://gitlab.com/gitlab-org/gitlab-ce/issues/52287
|
||||
it 'keeps queries in check' do
|
||||
|
@ -912,17 +878,80 @@ describe Projects::MergeRequestsController do
|
|||
expect(control_count).to be <= 137
|
||||
end
|
||||
|
||||
def get_ci_environments_status(extra_params = {})
|
||||
params = {
|
||||
namespace_id: merge_request.project.namespace.to_param,
|
||||
project_id: merge_request.project,
|
||||
id: merge_request.iid,
|
||||
format: 'json'
|
||||
}
|
||||
it 'has no N+1 SQL issues for environments', :request_store, retry: 0 do
|
||||
# First run to insert test data from lets, which does take up some 30 queries
|
||||
get_ci_environments_status
|
||||
|
||||
get :ci_environments_status, params: params.merge(extra_params)
|
||||
control_count = ActiveRecord::QueryRecorder.new(skip_cached: false) { get_ci_environments_status }.count
|
||||
|
||||
environment2 = create(:environment, project: forked)
|
||||
create(:deployment, :succeed, environment: environment2, sha: sha, ref: 'master', deployable: build)
|
||||
|
||||
# TODO address the last 11 queries
|
||||
# See https://gitlab.com/gitlab-org/gitlab-ce/issues/63952 (5 queries)
|
||||
# And https://gitlab.com/gitlab-org/gitlab-ce/issues/64105 (6 queries)
|
||||
leeway = 11
|
||||
expect { get_ci_environments_status }.not_to exceed_all_query_limit(control_count + leeway)
|
||||
end
|
||||
end
|
||||
|
||||
context 'when a merge request has multiple environments with deployments' do
|
||||
let(:sha) { merge_request.diff_head_sha }
|
||||
let(:ref) { merge_request.source_branch }
|
||||
|
||||
let!(:build) { create(:ci_build, pipeline: pipeline) }
|
||||
let!(:pipeline) { create(:ci_pipeline, sha: sha, project: project) }
|
||||
let!(:environment) { create(:environment, name: 'env_a', project: project) }
|
||||
let!(:another_environment) { create(:environment, name: 'env_b', project: project) }
|
||||
|
||||
before do
|
||||
merge_request.update_head_pipeline
|
||||
|
||||
create(:deployment, :succeed, environment: environment, sha: sha, ref: ref, deployable: build)
|
||||
create(:deployment, :succeed, environment: another_environment, sha: sha, ref: ref, deployable: build)
|
||||
end
|
||||
|
||||
it 'exposes multiple environment statuses' do
|
||||
get_ci_environments_status
|
||||
|
||||
expect(json_response.count).to eq 2
|
||||
end
|
||||
|
||||
context 'when route map is not present in the project' do
|
||||
it 'does not have N+1 Gitaly requests for environments', :request_store do
|
||||
expect(merge_request).to be_present
|
||||
|
||||
expect { get_ci_environments_status }
|
||||
.not_to change { Gitlab::GitalyClient.get_request_count }
|
||||
end
|
||||
end
|
||||
|
||||
context 'when there is route map present in a project' do
|
||||
before do
|
||||
allow_any_instance_of(EnvironmentStatus)
|
||||
.to receive(:has_route_map?)
|
||||
.and_return(true)
|
||||
end
|
||||
|
||||
it 'does not have N+1 Gitaly requests for diff files', :request_store do
|
||||
expect(merge_request.merge_request_diff.merge_request_diff_files).to be_many
|
||||
|
||||
expect { get_ci_environments_status }
|
||||
.not_to change { Gitlab::GitalyClient.get_request_count }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def get_ci_environments_status(extra_params = {})
|
||||
params = {
|
||||
namespace_id: merge_request.project.namespace.to_param,
|
||||
project_id: merge_request.project,
|
||||
id: merge_request.iid,
|
||||
format: 'json'
|
||||
}
|
||||
|
||||
get :ci_environments_status, params: params.merge(extra_params)
|
||||
end
|
||||
end
|
||||
|
||||
describe 'GET pipeline_status.json' do
|
||||
|
|
Loading…
Reference in a new issue