2017-05-11 13:25:15 -07: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 01:32:00 -07:00
|
|
|
it 'calls domain block service for relevant domain block' do
|
2023-06-22 05:55:22 -07:00
|
|
|
service = instance_double(BlockDomainService, call: nil)
|
2017-05-11 13:25:15 -07:00
|
|
|
allow(BlockDomainService).to receive(:new).and_return(service)
|
|
|
|
result = subject.perform(domain_block.id)
|
|
|
|
|
|
|
|
expect(result).to be_nil
|
2019-08-07 11:20:23 -07:00
|
|
|
expect(service).to have_received(:call).with(domain_block, false)
|
2017-05-11 13:25:15 -07:00
|
|
|
end
|
|
|
|
|
2020-06-09 01:32:00 -07:00
|
|
|
it 'returns true for non-existent domain block' do
|
2017-05-11 13:25:15 -07:00
|
|
|
result = subject.perform('aaa')
|
|
|
|
|
2023-02-19 21:14:50 -08:00
|
|
|
expect(result).to be(true)
|
2017-05-11 13:25:15 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|