blob: fd6b8e96240a341e69aa676165fe023c9aefd830 [file] [log] [blame]
Mark Slee57cc25e2007-02-28 21:43:54 +00001#!/usr/bin/env python
Mark Sleefc89d392006-09-04 00:04:39 +00002
David Reissea2cba82009-03-30 21:35:00 +00003#
4# Licensed to the Apache Software Foundation (ASF) under one
5# or more contributor license agreements. See the NOTICE file
6# distributed with this work for additional information
7# regarding copyright ownership. The ASF licenses this file
8# to you under the Apache License, Version 2.0 (the
9# "License"); you may not use this file except in compliance
10# with the License. You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing,
15# software distributed under the License is distributed on an
16# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17# KIND, either express or implied. See the License for the
18# specific language governing permissions and limitations
19# under the License.
20#
21
Roger Meier85fb6de2012-11-02 00:05:42 +000022import sys, glob, os
23sys.path.insert(0, glob.glob(os.path.join(os.path.dirname(__file__),'../../lib/py/build/lib.*'))[0])
Mark Sleefc89d392006-09-04 00:04:39 +000024
Mark Slee5299a952007-10-05 00:13:24 +000025import unittest
Mark Slee57cc25e2007-02-28 21:43:54 +000026import time
Mark Slee5299a952007-10-05 00:13:24 +000027from optparse import OptionParser
Mark Slee57cc25e2007-02-28 21:43:54 +000028
Mark Slee5299a952007-10-05 00:13:24 +000029parser = OptionParser()
Roger Meierf4eec7a2011-09-11 18:16:21 +000030parser.add_option('--genpydir', type='string', dest='genpydir',
31 default='gen-py',
32 help='include this local directory in sys.path for locating generated code')
David Reiss74421272008-11-07 23:09:31 +000033parser.add_option("--port", type="int", dest="port",
34 help="connect to server at port")
35parser.add_option("--host", type="string", dest="host",
36 help="connect to server")
Bryan Duxbury16066592011-03-22 18:06:04 +000037parser.add_option("--zlib", action="store_true", dest="zlib",
38 help="use zlib wrapper for compressed transport")
39parser.add_option("--ssl", action="store_true", dest="ssl",
40 help="use SSL for encrypted transport")
Roger Meier879cab22014-05-03 17:51:21 +020041parser.add_option("--multiple", action="store_true", dest="multiple",
42 help="use Multiple service")
David Reissf78ec2b2009-01-31 21:59:32 +000043parser.add_option("--http", dest="http_path",
44 help="Use the HTTP transport with the specified path")
Roger Meier76150722014-05-31 22:22:07 +020045parser.add_option('-v', '--verbose', action="store_const",
David Reiss74421272008-11-07 23:09:31 +000046 dest="verbose", const=2,
47 help="verbose output")
Roger Meier76150722014-05-31 22:22:07 +020048parser.add_option('-q', '--quiet', action="store_const",
David Reiss74421272008-11-07 23:09:31 +000049 dest="verbose", const=0,
50 help="minimal output")
Roger Meier76150722014-05-31 22:22:07 +020051parser.add_option('--protocol', dest="proto", type="string",
52 help="protocol to use, one of: accel, binary, compact, json")
53parser.add_option('--transport', dest="trans", type="string",
54 help="transport to use, one of: buffered, framed")
Bryan Duxbury59d4efd2011-03-21 17:38:22 +000055parser.set_defaults(framed=False, http_path=None, verbose=1, host='localhost', port=9090, proto='binary')
David Reiss74421272008-11-07 23:09:31 +000056options, args = parser.parse_args()
Mark Sleea3302652006-10-25 19:03:32 +000057
Roger Meierf4eec7a2011-09-11 18:16:21 +000058sys.path.insert(0, options.genpydir)
59
Roger Meier879cab22014-05-03 17:51:21 +020060from ThriftTest import ThriftTest, SecondService
Roger Meierf4eec7a2011-09-11 18:16:21 +000061from ThriftTest.ttypes import *
Roger Meier879cab22014-05-03 17:51:21 +020062from thrift.protocol import TMultiplexedProtocol
Roger Meierf4eec7a2011-09-11 18:16:21 +000063from thrift.transport import TTransport
64from thrift.transport import TSocket
65from thrift.transport import THttpClient
66from thrift.transport import TZlibTransport
67from thrift.protocol import TBinaryProtocol
68from thrift.protocol import TCompactProtocol
Roger Meier85fb6de2012-11-02 00:05:42 +000069from thrift.protocol import TJSONProtocol
Roger Meierf4eec7a2011-09-11 18:16:21 +000070
Mark Slee5299a952007-10-05 00:13:24 +000071class AbstractTest(unittest.TestCase):
Mark Slee5299a952007-10-05 00:13:24 +000072 def setUp(self):
David Reissf78ec2b2009-01-31 21:59:32 +000073 if options.http_path:
Bryan Duxbury16066592011-03-22 18:06:04 +000074 self.transport = THttpClient.THttpClient(options.host, port=options.port, path=options.http_path)
Mark Slee5299a952007-10-05 00:13:24 +000075 else:
Bryan Duxbury16066592011-03-22 18:06:04 +000076 if options.ssl:
77 from thrift.transport import TSSLSocket
78 socket = TSSLSocket.TSSLSocket(options.host, options.port, validate=False)
79 else:
80 socket = TSocket.TSocket(options.host, options.port)
David Reissf78ec2b2009-01-31 21:59:32 +000081 # frame or buffer depending upon args
Roger Meier76150722014-05-31 22:22:07 +020082 self.transport = TTransport.TBufferedTransport(socket)
83 if options.trans == 'framed':
David Reissf78ec2b2009-01-31 21:59:32 +000084 self.transport = TTransport.TFramedTransport(socket)
Roger Meier76150722014-05-31 22:22:07 +020085 elif options.trans == 'buffered':
David Reissf78ec2b2009-01-31 21:59:32 +000086 self.transport = TTransport.TBufferedTransport(socket)
Roger Meier76150722014-05-31 22:22:07 +020087 elif options.trans == '':
88 raise AssertionError('Unknown --transport option: %s' % options.trans)
Bryan Duxbury16066592011-03-22 18:06:04 +000089 if options.zlib:
90 self.transport = TZlibTransport.TZlibTransport(self.transport, 9)
Mark Slee5299a952007-10-05 00:13:24 +000091 self.transport.open()
Mark Slee5299a952007-10-05 00:13:24 +000092 protocol = self.protocol_factory.getProtocol(self.transport)
Roger Meier879cab22014-05-03 17:51:21 +020093 if options.multiple:
94 p = TMultiplexedProtocol.TMultiplexedProtocol(protocol, "ThriftTest")
95 self.client = ThriftTest.Client(p)
96 p = TMultiplexedProtocol.TMultiplexedProtocol(protocol, "SecondService")
97 self.client2 = SecondService.Client(p)
98 else:
99 self.client = ThriftTest.Client(protocol)
100 self.client2 = None
David Reiss0c90f6f2008-02-06 22:18:40 +0000101
Mark Slee5299a952007-10-05 00:13:24 +0000102 def tearDown(self):
103 # Close!
104 self.transport.close()
Mark Sleefc89d392006-09-04 00:04:39 +0000105
Mark Slee5299a952007-10-05 00:13:24 +0000106 def testVoid(self):
107 self.client.testVoid()
David Reiss0c90f6f2008-02-06 22:18:40 +0000108
Mark Slee5299a952007-10-05 00:13:24 +0000109 def testString(self):
Bryan Duxbury16066592011-03-22 18:06:04 +0000110 self.assertEqual(self.client.testString('Python' * 20), 'Python' * 20)
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000111 self.assertEqual(self.client.testString(''), '')
Mark Sleec9676562006-09-05 17:34:52 +0000112
Mark Slee5299a952007-10-05 00:13:24 +0000113 def testByte(self):
114 self.assertEqual(self.client.testByte(63), 63)
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000115 self.assertEqual(self.client.testByte(-127), -127)
Mark Sleec98d0502006-09-06 02:42:25 +0000116
Mark Slee5299a952007-10-05 00:13:24 +0000117 def testI32(self):
118 self.assertEqual(self.client.testI32(-1), -1)
119 self.assertEqual(self.client.testI32(0), 0)
Mark Sleec9676562006-09-05 17:34:52 +0000120
Mark Slee5299a952007-10-05 00:13:24 +0000121 def testI64(self):
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000122 self.assertEqual(self.client.testI64(1), 1)
Mark Slee5299a952007-10-05 00:13:24 +0000123 self.assertEqual(self.client.testI64(-34359738368), -34359738368)
Mark Sleec98d0502006-09-06 02:42:25 +0000124
Mark Slee5299a952007-10-05 00:13:24 +0000125 def testDouble(self):
126 self.assertEqual(self.client.testDouble(-5.235098235), -5.235098235)
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000127 self.assertEqual(self.client.testDouble(0), 0)
128 self.assertEqual(self.client.testDouble(-1), -1)
Mark Sleec9676562006-09-05 17:34:52 +0000129
Mark Slee5299a952007-10-05 00:13:24 +0000130 def testStruct(self):
131 x = Xtruct()
132 x.string_thing = "Zero"
133 x.byte_thing = 1
134 x.i32_thing = -3
135 x.i64_thing = -5
136 y = self.client.testStruct(x)
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000137 self.assertEqual(y, x)
Mark Sleefc89d392006-09-04 00:04:39 +0000138
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000139 def testNest(self):
140 inner = Xtruct(string_thing="Zero", byte_thing=1, i32_thing=-3,
141 i64_thing=-5)
Roger Meier85fb6de2012-11-02 00:05:42 +0000142 x = Xtruct2(struct_thing=inner, byte_thing=0, i32_thing=0)
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000143 y = self.client.testNest(x)
144 self.assertEqual(y, x)
145
146 def testMap(self):
147 x = {0:1, 1:2, 2:3, 3:4, -1:-2}
148 y = self.client.testMap(x)
149 self.assertEqual(y, x)
150
151 def testSet(self):
152 x = set([8, 1, 42])
153 y = self.client.testSet(x)
154 self.assertEqual(y, x)
155
156 def testList(self):
157 x = [1, 4, 9, -42]
158 y = self.client.testList(x)
159 self.assertEqual(y, x)
160
161 def testEnum(self):
162 x = Numberz.FIVE
163 y = self.client.testEnum(x)
164 self.assertEqual(y, x)
165
166 def testTypedef(self):
167 x = 0xffffffffffffff # 7 bytes of 0xff
168 y = self.client.testTypedef(x)
169 self.assertEqual(y, x)
170
171 def testMapMap(self):
172 # does not work: dict() is not a hashable type, so a dict() cannot be used as a key in another dict()
173 #x = { {1:10, 2:20}, {1:100, 2:200, 3:300}, {1:1000, 2:2000, 3:3000, 4:4000} }
174 try:
175 y = self.client.testMapMap()
176 except:
177 pass
178
179 def testMulti(self):
Roger Meier85fb6de2012-11-02 00:05:42 +0000180 xpected = Xtruct(string_thing='Hello2', byte_thing=74, i32_thing=0xff00ff, i64_thing=0xffffffffd0d0)
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000181 y = self.client.testMulti(xpected.byte_thing,
182 xpected.i32_thing,
183 xpected.i64_thing,
184 { 0:'abc' },
185 Numberz.FIVE,
Roger Meier76150722014-05-31 22:22:07 +0200186 0xf0f0f0)
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000187 self.assertEqual(y, xpected)
Mark Sleec9676562006-09-05 17:34:52 +0000188
Mark Slee5299a952007-10-05 00:13:24 +0000189 def testException(self):
190 self.client.testException('Safe')
191 try:
192 self.client.testException('Xception')
193 self.fail("should have gotten exception")
194 except Xception, x:
195 self.assertEqual(x.errorCode, 1001)
196 self.assertEqual(x.message, 'Xception')
Roger Meier61188a42011-11-01 21:03:33 +0000197 # TODO ensure same behavior for repr within generated python variants
Roger Meierf4eec7a2011-09-11 18:16:21 +0000198 # ensure exception's repr method works
Roger Meier61188a42011-11-01 21:03:33 +0000199 #x_repr = repr(x)
200 #self.assertEqual(x_repr, 'Xception(errorCode=1001, message=\'Xception\')')
Mark Sleec9676562006-09-05 17:34:52 +0000201
David Reissbcaa2ad2008-06-10 22:55:26 +0000202 try:
203 self.client.testException("throw_undeclared")
204 self.fail("should have thrown exception")
205 except Exception: # type is undefined
206 pass
207
David Reiss6ce401d2009-03-24 20:01:58 +0000208 def testOneway(self):
David Reissdb893b62008-02-18 02:11:48 +0000209 start = time.time()
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000210 self.client.testOneway(1) # type is int, not float
David Reissdb893b62008-02-18 02:11:48 +0000211 end = time.time()
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000212 self.assertTrue(end - start < 3,
David Reiss6ce401d2009-03-24 20:01:58 +0000213 "oneway sleep took %f sec" % (end - start))
Roger Meier76150722014-05-31 22:22:07 +0200214
Todd Lipconf5dea4c2009-12-03 01:18:44 +0000215 def testOnewayThenNormal(self):
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000216 self.client.testOneway(1) # type is int, not float
Todd Lipconf5dea4c2009-12-03 01:18:44 +0000217 self.assertEqual(self.client.testString('Python'), 'Python')
David Reissdb893b62008-02-18 02:11:48 +0000218
Roger Meier879cab22014-05-03 17:51:21 +0200219 def testblahBlah(self):
220 if self.client2:
221 self.assertEqual(self.client2.blahBlah(), None)
222
Mark Slee5299a952007-10-05 00:13:24 +0000223class NormalBinaryTest(AbstractTest):
224 protocol_factory = TBinaryProtocol.TBinaryProtocolFactory()
Mark Sleefc89d392006-09-04 00:04:39 +0000225
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000226class CompactTest(AbstractTest):
227 protocol_factory = TCompactProtocol.TCompactProtocolFactory()
228
Roger Meier85fb6de2012-11-02 00:05:42 +0000229class JSONTest(AbstractTest):
230 protocol_factory = TJSONProtocol.TJSONProtocolFactory()
231
Mark Slee5299a952007-10-05 00:13:24 +0000232class AcceleratedBinaryTest(AbstractTest):
233 protocol_factory = TBinaryProtocol.TBinaryProtocolAcceleratedFactory()
Mark Sleea3302652006-10-25 19:03:32 +0000234
David Reiss9ff3b9d2008-02-15 01:10:23 +0000235def suite():
236 suite = unittest.TestSuite()
237 loader = unittest.TestLoader()
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000238 if options.proto == 'binary': # look for --proto on cmdline
239 suite.addTest(loader.loadTestsFromTestCase(NormalBinaryTest))
240 elif options.proto == 'accel':
241 suite.addTest(loader.loadTestsFromTestCase(AcceleratedBinaryTest))
242 elif options.proto == 'compact':
243 suite.addTest(loader.loadTestsFromTestCase(CompactTest))
Roger Meier85fb6de2012-11-02 00:05:42 +0000244 elif options.proto == 'json':
245 suite.addTest(loader.loadTestsFromTestCase(JSONTest))
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000246 else:
Roger Meier76150722014-05-31 22:22:07 +0200247 raise AssertionError('Unknown protocol given with --protocol: %s' % options.proto)
David Reiss9ff3b9d2008-02-15 01:10:23 +0000248 return suite
Mark Slee5299a952007-10-05 00:13:24 +0000249
David Reiss74421272008-11-07 23:09:31 +0000250class OwnArgsTestProgram(unittest.TestProgram):
251 def parseArgs(self, argv):
252 if args:
253 self.testNames = args
254 else:
255 self.testNames = (self.defaultTest,)
256 self.createTests()
257
David Reiss9ff3b9d2008-02-15 01:10:23 +0000258if __name__ == "__main__":
Roger Meierf4eec7a2011-09-11 18:16:21 +0000259 OwnArgsTestProgram(defaultTest="suite", testRunner=unittest.TextTestRunner(verbosity=1))