Add specs
This commit is contained in:
parent
99a70f8a0a
commit
54e974df43
|
@ -21,6 +21,305 @@ require 'google/api_client/client_secrets'
|
||||||
FIXTURES_PATH = File.expand_path('../../../fixtures', __FILE__)
|
FIXTURES_PATH = File.expand_path('../../../fixtures', __FILE__)
|
||||||
|
|
||||||
RSpec.describe Google::APIClient::ClientSecrets do
|
RSpec.describe Google::APIClient::ClientSecrets do
|
||||||
|
describe '::new' do
|
||||||
|
let(:filename) { File.join(FIXTURES_PATH, 'files', 'client_secrets.json') }
|
||||||
|
let(:data) { File.open(filename, 'r') { |file| MultiJson.load(file.read) } }
|
||||||
|
|
||||||
|
context 'without options' do
|
||||||
|
subject { Google::APIClient::ClientSecrets.new(data) }
|
||||||
|
|
||||||
|
describe 'existence of instance variables' do
|
||||||
|
it '@access_token' do
|
||||||
|
expect(subject).to respond_to(:access_token)
|
||||||
|
end
|
||||||
|
it '@authorization_uri' do
|
||||||
|
expect(subject).to respond_to(:authorization_uri)
|
||||||
|
end
|
||||||
|
it '@client_id' do
|
||||||
|
expect(subject).to respond_to(:client_id)
|
||||||
|
end
|
||||||
|
it '@client_secret' do
|
||||||
|
expect(subject).to respond_to(:client_secret)
|
||||||
|
end
|
||||||
|
it '@expires_at' do
|
||||||
|
expect(subject).to respond_to(:expires_at)
|
||||||
|
end
|
||||||
|
it '@expires_in' do
|
||||||
|
expect(subject).to respond_to(:expires_in)
|
||||||
|
end
|
||||||
|
it '@id_token' do
|
||||||
|
expect(subject).to respond_to(:id_token)
|
||||||
|
end
|
||||||
|
it '@issued_at' do
|
||||||
|
expect(subject).to respond_to(:issued_at)
|
||||||
|
end
|
||||||
|
it '@javascript_origins' do
|
||||||
|
expect(subject).to respond_to(:javascript_origins)
|
||||||
|
end
|
||||||
|
it '@redirect_uris' do
|
||||||
|
expect(subject).to respond_to(:redirect_uris)
|
||||||
|
end
|
||||||
|
it '@refresh_token' do
|
||||||
|
expect(subject).to respond_to(:refresh_token)
|
||||||
|
end
|
||||||
|
it '@token_credential_uri' do
|
||||||
|
expect(subject).to respond_to(:token_credential_uri)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe 'value of instance variables' do
|
||||||
|
it 'should set @access_token' do
|
||||||
|
expect(subject.access_token).to be_nil
|
||||||
|
end
|
||||||
|
it 'should set @authorization_uri' do
|
||||||
|
expect(subject.authorization_uri).to eq 'https://accounts.google.com/o/oauth2/auth'
|
||||||
|
end
|
||||||
|
it 'should set @client_id' do
|
||||||
|
expect(subject.client_id).to eq '898243283568.apps.googleusercontent.com'
|
||||||
|
end
|
||||||
|
it 'should set @client_secret' do
|
||||||
|
expect(subject.client_secret).to eq 'i8YaXdGgiQ4_KrTVNGsB7QP1'
|
||||||
|
end
|
||||||
|
it 'should set @expires_at' do
|
||||||
|
expect(subject.expires_at).to be_nil
|
||||||
|
end
|
||||||
|
it 'should set @expires_in' do
|
||||||
|
expect(subject.expires_in).to be_nil
|
||||||
|
end
|
||||||
|
it 'should set @flow' do
|
||||||
|
expect(subject.flow).to eq 'installed'
|
||||||
|
end
|
||||||
|
it 'should set @id_token' do
|
||||||
|
expect(subject.id_token).to be_nil
|
||||||
|
end
|
||||||
|
it 'should set @issued_at' do
|
||||||
|
expect(subject.issued_at).to be_nil
|
||||||
|
end
|
||||||
|
it 'should set @javascript_origins' do
|
||||||
|
expect(subject.javascript_origins).to eq []
|
||||||
|
end
|
||||||
|
it 'should set @redirect_uris' do
|
||||||
|
expect(subject.redirect_uris).to eq []
|
||||||
|
end
|
||||||
|
it 'should set @refresh_token' do
|
||||||
|
expect(subject.refresh_token).to be_nil
|
||||||
|
end
|
||||||
|
it 'should set @token_credential_uri' do
|
||||||
|
expect(subject.token_credential_uri).to eq 'https://accounts.google.com/o/oauth2/token'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'with options' do
|
||||||
|
context 'option keys are string' do
|
||||||
|
let(:string_options) do
|
||||||
|
{ 'samples' =>
|
||||||
|
{
|
||||||
|
'access_token' => 'sample_access_token',
|
||||||
|
'auth_uri' => 'sample_auth_uri',
|
||||||
|
'authorization_uri' => 'sample_authorization_uri',
|
||||||
|
'client_id' => 'sample_client_id',
|
||||||
|
'client_secret' => 'sample_client_secret',
|
||||||
|
'expires_at' => 'sample_expires_at',
|
||||||
|
'expires_in' => 'sample_expires_in',
|
||||||
|
'id_token' => 'sample_id_token',
|
||||||
|
'issued_at' => 'sample_issued_at',
|
||||||
|
'javascript_origin' => 'sample_javascript_origin',
|
||||||
|
'javascript_origins' => 'sample_javascript_origins',
|
||||||
|
'redirect_uris' => 'sample_redirect_uris',
|
||||||
|
'refresh_token' => 'sample_refresh_token',
|
||||||
|
'token_credential_uri' => 'sample_token_credential_uri',
|
||||||
|
'token_uri' => 'sample_token_uri' } }
|
||||||
|
end
|
||||||
|
subject { Google::APIClient::ClientSecrets.new(string_options) }
|
||||||
|
|
||||||
|
describe 'existence of instance variables' do
|
||||||
|
it '@access_token' do
|
||||||
|
expect(subject).to respond_to(:access_token)
|
||||||
|
end
|
||||||
|
it '@authorization_uri' do
|
||||||
|
expect(subject).to respond_to(:authorization_uri)
|
||||||
|
end
|
||||||
|
it '@client_id' do
|
||||||
|
expect(subject).to respond_to(:client_id)
|
||||||
|
end
|
||||||
|
it '@client_secret' do
|
||||||
|
expect(subject).to respond_to(:client_secret)
|
||||||
|
end
|
||||||
|
it '@expires_at' do
|
||||||
|
expect(subject).to respond_to(:expires_at)
|
||||||
|
end
|
||||||
|
it '@expires_in' do
|
||||||
|
expect(subject).to respond_to(:expires_in)
|
||||||
|
end
|
||||||
|
it '@id_token' do
|
||||||
|
expect(subject).to respond_to(:id_token)
|
||||||
|
end
|
||||||
|
it '@issued_at' do
|
||||||
|
expect(subject).to respond_to(:issued_at)
|
||||||
|
end
|
||||||
|
it '@javascript_origins' do
|
||||||
|
expect(subject).to respond_to(:javascript_origins)
|
||||||
|
end
|
||||||
|
it '@redirect_uris' do
|
||||||
|
expect(subject).to respond_to(:redirect_uris)
|
||||||
|
end
|
||||||
|
it '@refresh_token' do
|
||||||
|
expect(subject).to respond_to(:refresh_token)
|
||||||
|
end
|
||||||
|
it '@token_credential_uri' do
|
||||||
|
expect(subject).to respond_to(:token_credential_uri)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe 'value of instance variables' do
|
||||||
|
it 'should set @access_token' do
|
||||||
|
expect(subject.access_token).to eq 'sample_access_token'
|
||||||
|
end
|
||||||
|
it 'should set @authorization_uri' do
|
||||||
|
expect(subject.authorization_uri).to eq 'sample_auth_uri'
|
||||||
|
end
|
||||||
|
it 'should set @client_id' do
|
||||||
|
expect(subject.client_id).to eq 'sample_client_id'
|
||||||
|
end
|
||||||
|
it 'should set @client_secret' do
|
||||||
|
expect(subject.client_secret).to eq 'sample_client_secret'
|
||||||
|
end
|
||||||
|
it 'should set @expires_at' do
|
||||||
|
expect(subject.expires_at).to eq 'sample_expires_at'
|
||||||
|
end
|
||||||
|
it 'should set @expires_in' do
|
||||||
|
expect(subject.expires_in).to eq 'sample_expires_in'
|
||||||
|
end
|
||||||
|
it 'should set @flow' do
|
||||||
|
expect(subject.flow).to eq 'samples'
|
||||||
|
end
|
||||||
|
it 'should set @id_token' do
|
||||||
|
expect(subject.id_token).to eq 'sample_id_token'
|
||||||
|
end
|
||||||
|
it 'should set @issued_at' do
|
||||||
|
expect(subject.issued_at).to eq 'sample_issued_at'
|
||||||
|
end
|
||||||
|
it 'should set @javascript_origins' do
|
||||||
|
expect(subject.javascript_origins).to eq 'sample_javascript_origins'
|
||||||
|
end
|
||||||
|
it 'should set @redirect_uris' do
|
||||||
|
expect(subject.redirect_uris).to eq 'sample_redirect_uris'
|
||||||
|
end
|
||||||
|
it 'should set @refresh_token' do
|
||||||
|
expect(subject.refresh_token).to eq 'sample_refresh_token'
|
||||||
|
end
|
||||||
|
it 'should set @token_credential_uri' do
|
||||||
|
expect(subject.token_credential_uri).to eq 'sample_token_uri'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'option keys are symbol' do
|
||||||
|
let(:symbol_options) do
|
||||||
|
{ 'samples' =>
|
||||||
|
{
|
||||||
|
access_token: 'sample_access_token',
|
||||||
|
auth_uri: 'sample_auth_uri',
|
||||||
|
authorization_uri: 'sample_authorization_uri',
|
||||||
|
client_id: 'sample_client_id',
|
||||||
|
client_secret: 'sample_client_secret',
|
||||||
|
expires_at: 'sample_expires_at',
|
||||||
|
expires_in: 'sample_expires_in',
|
||||||
|
id_token: 'sample_id_token',
|
||||||
|
issued_at: 'sample_issued_at',
|
||||||
|
javascript_origin: 'sample_javascript_origin',
|
||||||
|
javascript_origins: 'sample_javascript_origins',
|
||||||
|
redirect_uris: 'sample_redirect_uris',
|
||||||
|
refresh_token: 'sample_refresh_token',
|
||||||
|
token_credential_uri: 'sample_token_credential_uri',
|
||||||
|
token_uri: 'sample_token_uri' } }
|
||||||
|
end
|
||||||
|
subject { Google::APIClient::ClientSecrets.new(symbol_options) }
|
||||||
|
|
||||||
|
describe 'existence of instance variables' do
|
||||||
|
it '@access_token' do
|
||||||
|
expect(subject).to respond_to(:access_token)
|
||||||
|
end
|
||||||
|
it '@authorization_uri' do
|
||||||
|
expect(subject).to respond_to(:authorization_uri)
|
||||||
|
end
|
||||||
|
it '@client_id' do
|
||||||
|
expect(subject).to respond_to(:client_id)
|
||||||
|
end
|
||||||
|
it '@client_secret' do
|
||||||
|
expect(subject).to respond_to(:client_secret)
|
||||||
|
end
|
||||||
|
it '@expires_at' do
|
||||||
|
expect(subject).to respond_to(:expires_at)
|
||||||
|
end
|
||||||
|
it '@expires_in' do
|
||||||
|
expect(subject).to respond_to(:expires_in)
|
||||||
|
end
|
||||||
|
it '@id_token' do
|
||||||
|
expect(subject).to respond_to(:id_token)
|
||||||
|
end
|
||||||
|
it '@issued_at' do
|
||||||
|
expect(subject).to respond_to(:issued_at)
|
||||||
|
end
|
||||||
|
it '@javascript_origins' do
|
||||||
|
expect(subject).to respond_to(:javascript_origins)
|
||||||
|
end
|
||||||
|
it '@redirect_uris' do
|
||||||
|
expect(subject).to respond_to(:redirect_uris)
|
||||||
|
end
|
||||||
|
it '@refresh_token' do
|
||||||
|
expect(subject).to respond_to(:refresh_token)
|
||||||
|
end
|
||||||
|
it '@token_credential_uri' do
|
||||||
|
expect(subject).to respond_to(:token_credential_uri)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe 'value of instance variables' do
|
||||||
|
it 'should set @access_token' do
|
||||||
|
expect(subject.access_token).to eq 'sample_access_token'
|
||||||
|
end
|
||||||
|
it 'should set @authorization_uri' do
|
||||||
|
expect(subject.authorization_uri).to eq 'sample_auth_uri'
|
||||||
|
end
|
||||||
|
it 'should set @client_id' do
|
||||||
|
expect(subject.client_id).to eq 'sample_client_id'
|
||||||
|
end
|
||||||
|
it 'should set @client_secret' do
|
||||||
|
expect(subject.client_secret).to eq 'sample_client_secret'
|
||||||
|
end
|
||||||
|
it 'should set @expires_at' do
|
||||||
|
expect(subject.expires_at).to eq 'sample_expires_at'
|
||||||
|
end
|
||||||
|
it 'should set @expires_in' do
|
||||||
|
expect(subject.expires_in).to eq 'sample_expires_in'
|
||||||
|
end
|
||||||
|
it 'should set @flow' do
|
||||||
|
expect(subject.flow).to eq 'samples'
|
||||||
|
end
|
||||||
|
it 'should set @id_token' do
|
||||||
|
expect(subject.id_token).to eq 'sample_id_token'
|
||||||
|
end
|
||||||
|
it 'should set @issued_at' do
|
||||||
|
expect(subject.issued_at).to eq 'sample_issued_at'
|
||||||
|
end
|
||||||
|
it 'should set @javascript_origins' do
|
||||||
|
expect(subject.javascript_origins).to eq 'sample_javascript_origins'
|
||||||
|
end
|
||||||
|
it 'should set @redirect_uris' do
|
||||||
|
expect(subject.redirect_uris).to eq 'sample_redirect_uris'
|
||||||
|
end
|
||||||
|
it 'should set @refresh_token' do
|
||||||
|
expect(subject.refresh_token).to eq 'sample_refresh_token'
|
||||||
|
end
|
||||||
|
it 'should set @token_credential_uri' do
|
||||||
|
expect(subject.token_credential_uri).to eq 'sample_token_uri'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
context 'with JSON file' do
|
context 'with JSON file' do
|
||||||
let(:file) { File.join(FIXTURES_PATH, 'files', 'client_secrets.json') }
|
let(:file) { File.join(FIXTURES_PATH, 'files', 'client_secrets.json') }
|
||||||
|
|
Loading…
Reference in New Issue