def getMessages(): print("RECIBIENDO") for x in stub.recibirMensajes(structure.Usuario(username=sender)): print(x)
def test_recibirMensajes(self): with grpc.insecure_channel("localhost:" + self.port) as channel: stub = str_grpc.ChatStub(channel) response = stub.recibirMensajes( structure.Usuario(username="******")) self.assertEqual(response)