gitlab-org--gitlab-foss/spec/workers/check_gcp_project_billing_w...

117 lines
3.5 KiB
Ruby
Raw Normal View History

2017-12-16 01:39:55 +00:00
require 'spec_helper'
describe CheckGcpProjectBillingWorker do
describe '.perform' do
let(:token) { 'bogustoken' }
2018-01-07 14:07:37 +00:00
subject { described_class.new.perform('token_key') }
2017-12-16 01:39:55 +00:00
before do
2018-02-08 15:57:14 +00:00
allow(described_class).to receive(:get_billing_state)
allow_any_instance_of(described_class).to receive(:update_billing_change_counter)
end
context 'when there is a token in redis' do
before do
2018-01-11 00:38:47 +00:00
allow(described_class).to receive(:get_session_token).and_return(token)
end
2017-12-16 01:39:55 +00:00
context 'when there is no lease' do
before do
allow_any_instance_of(described_class).to receive(:try_obtain_lease_for).and_return('randomuuid')
end
it 'calls the service' do
expect(CheckGcpProjectBillingService).to receive_message_chain(:new, :execute).and_return([double])
subject
end
it 'stores billing status in redis' do
expect(CheckGcpProjectBillingService).to receive_message_chain(:new, :execute).and_return([double])
2018-02-08 15:57:14 +00:00
expect(described_class).to receive(:set_billing_state).with(token, true)
subject
end
end
context 'when there is a lease' do
before do
allow_any_instance_of(described_class).to receive(:try_obtain_lease_for).and_return(false)
end
it 'does not call the service' do
expect(CheckGcpProjectBillingService).not_to receive(:new)
subject
end
end
2017-12-16 01:39:55 +00:00
end
context 'when there is no token in redis' do
before do
2018-02-08 15:57:14 +00:00
allow(described_class).to receive(:get_session_token).and_return(nil)
end
it 'does not call the service' do
expect(CheckGcpProjectBillingService).not_to receive(:new)
2017-12-16 01:39:55 +00:00
subject
end
2017-12-16 01:39:55 +00:00
end
end
describe 'billing change counter' do
subject { described_class.new.perform('token_key') }
before do
allow(described_class).to receive(:get_session_token).and_return('bogustoken')
allow_any_instance_of(described_class).to receive(:try_obtain_lease_for).and_return('randomuuid')
2018-02-08 15:57:14 +00:00
allow(described_class).to receive(:set_billing_state)
end
context 'when previous state was false' do
before do
2018-02-08 15:57:14 +00:00
expect(described_class).to receive(:get_billing_state).and_return(false)
end
context 'when the current state is false' do
before do
expect(CheckGcpProjectBillingService).to receive_message_chain(:new, :execute).and_return([])
end
it 'increments the billing change counter' do
expect_any_instance_of(described_class).to receive_message_chain(:billing_changed_counter, :increment)
subject
end
end
context 'when the current state is true' do
before do
expect(CheckGcpProjectBillingService).to receive_message_chain(:new, :execute).and_return([double])
end
it 'increments the billing change counter' do
expect_any_instance_of(described_class).to receive_message_chain(:billing_changed_counter, :increment)
subject
end
end
end
context 'when previous state was true' do
before do
2018-02-08 15:57:14 +00:00
expect(described_class).to receive(:get_billing_state).and_return(true)
expect(CheckGcpProjectBillingService).to receive_message_chain(:new, :execute).and_return([double])
end
it 'increment the billing change counter' do
expect_any_instance_of(described_class).to receive_message_chain(:billing_changed_counter, :increment)
subject
end
end
end
2017-12-16 01:39:55 +00:00
end