THRIFT-1914 Python: Support for Multiplexing Services on any
Transport, Protocol and Server
Patch: smallfish & djwatson
& haijunz & Roger Meier
This closes #103 and #82
From 7aaea7ef4e6f44097b02543fa2e62597eae9d61e Mon Sep 17 00:00:00 2001
From: smallfish <smallfish.xy@gmail.com>
Date: Tue, 22 Apr 2014 11:26:52 +0800
Subject: [PATCH] THRIFT-1914 Python: Support for Multiplexing Services on any
Transport
diff --git a/test/py/TestClient.py b/test/py/TestClient.py
index 471e030..18aea86 100755
--- a/test/py/TestClient.py
+++ b/test/py/TestClient.py
@@ -38,6 +38,8 @@
help="use zlib wrapper for compressed transport")
parser.add_option("--ssl", action="store_true", dest="ssl",
help="use SSL for encrypted transport")
+parser.add_option("--multiple", action="store_true", dest="multiple",
+ help="use Multiple service")
parser.add_option("--framed", action="store_true", dest="framed",
help="use framed transport")
parser.add_option("--http", dest="http_path",
@@ -55,8 +57,9 @@
sys.path.insert(0, options.genpydir)
-from ThriftTest import ThriftTest
+from ThriftTest import ThriftTest, SecondService
from ThriftTest.ttypes import *
+from thrift.protocol import TMultiplexedProtocol
from thrift.transport import TTransport
from thrift.transport import TSocket
from thrift.transport import THttpClient
@@ -84,7 +87,14 @@
self.transport = TZlibTransport.TZlibTransport(self.transport, 9)
self.transport.open()
protocol = self.protocol_factory.getProtocol(self.transport)
- self.client = ThriftTest.Client(protocol)
+ if options.multiple:
+ p = TMultiplexedProtocol.TMultiplexedProtocol(protocol, "ThriftTest")
+ self.client = ThriftTest.Client(p)
+ p = TMultiplexedProtocol.TMultiplexedProtocol(protocol, "SecondService")
+ self.client2 = SecondService.Client(p)
+ else:
+ self.client = ThriftTest.Client(protocol)
+ self.client2 = None
def tearDown(self):
# Close!
@@ -203,6 +213,10 @@
self.client.testOneway(1) # type is int, not float
self.assertEqual(self.client.testString('Python'), 'Python')
+ def testblahBlah(self):
+ if self.client2:
+ self.assertEqual(self.client2.blahBlah(), None)
+
class NormalBinaryTest(AbstractTest):
protocol_factory = TBinaryProtocol.TBinaryProtocolFactory()