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

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

RSpec.describe ProjectServiceWorker, '#perform' do
  let(:worker) { described_class.new }
  let(:integration) { Integrations::Jira.new }

  before do
    allow(Integration).to receive(:find).and_return(integration)
  end

  it 'executes integration with given data' do
    data = { test: 'test' }
    expect(integration).to receive(:execute).with(data)

    worker.perform(1, data)
  end

  it 'logs error messages' do
    error = StandardError.new('invalid URL')
    allow(integration).to receive(:execute).and_raise(error)

    expect(Gitlab::ErrorTracking).to receive(:log_exception).with(error, integration_class: 'Integrations::Jira')

    worker.perform(1, {})
  end
end