2017-05-12 06:25:15 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe DomainBlockWorker do
|
|
|
|
subject { described_class.new }
|
|
|
|
|
|
|
|
describe 'perform' do
|
|
|
|
let(:domain_block) { Fabricate(:domain_block) }
|
|
|
|
|
2020-06-09 18:32:00 +10:00
|
|
|
it 'calls domain block service for relevant domain block' do
|
2017-05-12 06:25:15 +10:00
|
|
|
service = double(call: nil)
|
|
|
|
allow(BlockDomainService).to receive(:new).and_return(service)
|
|
|
|
result = subject.perform(domain_block.id)
|
|
|
|
|
|
|
|
expect(result).to be_nil
|
2019-08-08 04:20:23 +10:00
|
|
|
expect(service).to have_received(:call).with(domain_block, false)
|
2017-05-12 06:25:15 +10:00
|
|
|
end
|
|
|
|
|
2020-06-09 18:32:00 +10:00
|
|
|
it 'returns true for non-existent domain block' do
|
2017-05-12 06:25:15 +10:00
|
|
|
result = subject.perform('aaa')
|
|
|
|
|
|
|
|
expect(result).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|