• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2019 The gRPC Authors.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#     http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15import asyncio
16import logging
17import unittest
18
19from grpc.experimental import aio
20
21from src.proto.grpc.testing import benchmark_service_pb2_grpc
22from tests_aio.benchmark import benchmark_servicer
23
24
25async def _start_async_server():
26    server = aio.server()
27
28    port = server.add_insecure_port('localhost:%s' % 50051)
29    servicer = benchmark_servicer.BenchmarkServicer()
30    benchmark_service_pb2_grpc.add_BenchmarkServiceServicer_to_server(
31        servicer, server)
32
33    await server.start()
34    logging.info('Benchmark server started at :%d' % port)
35    await server.wait_for_termination()
36
37
38def main():
39    loop = asyncio.get_event_loop()
40    loop.create_task(_start_async_server())
41    loop.run_forever()
42
43
44if __name__ == '__main__':
45    logging.basicConfig(level=logging.DEBUG)
46    main()
47