python单元测试怎么写_如何用Python编写GRPC服务器的单元测试?

我采纳了J.C的想法并将其扩展为能够为每个测试用例创建一个假服务器(mock)。另外,在端口0上绑定以避免端口冲突:@contextmanager

def helloworld(cls):

"""Instantiate a helloworld server and return a stub for use in tests"""

server = grpc.server(futures.ThreadPoolExecutor(max_workers=10))

helloworld_pb2_grpc.add_GreeterServicer_to_server(cls(), server)

port = server.add_insecure_port('[::]:0')

server.start()

try:

with grpc.insecure_channel('localhost:%d' % port) as channel:

yield helloworld_pb2_grpc.GreeterStub(channel)

finally:

server.stop(None)

class HelloWorldTest(unittest.TestCase):

def test_hello_name(self):

# may do something extra for this mock if it's stateful

class FakeHelloworld(helloworld_pb2_grpc.GreeterServicer):

def SayHello(self, request, context):

return helloworld_pb2.SayHelloResponse()

with helloworld(Fakehelloworld) as stub:

response = stub.SayHello(helloworld_pb2.HelloRequest(name='Jack'))

self.assertEqual(response.message, 'Hello, Jack!')

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值