14 """Insecure client-server interoperability as a unit test."""
21 from src.proto.grpc.testing
import test_pb2_grpc
28 @unittest.skipIf(sys.version_info[0] < 3,
29 'ProtoBuf descriptor has moved on from Python2')
34 self.
server = test_common.test_server()
37 port = self.
server.add_insecure_port(
'[::]:0')
39 self.
stub = test_pb2_grpc.TestServiceStub(
46 if __name__ ==
'__main__':
47 unittest.main(verbosity=2)