2022-01-26 12:08:38 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
RSpec.describe Ci::CreatePipelineService, # rubocop: disable RSpec/FilePath
|
|
|
|
:yaml_processor_feature_flag_corectness,
|
|
|
|
feature_category: :continuous_integration do
|
|
|
|
describe 'pipeline logger' do
|
2022-01-26 12:08:38 +05:30
|
|
|
let_it_be(:project) { create(:project, :repository) }
|
2022-03-02 08:16:31 +05:30
|
|
|
let_it_be(:user) { project.first_owner }
|
2022-01-26 12:08:38 +05:30
|
|
|
|
|
|
|
let(:ref) { 'refs/heads/master' }
|
|
|
|
let(:service) { described_class.new(project, user, { ref: ref }) }
|
|
|
|
let(:pipeline) { service.execute(:push).payload }
|
|
|
|
let(:file_location) { 'spec/fixtures/gitlab/ci/external_files/.gitlab-ci-template-1.yml' }
|
|
|
|
|
|
|
|
let(:counters) do
|
|
|
|
{
|
|
|
|
'count' => a_kind_of(Numeric),
|
2022-10-11 01:57:18 +05:30
|
|
|
'max' => a_kind_of(Numeric),
|
2023-03-04 22:38:38 +05:30
|
|
|
'sum' => a_kind_of(Numeric)
|
2022-01-26 12:08:38 +05:30
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:loggable_data) do
|
|
|
|
{
|
|
|
|
'pipeline_creation_caller' => 'Ci::CreatePipelineService',
|
|
|
|
'pipeline_source' => 'push',
|
|
|
|
'pipeline_id' => a_kind_of(Numeric),
|
|
|
|
'pipeline_persisted' => true,
|
|
|
|
'project_id' => project.id,
|
|
|
|
'pipeline_creation_service_duration_s' => a_kind_of(Numeric),
|
2023-03-04 22:38:38 +05:30
|
|
|
'pipeline_creation_duration_s' => a_kind_of(Numeric),
|
|
|
|
'pipeline_size_count' => a_kind_of(Numeric),
|
|
|
|
'pipeline_step_gitlab_ci_pipeline_chain_seed_duration_s' => a_kind_of(Numeric),
|
2022-03-02 08:16:31 +05:30
|
|
|
'pipeline_seed_build_inclusion_duration_s' => counters,
|
2023-03-04 22:38:38 +05:30
|
|
|
'pipeline_seed_build_errors_duration_s' => counters,
|
|
|
|
'pipeline_seed_build_to_resource_duration_s' => counters,
|
|
|
|
'pipeline_seed_stage_seeds_duration_s' => counters,
|
2022-03-02 08:16:31 +05:30
|
|
|
'pipeline_builds_tags_count' => a_kind_of(Numeric),
|
|
|
|
'pipeline_builds_distinct_tags_count' => a_kind_of(Numeric)
|
2022-01-26 12:08:38 +05:30
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
before do
|
|
|
|
stub_ci_pipeline_yaml_file(gitlab_ci_yaml)
|
|
|
|
end
|
|
|
|
|
2022-01-26 12:08:38 +05:30
|
|
|
context 'when the duration is under the threshold' do
|
|
|
|
it 'does not create a log entry but it collects the data' do
|
|
|
|
expect(Gitlab::AppJsonLogger).not_to receive(:info)
|
|
|
|
expect(pipeline).to be_created_successfully
|
|
|
|
|
|
|
|
expect(service.logger.observations_hash)
|
|
|
|
.to match(
|
|
|
|
a_hash_including(
|
2023-03-04 22:38:38 +05:30
|
|
|
'pipeline_creation_duration_s' => a_kind_of(Numeric),
|
|
|
|
'pipeline_size_count' => a_kind_of(Numeric),
|
|
|
|
'pipeline_step_gitlab_ci_pipeline_chain_seed_duration_s' => a_kind_of(Numeric)
|
2022-01-26 12:08:38 +05:30
|
|
|
)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the durations exceeds the threshold' do
|
|
|
|
let(:timer) do
|
|
|
|
proc do
|
2023-03-04 22:38:38 +05:30
|
|
|
@timer = @timer.to_i + 30 # rubocop: disable RSpec/InstanceVariable
|
2022-01-26 12:08:38 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(Gitlab::Ci::Pipeline::Logger)
|
|
|
|
.to receive(:current_monotonic_time) { timer.call }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a log entry' do
|
|
|
|
expect(Gitlab::AppJsonLogger)
|
|
|
|
.to receive(:info)
|
|
|
|
.with(a_hash_including(loggable_data))
|
|
|
|
.and_call_original
|
|
|
|
|
|
|
|
expect(pipeline).to be_created_successfully
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the pipeline is not persisted' do
|
|
|
|
let(:loggable_data) do
|
|
|
|
{
|
|
|
|
'pipeline_creation_caller' => 'Ci::CreatePipelineService',
|
|
|
|
'pipeline_source' => 'push',
|
|
|
|
'pipeline_persisted' => false,
|
|
|
|
'project_id' => project.id,
|
|
|
|
'pipeline_creation_service_duration_s' => a_kind_of(Numeric),
|
2023-03-04 22:38:38 +05:30
|
|
|
'pipeline_step_gitlab_ci_pipeline_chain_seed_duration_s' => a_kind_of(Numeric)
|
2022-01-26 12:08:38 +05:30
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
it 'creates a log entry' do
|
2022-01-26 12:08:38 +05:30
|
|
|
allow_next_instance_of(Ci::Pipeline) do |pipeline|
|
|
|
|
expect(pipeline).to receive(:save!).and_raise { RuntimeError }
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(Gitlab::AppJsonLogger)
|
|
|
|
.to receive(:info)
|
|
|
|
.with(a_hash_including(loggable_data))
|
|
|
|
.and_call_original
|
|
|
|
|
|
|
|
expect { pipeline }.to raise_error(RuntimeError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the feature flag is disabled' do
|
|
|
|
before do
|
|
|
|
stub_feature_flags(ci_pipeline_creation_logger: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a log entry' do
|
|
|
|
expect(Gitlab::AppJsonLogger).not_to receive(:info)
|
|
|
|
|
|
|
|
expect(pipeline).to be_created_successfully
|
|
|
|
expect(service.logger.observations_hash).to eq({})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the size exceeds the threshold' do
|
|
|
|
before do
|
|
|
|
allow_next_instance_of(Ci::Pipeline) do |pipeline|
|
2023-03-04 22:38:38 +05:30
|
|
|
allow(pipeline).to receive(:total_size).and_return(5000)
|
2022-01-26 12:08:38 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a log entry' do
|
|
|
|
expect(Gitlab::AppJsonLogger)
|
|
|
|
.to receive(:info)
|
|
|
|
.with(a_hash_including(loggable_data))
|
|
|
|
.and_call_original
|
|
|
|
|
|
|
|
expect(pipeline).to be_created_successfully
|
|
|
|
end
|
|
|
|
end
|
2023-03-17 16:20:25 +05:30
|
|
|
|
|
|
|
describe 'pipeline includes count' do
|
|
|
|
before do
|
|
|
|
stub_const('Gitlab::Ci::Config::External::Context::MAX_INCLUDES', 2)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the includes count exceeds the maximum' do
|
|
|
|
before do
|
|
|
|
allow_next_instance_of(Ci::Pipeline) do |pipeline|
|
|
|
|
allow(pipeline).to receive(:config_metadata)
|
|
|
|
.and_return({ includes: [{ file: 1 }, { file: 2 }, { file: 3 }] })
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a log entry' do
|
|
|
|
expect(Gitlab::AppJsonLogger)
|
|
|
|
.to receive(:info)
|
|
|
|
.with(a_hash_including({ 'pipeline_includes_count' => 3 }))
|
|
|
|
.and_call_original
|
|
|
|
|
|
|
|
expect(pipeline).to be_created_successfully
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the includes count does not exceed the maximum' do
|
|
|
|
before do
|
|
|
|
allow_next_instance_of(Ci::Pipeline) do |pipeline|
|
|
|
|
allow(pipeline).to receive(:config_metadata)
|
|
|
|
.and_return({ includes: [{ file: 1 }, { file: 2 }] })
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a log entry but it collects the data' do
|
|
|
|
expect(Gitlab::AppJsonLogger).not_to receive(:info)
|
|
|
|
expect(pipeline).to be_created_successfully
|
|
|
|
|
|
|
|
expect(service.logger.observations_hash)
|
|
|
|
.to match(a_hash_including({ 'pipeline_includes_count' => 2 }))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the includes data is nil' do
|
|
|
|
before do
|
|
|
|
allow_next_instance_of(Ci::Pipeline) do |pipeline|
|
|
|
|
allow(pipeline).to receive(:config_metadata)
|
|
|
|
.and_return({})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a log entry' do
|
|
|
|
expect(Gitlab::AppJsonLogger).not_to receive(:info)
|
|
|
|
expect(pipeline).to be_created_successfully
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the pipeline config_metadata is nil' do
|
|
|
|
before do
|
|
|
|
allow_next_instance_of(Ci::Pipeline) do |pipeline|
|
|
|
|
allow(pipeline).to receive(:config_metadata)
|
|
|
|
.and_return(nil)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a log entry but it collects the data' do
|
|
|
|
expect(Gitlab::AppJsonLogger).not_to receive(:info)
|
|
|
|
expect(pipeline).to be_created_successfully
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-01-26 12:08:38 +05:30
|
|
|
end
|
|
|
|
end
|