aboutsummaryrefslogtreecommitdiff
path: root/src/python/grpcio_tests/tests_aio/unit/server_time_remaining_test.py
blob: 340e4cc350a5a7d210a105780f30675ff1af50ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Copyright 2021 The gRPC 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
#
#     http://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.
"""Test the time_remaining() method of async ServicerContext."""

import asyncio
import datetime
import logging
import unittest

import grpc
from grpc import aio

from tests_aio.unit._common import ADHOC_METHOD
from tests_aio.unit._common import AdhocGenericHandler
from tests_aio.unit._test_base import AioTestBase

_REQUEST = b'\x09\x05'
_REQUEST_TIMEOUT_S = datetime.timedelta(seconds=5).total_seconds()


class TestServerTimeRemaining(AioTestBase):

    async def setUp(self):
        # Create async server
        self._server = aio.server(options=(('grpc.so_reuseport', 0),))
        self._adhoc_handlers = AdhocGenericHandler()
        self._server.add_generic_rpc_handlers((self._adhoc_handlers,))
        port = self._server.add_insecure_port('[::]:0')
        address = 'localhost:%d' % port
        await self._server.start()
        # Create async channel
        self._channel = aio.insecure_channel(address)

    async def tearDown(self):
        await self._channel.close()
        await self._server.stop(None)

    async def test_servicer_context_time_remaining(self):
        seen_time_remaining = []

        @grpc.unary_unary_rpc_method_handler
        def log_time_remaining(request: bytes,
                               context: grpc.ServicerContext) -> bytes:
            seen_time_remaining.append(context.time_remaining())
            return b""

        # Check if the deadline propagates properly
        self._adhoc_handlers.set_adhoc_handler(log_time_remaining)
        await self._channel.unary_unary(ADHOC_METHOD)(
            _REQUEST, timeout=_REQUEST_TIMEOUT_S)
        self.assertGreater(seen_time_remaining[0], _REQUEST_TIMEOUT_S / 2)
        # Check if there is no timeout, the time_remaining will be None
        self._adhoc_handlers.set_adhoc_handler(log_time_remaining)
        await self._channel.unary_unary(ADHOC_METHOD)(_REQUEST)
        self.assertIsNone(seen_time_remaining[1])


if __name__ == '__main__':
    logging.basicConfig(level=logging.DEBUG)
    unittest.main(verbosity=2)