blob: 40e7a47e389bd0517bdd36e4e73ecca6974bd077 [file] [log] [blame]
Nobuaki Sukegawaad835862015-12-23 23:32:09 +09001#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. 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,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
Phongphan Phuttha7f01e2a2015-11-06 15:46:50 +070019
20import sys
21import unittest
22
Nobuaki Sukegawad479e232016-02-28 11:28:19 +090023import _import_local_thrift # noqa
Nobuaki Sukegawaad835862015-12-23 23:32:09 +090024from thrift.protocol.TJSONProtocol import TJSONProtocol
25from thrift.transport import TTransport
26
Phongphan Phuttha7f01e2a2015-11-06 15:46:50 +070027#
28# In order to run the test under Windows. We need to create symbolic link
29# name 'thrift' to '../src' folder by using:
30#
31# mklink /D thrift ..\src
32#
33
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +090034
Phongphan Phuttha7f01e2a2015-11-06 15:46:50 +070035class TestJSONString(unittest.TestCase):
36
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +090037 def test_escaped_unicode_string(self):
38 unicode_json = b'"hello \\u0e01\\u0e02\\u0e03\\ud835\\udcab\\udb40\\udc70 unicode"'
39 unicode_text = u'hello \u0e01\u0e02\u0e03\U0001D4AB\U000E0070 unicode'
Phongphan Phuttha7f01e2a2015-11-06 15:46:50 +070040
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +090041 buf = TTransport.TMemoryBuffer(unicode_json)
42 transport = TTransport.TBufferedTransportFactory().getTransport(buf)
43 protocol = TJSONProtocol(transport)
Phongphan Phuttha7f01e2a2015-11-06 15:46:50 +070044
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +090045 if sys.version_info[0] == 2:
46 unicode_text = unicode_text.encode('utf8')
47 self.assertEqual(protocol.readString(), unicode_text)
Phongphan Phuttha7f01e2a2015-11-06 15:46:50 +070048
James E. King, III0ad20bd2017-09-30 15:44:16 -070049
Phongphan Phuttha7f01e2a2015-11-06 15:46:50 +070050if __name__ == '__main__':
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +090051 unittest.main()