debian-mirror-gitlab/spec/lib/gitlab/import/metrics_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

213 lines
6.1 KiB
Ruby
Raw Normal View History

2020-04-22 19:07:51 +05:30
# frozen_string_literal: true
require 'spec_helper'
2021-11-18 22:05:49 +05:30
RSpec.describe Gitlab::Import::Metrics, :aggregate_failures do
2020-07-28 23:09:34 +05:30
let(:importer) { :test_importer }
2021-11-18 22:05:49 +05:30
let(:project) { build(:project, id: non_existing_record_id, created_at: Time.current) }
2020-07-28 23:09:34 +05:30
let(:histogram) { double(:histogram) }
let(:counter) { double(:counter) }
subject { described_class.new(importer, project) }
2021-11-18 22:05:49 +05:30
before do
allow(counter).to receive(:increment)
allow(histogram).to receive(:observe)
end
describe '#track_start_import' do
context 'when project is not a github import' do
it 'does not emit importer metrics' do
expect(subject).not_to receive(:track_usage_event)
subject.track_start_import
end
end
context 'when project is a github import' do
before do
project.import_type = 'github'
end
it 'emits importer metrics' do
expect(subject).to receive(:track_usage_event).with(:github_import_project_start, project.id)
subject.track_start_import
end
end
end
describe '#track_failed_import' do
context 'when project is not a github import' do
it 'does not emit importer metrics' do
expect(subject).not_to receive(:track_usage_event)
2023-05-27 22:25:52 +05:30
expect_no_snowplow_event(
2023-06-20 00:43:36 +05:30
category: 'Import::GithubService',
2023-05-27 22:25:52 +05:30
action: 'create',
label: 'github_import_project_state',
project: project,
2023-06-20 00:43:36 +05:30
import_type: 'github', state: 'failed'
2023-05-27 22:25:52 +05:30
)
2021-11-18 22:05:49 +05:30
subject.track_failed_import
end
end
context 'when project is a github import' do
before do
project.import_type = 'github'
2023-05-27 22:25:52 +05:30
allow(project).to receive(:import_status).and_return('failed')
2021-11-18 22:05:49 +05:30
end
it 'emits importer metrics' do
expect(subject).to receive(:track_usage_event).with(:github_import_project_failure, project.id)
subject.track_failed_import
2023-05-27 22:25:52 +05:30
expect_snowplow_event(
2023-06-20 00:43:36 +05:30
category: 'Import::GithubService',
2023-05-27 22:25:52 +05:30
action: 'create',
label: 'github_import_project_state',
project: project,
2023-06-20 00:43:36 +05:30
import_type: 'github', state: 'failed'
2023-05-27 22:25:52 +05:30
)
2021-11-18 22:05:49 +05:30
end
end
end
describe '#track_finished_import' do
2023-05-27 22:25:52 +05:30
context 'when project is a github import' do
before do
project.import_type = 'github'
allow(Gitlab::Metrics).to receive(:counter) { counter }
allow(Gitlab::Metrics).to receive(:histogram) { histogram }
allow(project).to receive(:beautified_import_status_name).and_return('completed')
end
2020-04-22 19:07:51 +05:30
2023-05-27 22:25:52 +05:30
it 'emits importer metrics' do
expect(Gitlab::Metrics).to receive(:counter).with(
:test_importer_imported_projects_total,
'The number of imported projects'
)
2020-04-22 19:07:51 +05:30
2023-05-27 22:25:52 +05:30
expect(Gitlab::Metrics).to receive(:histogram).with(
:test_importer_total_duration_seconds,
'Total time spent importing projects, in seconds',
{},
described_class::IMPORT_DURATION_BUCKETS
)
expect(counter).to receive(:increment)
2020-04-22 19:07:51 +05:30
2023-05-27 22:25:52 +05:30
subject.track_finished_import
2020-04-22 19:07:51 +05:30
2023-05-27 22:25:52 +05:30
expect_snowplow_event(
2023-06-20 00:43:36 +05:30
category: 'Import::GithubService',
2023-05-27 22:25:52 +05:30
action: 'create',
label: 'github_import_project_state',
project: project,
2023-06-20 00:43:36 +05:30
import_type: 'github', state: 'completed'
2023-05-27 22:25:52 +05:30
)
expect(subject.duration).not_to be_nil
end
2021-11-18 22:05:49 +05:30
2023-05-27 22:25:52 +05:30
context 'when import is partially completed' do
before do
allow(project).to receive(:beautified_import_status_name).and_return('partially completed')
end
it 'emits snowplow metrics' do
expect(subject).to receive(:track_usage_event).with(:github_import_project_partially_completed, project.id)
subject.track_finished_import
expect_snowplow_event(
2023-06-20 00:43:36 +05:30
category: 'Import::GithubService',
2023-05-27 22:25:52 +05:30
action: 'create',
label: 'github_import_project_state',
project: project,
2023-06-20 00:43:36 +05:30
import_type: 'github', state: 'partially completed'
2023-05-27 22:25:52 +05:30
)
end
end
2021-11-18 22:05:49 +05:30
end
context 'when project is not a github import' do
it 'does not emit importer metrics' do
expect(subject).not_to receive(:track_usage_event)
subject.track_finished_import
2023-05-27 22:25:52 +05:30
expect_no_snowplow_event(
2023-06-20 00:43:36 +05:30
category: 'Import::GithubService',
2023-05-27 22:25:52 +05:30
action: 'create',
label: 'github_import_project_state',
project: project,
2023-06-20 00:43:36 +05:30
import_type: 'github', state: 'completed'
2023-05-27 22:25:52 +05:30
)
end
end
end
describe '#track_cancelled_import' do
context 'when project is not a github import' do
it 'does not emit importer metrics' do
expect(subject).not_to receive(:track_usage_event)
expect_no_snowplow_event(
2023-06-20 00:43:36 +05:30
category: 'Import::GithubService',
2023-05-27 22:25:52 +05:30
action: 'create',
label: 'github_import_project_state',
project: project,
2023-06-20 00:43:36 +05:30
import_type: 'github', state: 'canceled'
2023-05-27 22:25:52 +05:30
)
subject.track_canceled_import
end
end
context 'when project is a github import' do
before do
project.import_type = 'github'
allow(project).to receive(:import_status).and_return('canceled')
end
it 'emits importer metrics' do
expect(subject).to receive(:track_usage_event).with(:github_import_project_cancelled, project.id)
subject.track_canceled_import
expect_snowplow_event(
2023-06-20 00:43:36 +05:30
category: 'Import::GithubService',
2023-05-27 22:25:52 +05:30
action: 'create',
label: 'github_import_project_state',
project: project,
2023-06-20 00:43:36 +05:30
import_type: 'github', state: 'canceled'
2023-05-27 22:25:52 +05:30
)
2021-11-18 22:05:49 +05:30
end
end
end
describe '#issues_counter' do
it 'creates a counter for issues' do
expect(Gitlab::Metrics).to receive(:counter).with(
:test_importer_imported_issues_total,
'The number of imported issues'
)
subject.issues_counter
end
end
describe '#merge_requests_counter' do
it 'creates a counter for issues' do
expect(Gitlab::Metrics).to receive(:counter).with(
:test_importer_imported_merge_requests_total,
'The number of imported merge (pull) requests'
)
subject.merge_requests_counter
2020-04-22 19:07:51 +05:30
end
end
end