debian-mirror-gitlab/spec/workers/jira_connect/forward_event_worker_spec.rb
2021-10-27 15:23:28 +05:30

49 lines
1.9 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe JiraConnect::ForwardEventWorker do
describe '#perform' do
let!(:jira_connect_installation) { create(:jira_connect_installation, instance_url: self_managed_url, client_key: client_key, shared_secret: shared_secret) }
let(:base_path) { '/-/jira_connect' }
let(:event_path) { '/-/jira_connect/events/uninstalled' }
let(:self_managed_url) { 'http://example.com' }
let(:base_url) { self_managed_url + base_path }
let(:event_url) { self_managed_url + event_path }
let(:client_key) { '123' }
let(:shared_secret) { '123' }
subject(:perform) { described_class.new.perform(jira_connect_installation.id, base_path, event_path) }
it 'forwards the event and deletes the installation' do
stub_request(:post, event_url)
expect(Atlassian::Jwt).to receive(:create_query_string_hash).with(event_url, 'POST', base_url).and_return('some_qsh')
expect(Atlassian::Jwt).to receive(:encode).with({ iss: client_key, qsh: 'some_qsh' }, shared_secret).and_return('auth_token')
expect(JiraConnect::RetryRequestWorker).to receive(:perform_async).with(event_url, 'auth_token')
expect { perform }.to change(JiraConnectInstallation, :count).by(-1)
end
context 'when installation does not exist' do
let(:jira_connect_installation) { instance_double(JiraConnectInstallation, id: -1) }
it 'does nothing' do
expect { perform }.not_to change(JiraConnectInstallation, :count)
end
end
context 'when installation does not have an instance_url' do
let!(:jira_connect_installation) { create(:jira_connect_installation) }
it 'forwards the event including the auth header' do
expect { perform }.to change(JiraConnectInstallation, :count).by(-1)
expect(JiraConnect::RetryRequestWorker).not_to receive(:perform_async)
end
end
end
end