1 # Copyright 2012 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 require 'google/api_client'
18 require 'google/api_client/version'
20 describe Google::APIClient::Result do
21 CLIENT ||= Google::APIClient.new
23 describe 'with the plus API' do
25 CLIENT.authorization = nil
26 @plus = CLIENT.discovered_api('plus', 'v1')
27 @reference = Google::APIClient::Reference.new({
28 :api_method => @plus.activities.list,
31 'collection' => 'public',
35 @request = @reference.to_request
38 @response = stub("response")
39 @response.stub(:status).and_return(200)
40 @response.stub(:headers).and_return({
42 'x-google-apiary-auth-scopes' =>
43 'https://www.googleapis.com/auth/plus.me',
44 'content-type' => 'application/json; charset=UTF-8',
45 'date' => 'Mon, 23 Apr 2012 00:00:00 GMT',
46 'cache-control' => 'private, max-age=0, must-revalidate, no-transform',
48 'connection' => 'close'
52 describe 'with a next page token' do
54 @response.stub(:body).and_return(
57 "kind": "plus#activityFeed",
59 "nextPageToken": "NEXT+PAGE+TOKEN",
60 "selfLink": "https://www.googleapis.com/plus/v1/people/foo/activities/public?",
61 "nextLink": "https://www.googleapis.com/plus/v1/people/foo/activities/public?maxResults=20&pageToken=NEXT%2BPAGE%2BTOKEN",
62 "title": "Plus Public Activity Feed for ",
63 "updated": "2012-04-23T00:00:00.000Z",
64 "id": "tag:google.com,2010:/plus/people/foo/activities/public",
69 @result = Google::APIClient::Result.new(@reference, @request, @response)
72 it 'should indicate a successful response' do
73 @result.error?.should be_false
76 it 'should return the correct next page token' do
77 @result.next_page_token.should == 'NEXT+PAGE+TOKEN'
80 it 'should escape the next page token when calling next_page' do
81 reference = @result.next_page
82 Hash[reference.parameters].should include('pageToken')
83 Hash[reference.parameters]['pageToken'].should == 'NEXT+PAGE+TOKEN'
84 url = reference.to_request.to_env(Faraday.default_connection)[:url]
85 url.to_s.should include('pageToken=NEXT%2BPAGE%2BTOKEN')
88 it 'should return content type correctly' do
89 @result.media_type.should == 'application/json'
92 it 'should return the result data correctly' do
93 @result.data?.should be_true
94 @result.data.class.to_s.should ==
95 'Google::APIClient::Schema::Plus::V1::ActivityFeed'
96 @result.data.kind.should == 'plus#activityFeed'
97 @result.data.etag.should == 'FOO'
98 @result.data.nextPageToken.should == 'NEXT+PAGE+TOKEN'
99 @result.data.selfLink.should ==
100 'https://www.googleapis.com/plus/v1/people/foo/activities/public?'
101 @result.data.nextLink.should ==
102 'https://www.googleapis.com/plus/v1/people/foo/activities/public?' +
103 'maxResults=20&pageToken=NEXT%2BPAGE%2BTOKEN'
104 @result.data.title.should == 'Plus Public Activity Feed for '
105 @result.data.id.should ==
106 'tag:google.com,2010:/plus/people/foo/activities/public'
107 @result.data.items.should be_empty
111 describe 'without a next page token' do
113 @response.stub(:body).and_return(
116 "kind": "plus#activityFeed",
118 "selfLink": "https://www.googleapis.com/plus/v1/people/foo/activities/public?",
119 "title": "Plus Public Activity Feed for ",
120 "updated": "2012-04-23T00:00:00.000Z",
121 "id": "tag:google.com,2010:/plus/people/foo/activities/public",
126 @result = Google::APIClient::Result.new(@reference, @request, @response)
129 it 'should not return a next page token' do
130 @result.next_page_token.should == nil
133 it 'should return content type correctly' do
134 @result.media_type.should == 'application/json'
137 it 'should return the result data correctly' do
138 @result.data?.should be_true
139 @result.data.class.to_s.should ==
140 'Google::APIClient::Schema::Plus::V1::ActivityFeed'
141 @result.data.kind.should == 'plus#activityFeed'
142 @result.data.etag.should == 'FOO'
143 @result.data.selfLink.should ==
144 'https://www.googleapis.com/plus/v1/people/foo/activities/public?'
145 @result.data.title.should == 'Plus Public Activity Feed for '
146 @result.data.id.should ==
147 'tag:google.com,2010:/plus/people/foo/activities/public'
148 @result.data.items.should be_empty
152 describe 'with JSON error response' do
154 @response.stub(:body).and_return(
161 "reason": "parseError",
162 "message": "Parse Error"
166 "message": "Parse Error"
171 @response.stub(:status).and_return(400)
172 @result = Google::APIClient::Result.new(@reference, @request, @response)
175 it 'should return error status correctly' do
176 @result.error?.should be_true
179 it 'should return the correct error message' do
180 @result.error_message.should == 'Parse Error'