blob: 7f1cfd3d663fd73bd2eef2340f06655ce613d403 [file] [log] [blame]
Parkayun1c1da592014-12-10 13:32:46 +09001# -*- coding:utf-8 -*-
Joe Gregorioe98c2322011-05-26 15:40:48 -04002#!/usr/bin/python2.4
3#
Craig Citro751b7fb2014-09-23 11:20:38 -07004# Copyright 2014 Google Inc. All Rights Reserved.
Joe Gregorioe98c2322011-05-26 15:40:48 -04005#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17
18"""Model tests
19
20Unit tests for model utility methods.
21"""
22
23__author__ = 'jcgregorio@google.com (Joe Gregorio)'
24
Joe Gregorioe98c2322011-05-26 15:40:48 -040025import unittest
26
Parkayun1c1da592014-12-10 13:32:46 +090027from googleapiclient.model import BaseModel
John Asmuth864311d2014-04-24 15:46:08 -040028from googleapiclient.model import makepatch
Joe Gregorioe98c2322011-05-26 15:40:48 -040029
30
31TEST_CASES = [
32 # (message, original, modified, expected)
33 ("Remove an item from an object",
34 {'a': 1, 'b': 2}, {'a': 1}, {'b': None}),
35 ("Add an item to an object",
36 {'a': 1}, {'a': 1, 'b': 2}, {'b': 2}),
37 ("No changes",
38 {'a': 1, 'b': 2}, {'a': 1, 'b': 2}, {}),
39 ("Empty objects",
40 {}, {}, {}),
41 ("Modify an item in an object",
42 {'a': 1, 'b': 2}, {'a': 1, 'b': 3}, {'b': 3}),
43 ("Change an array",
44 {'a': 1, 'b': [2, 3]}, {'a': 1, 'b': [2]}, {'b': [2]}),
45 ("Modify a nested item",
46 {'a': 1, 'b': {'foo':'bar', 'baz': 'qux'}},
47 {'a': 1, 'b': {'foo':'bar', 'baz': 'qaax'}},
48 {'b': {'baz': 'qaax'}}),
49 ("Modify a nested array",
50 {'a': 1, 'b': [{'foo':'bar', 'baz': 'qux'}]},
51 {'a': 1, 'b': [{'foo':'bar', 'baz': 'qaax'}]},
52 {'b': [{'foo':'bar', 'baz': 'qaax'}]}),
53 ("Remove item from a nested array",
54 {'a': 1, 'b': [{'foo':'bar', 'baz': 'qux'}]},
55 {'a': 1, 'b': [{'foo':'bar'}]},
56 {'b': [{'foo':'bar'}]}),
57 ("Remove a nested item",
58 {'a': 1, 'b': {'foo':'bar', 'baz': 'qux'}},
59 {'a': 1, 'b': {'foo':'bar'}},
60 {'b': {'baz': None}})
61]
62
63
64class TestPatch(unittest.TestCase):
65
66 def test_patch(self):
67 for (msg, orig, mod, expected_patch) in TEST_CASES:
68 self.assertEqual(expected_patch, makepatch(orig, mod), msg=msg)
69
70
Parkayun1c1da592014-12-10 13:32:46 +090071class TestBaseModel(unittest.TestCase):
72 def test_build_query(self):
73 model = BaseModel()
74
75 test_cases = [
76 ('hello', 'world', '?hello=world'),
77 ('hello', u'world', '?hello=world'),
78 ('hello', '세계', '?hello=%EC%84%B8%EA%B3%84'),
79 ('hello', u'세계', '?hello=%EC%84%B8%EA%B3%84'),
80 ('hello', 'こんにちは', '?hello=%E3%81%93%E3%82%93%E3%81%AB%E3%81%A1%E3%81%AF'),
81 ('hello', u'こんにちは', '?hello=%E3%81%93%E3%82%93%E3%81%AB%E3%81%A1%E3%81%AF'),
82 ('hello', '你好', '?hello=%E4%BD%A0%E5%A5%BD'),
83 ('hello', u'你好', '?hello=%E4%BD%A0%E5%A5%BD'),
84 ('hello', 'مرحبا', '?hello=%D9%85%D8%B1%D8%AD%D8%A8%D8%A7'),
85 ('hello', u'مرحبا', '?hello=%D9%85%D8%B1%D8%AD%D8%A8%D8%A7')
86 ]
87
88 for case in test_cases:
89 key, value, expect = case
90 self.assertEqual(expect, model._build_query({key: value}))
91
92
Joe Gregorioe98c2322011-05-26 15:40:48 -040093if __name__ == '__main__':
94 unittest.main()