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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Import::SourceUsers::AcceptReassignmentService, feature_category: :importers do
let(:import_source_user) { create(:import_source_user, :awaiting_approval) }
let(:reassignment_token) { import_source_user.reassignment_token }
let(:current_user) { import_source_user.reassign_to_user }
let(:service) do
described_class.new(import_source_user, current_user: current_user, reassignment_token: reassignment_token)
end
describe '#execute' do
it 'returns success' do
expect(service.execute).to be_success
end
it 'sets the source user to accepted' do
service.execute
expect(import_source_user.reload).to be_reassignment_in_progress
end
it 'enqueues the job to reassign contributions' do
expect(Import::ReassignPlaceholderUserRecordsWorker).to receive(:perform_async).with(import_source_user.id)
service.execute
end
shared_examples 'current user does not have permission to accept reassignment' do
it 'returns error no permissions' do
result = service.execute
expect(result).to be_error
expect(result.message).to eq('You have insufficient permissions to update the import source user')
end
it 'does not enqueue the job to reassign contributions' do
expect(Import::ReassignPlaceholderUserRecordsWorker).not_to receive(:perform_async)
service.execute
end
end
context 'when the current user is not the user to reassign contributions to' do
let(:current_user) { create(:user) }
it_behaves_like 'current user does not have permission to accept reassignment'
end
context 'when no current user is provided' do
let(:current_user) { nil }
it_behaves_like 'current user does not have permission to accept reassignment'
end
context 'when passing the wrong reassignment_token' do
let(:reassignment_token) { '1234567890abcdef' }
it_behaves_like 'current user does not have permission to accept reassignment'
end
context 'when not passing a reassignment_token' do
let(:reassignment_token) { nil }
it_behaves_like 'current user does not have permission to accept reassignment'
end
context 'when the source user is not awaiting approval' do
let(:import_source_user) { create(:import_source_user, :reassignment_in_progress) }
it 'returns transition error' do
expect(Import::ReassignPlaceholderUserRecordsWorker).not_to receive(:perform_async)
result = service.execute
expect(result).to be_error
expect(result.message).to include('Status cannot transition via "accept"')
end
end
end
end
|