1 # Copyright 2010 Google Inc.
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
17 gem 'faraday', '~> 0.7.0'
19 require 'faraday/utils'
21 gem 'signet', '~> 0.3.0'
22 require 'signet/oauth_1/client'
24 require 'google/api_client'
25 require 'google/api_client/version'
27 shared_examples_for 'configurable user agent' do
28 it 'should allow the user agent to be modified' do
29 @client.user_agent = 'Custom User Agent/1.2.3'
30 @client.user_agent.should == 'Custom User Agent/1.2.3'
33 it 'should allow the user agent to be set to nil' do
34 @client.user_agent = nil
35 @client.user_agent.should == nil
38 it 'should not allow the user agent to be used with bogus values' do
40 @client.user_agent = 42
42 ['GET', 'http://www.google.com/', [], []]
44 end).should raise_error(TypeError)
47 it 'should transmit a User-Agent header when sending requests' do
48 @client.user_agent = 'Custom User Agent/1.2.3'
49 request = Faraday::Request.new(:get) do |req|
50 req.url('http://www.google.com/')
52 stubs = Faraday::Adapter::Test::Stubs.new do |stub|
53 stub.get('/') do |env|
54 headers = env[:request_headers]
55 headers.should have_key('User-Agent')
56 headers['User-Agent'].should == @client.user_agent
60 connection = Faraday.new(:url => 'https://www.google.com') do |builder|
61 builder.adapter(:test, stubs)
63 @client.transmit(:request => request, :connection => connection)
64 stubs.verify_stubbed_calls
68 describe Google::APIClient do
70 @client = Google::APIClient.new
73 it 'should make its version number available' do
74 Google::APIClient::VERSION::STRING.should be_instance_of(String)
77 it 'should default to OAuth 2' do
78 Signet::OAuth2::Client.should === @client.authorization
81 it_should_behave_like 'configurable user agent'
83 describe 'configured for OAuth 1' do
85 @client.authorization = :oauth_1
88 it 'should use the default OAuth1 client configuration' do
89 @client.authorization.temporary_credential_uri.to_s.should ==
90 'https://www.google.com/accounts/OAuthGetRequestToken'
91 @client.authorization.authorization_uri.to_s.should include(
92 'https://www.google.com/accounts/OAuthAuthorizeToken'
94 @client.authorization.token_credential_uri.to_s.should ==
95 'https://www.google.com/accounts/OAuthGetAccessToken'
96 @client.authorization.client_credential_key.should == 'anonymous'
97 @client.authorization.client_credential_secret.should == 'anonymous'
100 it_should_behave_like 'configurable user agent'
103 describe 'configured for OAuth 2' do
105 @client.authorization = :oauth_2
109 it_should_behave_like 'configurable user agent'