Commit 68b43f4d authored by Matija Čupić's avatar Matija Čupić

Test usage of custom user agent in GCP Client

parent 04c6d102
...@@ -44,7 +44,7 @@ module GoogleApi ...@@ -44,7 +44,7 @@ module GoogleApi
service = Google::Apis::ContainerV1::ContainerService.new service = Google::Apis::ContainerV1::ContainerService.new
service.authorization = access_token service.authorization = access_token
service.get_zone_cluster(project_id, zone, cluster_id) service.get_zone_cluster(project_id, zone, cluster_id, options: user_agent_header)
end end
def projects_zones_clusters_create(project_id, zone, cluster_name, cluster_size, machine_type:) def projects_zones_clusters_create(project_id, zone, cluster_name, cluster_size, machine_type:)
...@@ -62,14 +62,14 @@ module GoogleApi ...@@ -62,14 +62,14 @@ module GoogleApi
} }
} ) } )
service.create_cluster(project_id, zone, request_body) service.create_cluster(project_id, zone, request_body, options: user_agent_header)
end end
def projects_zones_operations(project_id, zone, operation_id) def projects_zones_operations(project_id, zone, operation_id)
service = Google::Apis::ContainerV1::ContainerService.new service = Google::Apis::ContainerV1::ContainerService.new
service.authorization = access_token service.authorization = access_token
service.get_zone_operation(project_id, zone, operation_id) service.get_zone_operation(project_id, zone, operation_id, options: user_agent_header)
end end
def parse_operation_id(self_link) def parse_operation_id(self_link)
......
...@@ -3,6 +3,7 @@ require 'spec_helper' ...@@ -3,6 +3,7 @@ require 'spec_helper'
describe GoogleApi::CloudPlatform::Client do describe GoogleApi::CloudPlatform::Client do
let(:token) { 'token' } let(:token) { 'token' }
let(:client) { described_class.new(token, nil) } let(:client) { described_class.new(token, nil) }
let(:user_agent_options) { client.instance_eval { user_agent_header } }
describe '.session_key_for_redirect_uri' do describe '.session_key_for_redirect_uri' do
let(:state) { 'random_string' } let(:state) { 'random_string' }
...@@ -55,7 +56,8 @@ describe GoogleApi::CloudPlatform::Client do ...@@ -55,7 +56,8 @@ describe GoogleApi::CloudPlatform::Client do
before do before do
allow_any_instance_of(Google::Apis::ContainerV1::ContainerService) allow_any_instance_of(Google::Apis::ContainerV1::ContainerService)
.to receive(:get_zone_cluster).and_return(gke_cluster) .to receive(:get_zone_cluster).with(any_args, options: user_agent_options)
.and_return(gke_cluster)
end end
it { is_expected.to eq(gke_cluster) } it { is_expected.to eq(gke_cluster) }
...@@ -74,7 +76,8 @@ describe GoogleApi::CloudPlatform::Client do ...@@ -74,7 +76,8 @@ describe GoogleApi::CloudPlatform::Client do
before do before do
allow_any_instance_of(Google::Apis::ContainerV1::ContainerService) allow_any_instance_of(Google::Apis::ContainerV1::ContainerService)
.to receive(:create_cluster).and_return(operation) .to receive(:create_cluster).with(any_args, options: user_agent_options)
.and_return(operation)
end end
it { is_expected.to eq(operation) } it { is_expected.to eq(operation) }
...@@ -102,7 +105,8 @@ describe GoogleApi::CloudPlatform::Client do ...@@ -102,7 +105,8 @@ describe GoogleApi::CloudPlatform::Client do
before do before do
allow_any_instance_of(Google::Apis::ContainerV1::ContainerService) allow_any_instance_of(Google::Apis::ContainerV1::ContainerService)
.to receive(:get_zone_operation).and_return(operation) .to receive(:get_zone_operation).with(any_args, options: user_agent_options)
.and_return(operation)
end end
it { is_expected.to eq(operation) } it { is_expected.to eq(operation) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment