blob: d3ed9eb5ec0a2a91334ff9694da109af2f21e7f3 [file] [log] [blame]
#!/usr/bin/env python3
# Copyright 2021 The Pigweed Authors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
"""Tests using the callback client for pw_rpc."""
from typing import List, Tuple
import unittest
from pw_hdlc import rpc
from pw_rpc import benchmark_pb2, testing
from pw_status import Status
ITERATIONS = 50
PORT = 33000
class RpcIntegrationTest(unittest.TestCase):
"""Calls RPCs on an RPC server through a socket."""
test_server_command: Tuple[str, ...] = ()
def setUp(self) -> None:
server_and_client = rpc.HdlcRpcLocalServerAndClient(
self.test_server_command, PORT, [benchmark_pb2])
self._server = server_and_client.server
self.rpcs = server_and_client.client.channel(1).rpcs
def tearDown(self) -> None:
self._server.close()
def test_unary(self) -> None:
for i in range(ITERATIONS):
payload = f'O_o #{i}'.encode()
status, reply = self.rpcs.pw.rpc.Benchmark.UnaryEcho(
payload=payload)
self.assertIs(status, Status.OK)
self.assertEqual(reply.payload, payload)
def test_bidirectional(self) -> None:
with self.rpcs.pw.rpc.Benchmark.BidirectionalEcho.invoke() as call:
responses = call.get_responses()
for i in range(ITERATIONS):
payload = f'O_o #{i}'.encode()
call.send(benchmark_pb2.Payload(payload=payload))
self.assertEqual(next(responses).payload, payload)
def _main(test_server_command: List[str], unittest_args: List[str]) -> None:
RpcIntegrationTest.test_server_command = tuple(test_server_command)
unittest.main(argv=unittest_args)
if __name__ == '__main__':
_main(**vars(testing.parse_test_server_args()))