summaryrefslogtreecommitdiff
path: root/spec/workers/web_hooks/destroy_worker_spec.rb
blob: fd26c8591ee6b19a146128bac0cd325961f7826e (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe WebHooks::DestroyWorker do
  let_it_be(:project) { create(:project) }
  let_it_be(:user) { create(:user) }

  before_all do
    project.add_maintainer(user)
  end

  subject { described_class.new }

  describe "#perform" do
    context 'with a Web hook' do
      let!(:hook) { create(:project_hook, project: project) }
      let!(:other_hook) { create(:project_hook, project: project) }
      let!(:log) { create(:web_hook_log, web_hook: hook) }
      let!(:other_log) { create(:web_hook_log, web_hook: other_hook) }

      it "deletes the Web hook and logs", :aggregate_failures do
        expect { subject.perform(user.id, hook.id) }
          .to change { WebHookLog.count }.from(2).to(1)
          .and change { WebHook.count }.from(2).to(1)

        expect(WebHook.find(other_hook.id)).to be_present
        expect(WebHookLog.find(other_log.id)).to be_present
      end

      it "raises and tracks an error if destroy failed" do
        allow_next_instance_of(::WebHooks::DestroyService) do |instance|
          expect(instance).to receive(:sync_destroy).with(anything).and_return({ status: :error, message: "failed" })
        end

        expect(Gitlab::ErrorTracking).to receive(:track_exception)
                                       .with(an_instance_of(::WebHooks::DestroyService::DestroyError), web_hook_id: hook.id)
                                       .and_call_original
        expect { subject.perform(user.id, hook.id) }.to raise_error(::WebHooks::DestroyService::DestroyError)
      end

      context 'with unknown hook' do
        it 'does not raise an error' do
          expect { subject.perform(user.id, non_existing_record_id) }.not_to raise_error

          expect(WebHook.count).to eq(2)
        end
      end

      context 'with unknown user' do
        it 'does not raise an error' do
          expect { subject.perform(non_existing_record_id, hook.id) }.not_to raise_error

          expect(WebHook.count).to eq(2)
        end
      end
    end
  end
end