Go to the source code of this file.
Namespaces | |
tests.unit._rpc_test_helpers | |
Variables | |
tests.unit._rpc_test_helpers._DESERIALIZE_REQUEST = lambda bytestring: bytestring[len(bytestring) // 2:] | |
tests.unit._rpc_test_helpers._DESERIALIZE_RESPONSE = lambda bytestring: bytestring[:len(bytestring) // 3] | |
int | tests.unit._rpc_test_helpers._SERIALIZE_REQUEST = lambda bytestring: bytestring * 2 |
int | tests.unit._rpc_test_helpers._SERIALIZE_RESPONSE = lambda bytestring: bytestring * 3 |
string | tests.unit._rpc_test_helpers._STREAM_STREAM = '/test/StreamStream' |
string | tests.unit._rpc_test_helpers._STREAM_STREAM_NON_BLOCKING = '/test/StreamStreamNonBlocking' |
string | tests.unit._rpc_test_helpers._STREAM_UNARY = '/test/StreamUnary' |
string | tests.unit._rpc_test_helpers._UNARY_STREAM = '/test/UnaryStream' |
string | tests.unit._rpc_test_helpers._UNARY_STREAM_NON_BLOCKING = '/test/UnaryStreamNonBlocking' |
string | tests.unit._rpc_test_helpers._UNARY_UNARY = '/test/UnaryUnary' |
tests.unit._rpc_test_helpers.TIMEOUT_SHORT = datetime.timedelta(seconds=4).total_seconds() | |