summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/project_stats_refresh_conflicts_logger_spec.rb
blob: ce05d5b11c7a5b83995d02c346745e42f59b9082 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::ProjectStatsRefreshConflictsLogger do
  before do
    Gitlab::ApplicationContext.push(feature_category: 'test', caller_id: 'caller')
  end

  describe '.warn_artifact_deletion_during_stats_refresh' do
    it 'logs a warning about artifacts being deleted while the project is undergoing stats refresh' do
      project_id = 123
      method = 'Foo#action'

      expect(Gitlab::AppLogger).to receive(:warn).with(
        hash_including(
          message: 'Deleted artifacts undergoing refresh',
          method: method,
          project_id: project_id,
          'correlation_id' => an_instance_of(String),
          'meta.feature_category' => 'test',
          'meta.caller_id' => 'caller'
        )
      )

      described_class.warn_artifact_deletion_during_stats_refresh(project_id: project_id, method: method)
    end
  end

  describe '.warn_request_rejected_during_stats_refresh' do
    it 'logs a warning about artifacts being deleted while the project is undergoing stats refresh' do
      project_id = 123

      expect(Gitlab::AppLogger).to receive(:warn).with(
        hash_including(
          message: 'Rejected request due to project undergoing stats refresh',
          project_id: project_id,
          'correlation_id' => an_instance_of(String),
          'meta.feature_category' => 'test',
          'meta.caller_id' => 'caller'
        )
      )

      described_class.warn_request_rejected_during_stats_refresh(project_id)
    end
  end

  describe '.warn_skipped_artifact_deletion_during_stats_refresh' do
    it 'logs a warning about artifacts being excluded from deletion while the project is undergoing stats refresh' do
      project_ids = [12, 34]
      method = 'Foo#action'

      expect(Gitlab::AppLogger).to receive(:warn).with(
        hash_including(
          message: 'Skipped deleting artifacts undergoing refresh',
          method: method,
          project_ids: match_array(project_ids),
          'correlation_id' => an_instance_of(String),
          'meta.feature_category' => 'test',
          'meta.caller_id' => 'caller'
        )
      )

      described_class.warn_skipped_artifact_deletion_during_stats_refresh(project_ids: project_ids, method: method)
    end
  end
end