blob: 78caf4e572f1adabcaa6af889501642834383bab [file] [log] [blame]
Craig Citro15744b12015-03-02 13:34:32 -08001#!/usr/bin/env python
Matt McDonald2a5f4132011-04-29 16:32:27 -04002#
Craig Citro751b7fb2014-09-23 11:20:38 -07003# Copyright 2014 Google Inc. All Rights Reserved.
Matt McDonald2a5f4132011-04-29 16:32:27 -04004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17"""Protocol Buffer Model tests
18
19Unit tests for the Protocol Buffer model.
20"""
INADA Naokid898a372015-03-04 03:52:46 +090021from __future__ import absolute_import
Matt McDonald2a5f4132011-04-29 16:32:27 -040022
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070023__author__ = "mmcdonald@google.com (Matt McDonald)"
Matt McDonald2a5f4132011-04-29 16:32:27 -040024
Pat Ferate497a90f2015-03-09 09:52:54 -070025import unittest2 as unittest
Matt McDonald2a5f4132011-04-29 16:32:27 -040026import httplib2
John Asmuth864311d2014-04-24 15:46:08 -040027import googleapiclient.model
Matt McDonald2a5f4132011-04-29 16:32:27 -040028
John Asmuth864311d2014-04-24 15:46:08 -040029from googleapiclient.errors import HttpError
30from googleapiclient.model import ProtocolBufferModel
Matt McDonald2a5f4132011-04-29 16:32:27 -040031
Pat Ferated5b61bd2015-03-03 16:04:11 -080032from six.moves.urllib.parse import parse_qs
Matt McDonald2a5f4132011-04-29 16:32:27 -040033
34
35class MockProtocolBuffer(object):
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070036 def __init__(self, data=None):
37 self.data = data
Matt McDonald2a5f4132011-04-29 16:32:27 -040038
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070039 def __eq__(self, other):
40 return self.data == other.data
Matt McDonald2a5f4132011-04-29 16:32:27 -040041
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070042 @classmethod
43 def FromString(cls, string):
44 return cls(string)
Matt McDonald2a5f4132011-04-29 16:32:27 -040045
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070046 def SerializeToString(self):
47 return self.data
Matt McDonald2a5f4132011-04-29 16:32:27 -040048
49
50class Model(unittest.TestCase):
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070051 def setUp(self):
52 self.model = ProtocolBufferModel(MockProtocolBuffer)
Matt McDonald2a5f4132011-04-29 16:32:27 -040053
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070054 def test_no_body(self):
55 headers = {}
56 path_params = {}
57 query_params = {}
58 body = None
Matt McDonald2a5f4132011-04-29 16:32:27 -040059
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070060 headers, params, query, body = self.model.request(
61 headers, path_params, query_params, body
62 )
Matt McDonald2a5f4132011-04-29 16:32:27 -040063
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070064 self.assertEqual(headers["accept"], "application/x-protobuf")
65 self.assertTrue("content-type" not in headers)
66 self.assertNotEqual(query, "")
67 self.assertEqual(body, None)
Matt McDonald2a5f4132011-04-29 16:32:27 -040068
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070069 def test_body(self):
70 headers = {}
71 path_params = {}
72 query_params = {}
73 body = MockProtocolBuffer("data")
Matt McDonald2a5f4132011-04-29 16:32:27 -040074
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070075 headers, params, query, body = self.model.request(
76 headers, path_params, query_params, body
77 )
Matt McDonald2a5f4132011-04-29 16:32:27 -040078
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070079 self.assertEqual(headers["accept"], "application/x-protobuf")
80 self.assertEqual(headers["content-type"], "application/x-protobuf")
81 self.assertNotEqual(query, "")
82 self.assertEqual(body, "data")
Matt McDonald2a5f4132011-04-29 16:32:27 -040083
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070084 def test_good_response(self):
85 resp = httplib2.Response({"status": "200"})
86 resp.reason = "OK"
87 content = "data"
Matt McDonald2a5f4132011-04-29 16:32:27 -040088
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070089 content = self.model.response(resp, content)
90 self.assertEqual(content, MockProtocolBuffer("data"))
Matt McDonald2a5f4132011-04-29 16:32:27 -040091
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070092 def test_no_content_response(self):
93 resp = httplib2.Response({"status": "204"})
94 resp.reason = "No Content"
95 content = ""
Matt McDonald2a5f4132011-04-29 16:32:27 -040096
Bu Sun Kim66bb32c2019-10-30 10:11:58 -070097 content = self.model.response(resp, content)
98 self.assertEqual(content, MockProtocolBuffer())
Matt McDonald2a5f4132011-04-29 16:32:27 -040099
100
Bu Sun Kim66bb32c2019-10-30 10:11:58 -0700101if __name__ == "__main__":
102 unittest.main()