2019-07-31 22:56:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Clusters::Gcp::FetchOperationService do
|
2018-03-17 18:26:18 +05:30
|
|
|
include GoogleApi::CloudPlatformHelpers
|
|
|
|
|
|
|
|
describe '#execute' do
|
|
|
|
let(:provider) { create(:cluster_provider_gcp, :creating) }
|
|
|
|
let(:gcp_project_id) { provider.gcp_project_id }
|
|
|
|
let(:zone) { provider.zone }
|
|
|
|
let(:operation_id) { provider.operation_id }
|
|
|
|
|
|
|
|
shared_examples 'success' do
|
|
|
|
it 'yields' do
|
|
|
|
expect { |b| described_class.new.execute(provider, &b) }
|
|
|
|
.to yield_with_args
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'error' do
|
|
|
|
it 'sets an error to provider object' do
|
|
|
|
expect { |b| described_class.new.execute(provider, &b) }
|
|
|
|
.not_to yield_with_args
|
|
|
|
expect(provider.reload).to be_errored
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
context 'when succeeded to fetch operation' do
|
2018-03-17 18:26:18 +05:30
|
|
|
before do
|
|
|
|
stub_cloud_platform_get_zone_operation(gcp_project_id, zone, operation_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'success'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when Internal Server Error happened' do
|
|
|
|
before do
|
|
|
|
stub_cloud_platform_get_zone_operation_error(gcp_project_id, zone, operation_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'error'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|