Commit b229637b authored by Shinya Maeda's avatar Shinya Maeda

fetch_kubernetes_token_service_spec. Fix static analysys.

parent 31c89258
......@@ -22,6 +22,8 @@ module Ci
return Base64.decode64(token_base64) if token_base64
end
end
nil
end
private
......
......@@ -60,6 +60,7 @@ describe Gitlab::UsageData do
deploy_keys
deployments
environments
gcp_clusters
in_review_folder
groups
issues
......
......@@ -122,12 +122,12 @@ describe Gcp::Cluster do
let(:cluster) { create(:gcp_cluster) }
before do
cluster.creating!
cluster.make_creating!
end
context 'when created' do
before do
cluster.created!
cluster.make_created!
end
it { is_expected.to be_truthy }
......
......@@ -2,16 +2,63 @@ require 'spec_helper'
describe Ci::FetchKubernetesTokenService do
describe '#execute' do
context 'when correct params' do
it 'fetch the kubernetes token' do
subject { described_class.new(api_url, ca_pem, username, password).execute }
let(:api_url) { 'http://111.111.111.111' }
let(:ca_pem) { '' }
let(:username) { 'admin' }
let(:password) { 'xxx' }
context 'when params correct' do
let(:token) { 'xxx.token.xxx' }
let(:secrets_json) do
[
{
'metadata': {
name: metadata_name
},
'data': {
'token': Base64.encode64(token)
}
}
]
end
before do
allow_any_instance_of(Kubeclient::Client)
.to receive(:get_secrets).and_return(secrets_json)
end
context 'when default-token exists' do
let(:metadata_name) { 'default-token-123' }
it { is_expected.to eq(token) }
end
end
context 'when invalid params' do
it 'returns nil' do
context 'when default-token does not exist' do
let(:metadata_name) { 'another-token-123' }
it { is_expected.to be_nil }
end
end
context 'when api_url is nil' do
let(:api_url) { nil }
it { expect { subject }.to raise_error("Incomplete settings") }
end
context 'when username is nil' do
let(:username) { nil }
it { expect { subject }.to raise_error("Incomplete settings") }
end
context 'when password is nil' do
let(:password) { nil }
it { expect { subject }.to raise_error("Incomplete settings") }
end
end
end
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