summaryrefslogtreecommitdiff
path: root/spec/workers/web_hook_worker_spec.rb
blob: 548cf4c717aa94db6bfee8ccc989bce637d8ec55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
require 'spec_helper'

RSpec.describe WebHookWorker do
  include AfterNextHelpers

  let_it_be(:project_hook) { create(:project_hook) }
  let_it_be(:data) { { foo: 'bar' } }
  let_it_be(:hook_name) { 'push_hooks' }

  describe '#perform' do
    it 'delegates to WebHookService' do
      expect_next(WebHookService, project_hook, data.with_indifferent_access, hook_name, anything).to receive(:execute)

      subject.perform(project_hook.id, data, hook_name)
    end

    it_behaves_like 'worker with data consistency',
                  described_class,
                  feature_flag: :load_balancing_for_web_hook_worker,
                  data_consistency: :delayed
  end
end