aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests/tests
diff options
context:
space:
mode:
authorGravatar Nathaniel Manista <nathaniel@google.com>2017-01-20 21:05:47 +0000
committerGravatar Nathaniel Manista <nathaniel@google.com>2017-01-20 23:14:46 +0000
commit7d561a6328caedaf7404af8d9015e465d3630810 (patch)
tree56da49e0bef8f78ba7b8c2c4c863aac187b36e22 /src/python/grpcio_tests/tests
parent00ac6288fd5be1100310fcead8f46d199da4c823 (diff)
Fix grpc._server._Context.time_remaining
A weak test is included; proper test coverage will come later.
Diffstat (limited to 'src/python/grpcio_tests/tests')
-rw-r--r--src/python/grpcio_tests/tests/unit/_rpc_test.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/python/grpcio_tests/tests/unit/_rpc_test.py b/src/python/grpcio_tests/tests/unit/_rpc_test.py
index 2cf6dfea62..2b1c85a82d 100644
--- a/src/python/grpcio_tests/tests/unit/_rpc_test.py
+++ b/src/python/grpcio_tests/tests/unit/_rpc_test.py
@@ -81,6 +81,11 @@ class _Handler(object):
servicer_context.set_trailing_metadata(((
'testkey',
'testvalue',),))
+ # TODO(https://github.com/grpc/grpc/issues/8483): test the values
+ # returned by these methods rather than only "smoke" testing that
+ # the return after having been called.
+ servicer_context.is_active()
+ servicer_context.time_remaining()
return request
def handle_unary_stream(self, request, servicer_context):