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

log_destroy_service_spec.rb « web_hooks « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7634726e5a4e97eb994a5419ca40e7f647bf86ab (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe WebHooks::LogDestroyService do
  subject(:service) { described_class.new(hook.id) }

  describe '#execute' do
    shared_examples 'deletes web hook logs for hook' do
      before do
        create_list(:web_hook_log, 3, web_hook: hook)
        hook.destroy! # The LogDestroyService is expected to be called _after_ hook destruction
      end

      it 'deletes the logs' do
        expect { service.execute }
          .to change(WebHookLog, :count).from(3).to(0)
      end

      context 'when the data-set exceeds the batch size' do
        before do
          stub_const("#{described_class}::BATCH_SIZE", 2)
        end

        it 'deletes the logs' do
          expect { service.execute }
            .to change(WebHookLog, :count).from(3).to(0)
        end
      end

      context 'when it encounters an error' do
        before do
          allow(WebHookLog).to receive(:delete_batch_for).and_raise(StandardError.new('bang'))
        end

        it 'reports the error' do
          expect(service.execute)
            .to be_error
            .and have_attributes(message: 'bang')
        end
      end
    end

    context 'with system hook' do
      let!(:hook) { create(:system_hook, url: "http://example.com") }

      it_behaves_like 'deletes web hook logs for hook'
    end

    context 'with project hook' do
      let!(:hook) { create(:project_hook) }

      it_behaves_like 'deletes web hook logs for hook'
    end
  end
end