-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrails_cloud_tasks_spec.rb
56 lines (43 loc) · 1.51 KB
/
rails_cloud_tasks_spec.rb
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
describe RailsCloudTasks do
describe '#queue_adapter' do
subject(:queue_adapter) { described_class.queue_adapter }
before do
described_class.instance_variable_set('@queue_adapter', nil)
end
context 'when the adapter is loaded successfuly' do
let(:adapter) { instance_spy(described_class::Adapter) }
before do
allow(described_class::Adapter).to receive(:new).and_return(adapter)
end
it { is_expected.to be_instance_of(adapter.class) }
end
context 'when the adpter could not be loaded' do
let(:error) { StandardError.new }
before do
allow(Rails).to receive(:env).and_return(environment.inquiry)
allow(described_class::Adapter).to receive(:new).and_raise(error)
end
context 'when the environment is not development' do
let(:environment) { 'production' }
it do
expect { queue_adapter }.to raise_error(error)
end
end
context 'when the environment is development' do
let(:logger) { instance_spy(Logger) }
let(:environment) { 'development' }
before { allow(described_class).to receive(:logger).and_return(logger) }
it { is_expected.to eq(:inline) }
it do
queue_adapter
expect(logger).to have_received(:warn)
.with('unable to setup adapter, falling back to :inline')
end
it do
queue_adapter
expect(logger).to have_received(:warn).with(error)
end
end
end
end
end