| Index: third_party/grpc/src/python/grpcio/tests/unit/beta/_implementations_test.py
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py b/third_party/grpc/src/python/grpcio/tests/unit/beta/_implementations_test.py
|
| similarity index 65%
|
| copy from third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py
|
| copy to third_party/grpc/src/python/grpcio/tests/unit/beta/_implementations_test.py
|
| index 1b02d66267e294ce83977dac64f075981705647c..6b32305af71dae34c65789b134c35b562f4ee28c 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py
|
| +++ b/third_party/grpc/src/python/grpcio/tests/unit/beta/_implementations_test.py
|
| @@ -1,4 +1,4 @@
|
| -# Copyright 2011, Google Inc.
|
| +# Copyright 2016, Google Inc.
|
| # All rights reserved.
|
| #
|
| # Redistribution and use in source and binary forms, with or without
|
| @@ -27,27 +27,28 @@
|
| # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
| +"""Tests the implementations module of the gRPC Python Beta API."""
|
|
|
| -import logging
|
| -_GOODBYE_MESSAGE = u'Goodbye'
|
| +import unittest
|
|
|
| +from grpc.beta import implementations
|
| +from tests.unit import resources
|
|
|
| -def web_socket_do_extra_handshake(request):
|
| - pass # Always accept.
|
|
|
| +class ChannelCredentialsTest(unittest.TestCase):
|
|
|
| -def web_socket_transfer_data(request):
|
| - while True:
|
| - line = request.ws_stream.receive_message()
|
| - if line is None:
|
| - return
|
| - if isinstance(line, unicode):
|
| - request.ws_stream.send_message(line, binary=False)
|
| - if line == _GOODBYE_MESSAGE:
|
| - return
|
| - else:
|
| - request.ws_stream.send_message(line, binary=True)
|
| + def test_runtime_provided_root_certificates(self):
|
| + channel_credentials = implementations.ssl_channel_credentials(
|
| + None, None, None)
|
| + self.assertIsInstance(
|
| + channel_credentials, implementations.ChannelCredentials)
|
| +
|
| + def test_application_provided_root_certificates(self):
|
| + channel_credentials = implementations.ssl_channel_credentials(
|
| + resources.test_root_certificates(), None, None)
|
| + self.assertIsInstance(
|
| + channel_credentials, implementations.ChannelCredentials)
|
|
|
|
|
| -def web_socket_passive_closing_handshake(request):
|
| - return request.ws_close_code, request.ws_close_reason
|
| +if __name__ == '__main__':
|
| + unittest.main(verbosity=2)
|
|
|