Welcome to mirror list, hosted at ThFree Co, Russian Federation.

track_artifact_report_worker_spec.rb « job_artifacts « ci « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e18539cc6e36ba2a8f8b2e03a31c9d7016831596 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Ci::JobArtifacts::TrackArtifactReportWorker do
  describe '#perform', :clean_gitlab_redis_shared_state do
    let_it_be(:group) { create(:group, :private) }
    let_it_be(:project) { create(:project, group: group) }
    let_it_be(:user) { create(:user) }

    let_it_be(:pipeline) { create(:ci_pipeline, :with_test_reports, project: project, user: user) }

    subject(:perform) { described_class.new.perform(pipeline_id) }

    context 'when pipeline is found' do
      let(:pipeline_id) { pipeline.id }

      it 'executed service' do
        expect_next_instance_of(Ci::JobArtifacts::TrackArtifactReportService) do |instance|
          expect(instance).to receive(:execute).with(pipeline)
        end

        perform
      end

      it_behaves_like 'an idempotent worker' do
        let(:job_args) { pipeline_id }
        let(:test_event_name) { 'i_testing_test_report_uploaded' }
        let(:start_time) { 1.week.ago }
        let(:end_time) { 1.week.from_now }

        subject(:idempotent_perform) { perform_multiple(pipeline_id, exec_times: 2) }

        it 'does not try to increment again' do
          idempotent_perform

          unique_pipeline_pass = Gitlab::UsageDataCounters::HLLRedisCounter.unique_events(
            event_names: test_event_name,
            start_date: start_time,
            end_date: end_time
          )
          expect(unique_pipeline_pass).to eq(1)
        end
      end
    end

    context 'when pipeline is not found' do
      let(:pipeline_id) { non_existing_record_id }

      it 'does not execute service' do
        allow_next_instance_of(Ci::JobArtifacts::TrackArtifactReportService) do |instance|
          expect(instance).not_to receive(:execute)
        end

        expect { perform }
          .not_to raise_error
      end
    end
  end
end