summaryrefslogtreecommitdiff
path: root/spec/workers/projects/post_creation_worker_spec.rb
blob: 06acf601666ec124ea39b0b66fafb8a8f2b93632 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::PostCreationWorker do
  let_it_be(:user) { create :user }

  let(:worker) { described_class.new }
  let(:project) { create(:project) }

  subject { described_class.new.perform(project.id) }

  it_behaves_like 'an idempotent worker' do
    let(:job_args) { [project.id] }

    describe 'Prometheus integration' do
      context 'project is nil' do
        let(:job_args) { [nil] }

        it 'does not create prometheus integration' do
          expect { subject }.not_to change { Integration.count }
        end
      end

      context 'when project has access to shared integration' do
        context 'Prometheus application is shared via group cluster' do
          let(:project) { create(:project, group: group) }
          let(:cluster) { create(:cluster, :group, groups: [group]) }
          let(:group) do
            create(:group).tap do |group|
              group.add_owner(user)
            end
          end

          before do
            create(:clusters_integrations_prometheus, cluster: cluster)
          end

          it 'creates an Integrations::Prometheus record', :aggregate_failures do
            subject

            integration = project.prometheus_integration
            expect(integration.active).to be true
            expect(integration.manual_configuration?).to be false
            expect(integration.persisted?).to be true
          end
        end

        context 'Prometheus application is shared via instance cluster' do
          let(:cluster) { create(:cluster, :instance) }

          before do
            create(:clusters_integrations_prometheus, cluster: cluster)
          end

          it 'creates an Integrations::Prometheus record', :aggregate_failures do
            subject

            integration = project.prometheus_integration
            expect(integration.active).to be true
            expect(integration.manual_configuration?).to be false
            expect(integration.persisted?).to be true
          end

          it 'cleans invalid record and logs warning', :aggregate_failures do
            invalid_integration_record = build(:prometheus_integration, properties: { api_url: nil, manual_configuration: true }.to_json)
            allow(::Integrations::Prometheus).to receive(:new).and_return(invalid_integration_record)

            expect(Gitlab::ErrorTracking).to receive(:track_exception).with(an_instance_of(ActiveRecord::RecordInvalid), include(extra: { project_id: a_kind_of(Integer) })).twice
            subject

            expect(project.prometheus_integration).to be_nil
          end
        end

        context 'shared Prometheus application is not available' do
          it 'does not persist an Integrations::Prometheus record' do
            subject

            expect(project.prometheus_integration).to be_nil
          end
        end
      end
    end
  end
end