FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
google-api-python-client/tests/test_json_model.py at master · catking0817/google-api-python-client · GitHub
catking0817
/
google-api-python-client
Public
forked from
googleapis/google-api-python-client
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
google-api-python-client
/
tests
/
test_json_model.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
279 lines (225 loc) · 8.72 KB
Breadcrumbs
google-api-python-client
/
tests
/
test_json_model.py
Copy path
File metadata and controls
279 lines (225 loc) · 8.72 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
#!/usr/bin/env python
#
# Copyright 2014 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""JSON Model tests
Unit tests for the JSON model.
"""
from
__future__
import
absolute_import
import
six
__author__
=
'jcgregorio@google.com (Joe Gregorio)'
import
copy
import
json
import
os
import
unittest2
as
unittest
import
httplib2
import
googleapiclient
.
model
from
googleapiclient
import
__version__
from
googleapiclient
.
errors
import
HttpError
from
googleapiclient
.
model
import
JsonModel
from
six
.
moves
.
urllib
.
parse
import
parse_qs
class
Model
(
unittest
.
TestCase
):
def
test_json_no_body
(
self
):
model
=
JsonModel
(
data_wrapper
=
False
)
headers
=
{}
path_params
=
{}
query_params
=
{}
body
=
None
headers
,
unused_params
,
query
,
body
=
model
.
request
(
headers
,
path_params
,
query_params
,
body
)
self
.
assertEqual
(
headers
[
'accept'
],
'application/json'
)
self
.
assertTrue
(
'content-type'
not
in
headers
)
self
.
assertNotEqual
(
query
,
''
)
self
.
assertEqual
(
body
,
None
)
def
test_json_body
(
self
):
model
=
JsonModel
(
data_wrapper
=
False
)
headers
=
{}
path_params
=
{}
query_params
=
{}
body
=
{}
headers
,
unused_params
,
query
,
body
=
model
.
request
(
headers
,
path_params
,
query_params
,
body
)
self
.
assertEqual
(
headers
[
'accept'
],
'application/json'
)
self
.
assertEqual
(
headers
[
'content-type'
],
'application/json'
)
self
.
assertNotEqual
(
query
,
''
)
self
.
assertEqual
(
body
,
'{}'
)
def
test_json_body_data_wrapper
(
self
):
model
=
JsonModel
(
data_wrapper
=
True
)
headers
=
{}
path_params
=
{}
query_params
=
{}
body
=
{}
headers
,
unused_params
,
query
,
body
=
model
.
request
(
headers
,
path_params
,
query_params
,
body
)
self
.
assertEqual
(
headers
[
'accept'
],
'application/json'
)
self
.
assertEqual
(
headers
[
'content-type'
],
'application/json'
)
self
.
assertNotEqual
(
query
,
''
)
self
.
assertEqual
(
body
,
'{"data": {}}'
)
def
test_json_body_default_data
(
self
):
"""Test that a 'data' wrapper doesn't get added if one is already present."""
model
=
JsonModel
(
data_wrapper
=
True
)
headers
=
{}
path_params
=
{}
query_params
=
{}
body
=
{
'data'
:
'foo'
}
headers
,
unused_params
,
query
,
body
=
model
.
request
(
headers
,
path_params
,
query_params
,
body
)
self
.
assertEqual
(
headers
[
'accept'
],
'application/json'
)
self
.
assertEqual
(
headers
[
'content-type'
],
'application/json'
)
self
.
assertNotEqual
(
query
,
''
)
self
.
assertEqual
(
body
,
'{"data": "foo"}'
)
def
test_json_build_query
(
self
):
model
=
JsonModel
(
data_wrapper
=
False
)
headers
=
{}
path_params
=
{}
query_params
=
{
'foo'
:
1
,
'bar'
:
u'
\N{COMET}
'
,
'baz'
: [
'fe'
,
'fi'
,
'fo'
,
'fum'
],
# Repeated parameters
'qux'
: []}
body
=
{}
headers
,
unused_params
,
query
,
body
=
model
.
request
(
headers
,
path_params
,
query_params
,
body
)
self
.
assertEqual
(
headers
[
'accept'
],
'application/json'
)
self
.
assertEqual
(
headers
[
'content-type'
],
'application/json'
)
query_dict
=
parse_qs
(
query
[
1
:])
self
.
assertEqual
(
query_dict
[
'foo'
], [
'1'
])
if
six
.
PY3
:
# Python 3, no need to encode
self
.
assertEqual
(
query_dict
[
'bar'
], [
u'
\N{COMET}
'
])
else
:
# Python 2, encode string
self
.
assertEqual
(
query_dict
[
'bar'
], [
u'
\N{COMET}
'
.
encode
(
'utf-8'
)])
self
.
assertEqual
(
query_dict
[
'baz'
], [
'fe'
,
'fi'
,
'fo'
,
'fum'
])
self
.
assertTrue
(
'qux'
not
in
query_dict
)
self
.
assertEqual
(
body
,
'{}'
)
def
test_user_agent
(
self
):
model
=
JsonModel
(
data_wrapper
=
False
)
headers
=
{
'user-agent'
:
'my-test-app/1.23.4'
}
path_params
=
{}
query_params
=
{}
body
=
{}
headers
,
unused_params
,
unused_query
,
body
=
model
.
request
(
headers
,
path_params
,
query_params
,
body
)
self
.
assertEqual
(
headers
[
'user-agent'
],
'my-test-app/1.23.4 google-api-python-client/'
+
__version__
+
' (gzip)'
)
def
test_bad_response
(
self
):
model
=
JsonModel
(
data_wrapper
=
False
)
resp
=
httplib2
.
Response
({
'status'
:
'401'
})
resp
.
reason
=
'Unauthorized'
content
=
b'{"error": {"message": "not authorized"}}'
try
:
content
=
model
.
response
(
resp
,
content
)
self
.
fail
(
'Should have thrown an exception'
)
except
HttpError
as
e
:
self
.
assertTrue
(
'not authorized'
in
str
(
e
))
resp
[
'content-type'
]
=
'application/json'
try
:
content
=
model
.
response
(
resp
,
content
)
self
.
fail
(
'Should have thrown an exception'
)
except
HttpError
as
e
:
self
.
assertTrue
(
'not authorized'
in
str
(
e
))
def
test_good_response
(
self
):
model
=
JsonModel
(
data_wrapper
=
True
)
resp
=
httplib2
.
Response
({
'status'
:
'200'
})
resp
.
reason
=
'OK'
content
=
'{"data": "is good"}'
content
=
model
.
response
(
resp
,
content
)
self
.
assertEqual
(
content
,
'is good'
)
def
test_good_response_wo_data
(
self
):
model
=
JsonModel
(
data_wrapper
=
False
)
resp
=
httplib2
.
Response
({
'status'
:
'200'
})
resp
.
reason
=
'OK'
content
=
'{"foo": "is good"}'
content
=
model
.
response
(
resp
,
content
)
self
.
assertEqual
(
content
, {
'foo'
:
'is good'
})
def
test_good_response_wo_data_str
(
self
):
model
=
JsonModel
(
data_wrapper
=
False
)
resp
=
httplib2
.
Response
({
'status'
:
'200'
})
resp
.
reason
=
'OK'
content
=
'"data goes here"'
content
=
model
.
response
(
resp
,
content
)
self
.
assertEqual
(
content
,
'data goes here'
)
def
test_no_content_response
(
self
):
model
=
JsonModel
(
data_wrapper
=
False
)
resp
=
httplib2
.
Response
({
'status'
:
'204'
})
resp
.
reason
=
'No Content'
content
=
''
content
=
model
.
response
(
resp
,
content
)
self
.
assertEqual
(
content
, {})
def
test_logging
(
self
):
class
MockLogging
(
object
):
def
__init__
(
self
):
self
.
info_record
=
[]
self
.
debug_record
=
[]
def
info
(
self
,
message
,
*
args
):
self
.
info_record
.
append
(
message
%
args
)
def
debug
(
self
,
message
,
*
args
):
self
.
debug_record
.
append
(
message
%
args
)
class
MockResponse
(
dict
):
def
__init__
(
self
,
items
):
super
(
MockResponse
,
self
).
__init__
()
self
.
status
=
items
[
'status'
]
for
key
,
value
in
six
.
iteritems
(
items
):
self
[
key
]
=
value
old_logging
=
googleapiclient
.
model
.
logging
googleapiclient
.
model
.
logging
=
MockLogging
()
googleapiclient
.
model
.
dump_request_response
=
True
model
=
JsonModel
()
request_body
=
{
'field1'
:
'value1'
,
'field2'
:
'value2'
}
body_string
=
model
.
request
({}, {}, {},
request_body
)[
-
1
]
json_body
=
json
.
loads
(
body_string
)
self
.
assertEqual
(
request_body
,
json_body
)
response
=
{
'status'
:
200
,
'response_field_1'
:
'response_value_1'
,
'response_field_2'
:
'response_value_2'
}
response_body
=
model
.
response
(
MockResponse
(
response
),
body_string
)
self
.
assertEqual
(
request_body
,
response_body
)
self
.
assertEqual
(
googleapiclient
.
model
.
logging
.
info_record
[:
2
],
[
'--request-start--'
,
'-headers-start-'
])
self
.
assertTrue
(
'response_field_1: response_value_1'
in
googleapiclient
.
model
.
logging
.
info_record
)
self
.
assertTrue
(
'response_field_2: response_value_2'
in
googleapiclient
.
model
.
logging
.
info_record
)
self
.
assertEqual
(
json
.
loads
(
googleapiclient
.
model
.
logging
.
info_record
[
-
2
]),
request_body
)
self
.
assertEqual
(
googleapiclient
.
model
.
logging
.
info_record
[
-
1
],
'--response-end--'
)
googleapiclient
.
model
.
logging
=
old_logging
def
test_no_data_wrapper_deserialize
(
self
):
model
=
JsonModel
(
data_wrapper
=
False
)
resp
=
httplib2
.
Response
({
'status'
:
'200'
})
resp
.
reason
=
'OK'
content
=
'{"data": "is good"}'
content
=
model
.
response
(
resp
,
content
)
self
.
assertEqual
(
content
, {
'data'
:
'is good'
})
def
test_data_wrapper_deserialize
(
self
):
model
=
JsonModel
(
data_wrapper
=
True
)
resp
=
httplib2
.
Response
({
'status'
:
'200'
})
resp
.
reason
=
'OK'
content
=
'{"data": "is good"}'
content
=
model
.
response
(
resp
,
content
)
self
.
assertEqual
(
content
,
'is good'
)
def
test_data_wrapper_deserialize_nodata
(
self
):
model
=
JsonModel
(
data_wrapper
=
True
)
resp
=
httplib2
.
Response
({
'status'
:
'200'
})
resp
.
reason
=
'OK'
content
=
'{"atad": "is good"}'
content
=
model
.
response
(
resp
,
content
)
self
.
assertEqual
(
content
, {
'atad'
:
'is good'
})
if
__name__
==
'__main__'
:
unittest
.
main
()
Back
|
FazBrowse Home
|
New Git URL