| Index: third_party/grpc/src/python/grpcio/tests/unit/_sanity/_sanity_test.py
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py b/third_party/grpc/src/python/grpcio/tests/unit/_sanity/_sanity_test.py
|
| similarity index 67%
|
| copy from third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py
|
| copy to third_party/grpc/src/python/grpcio/tests/unit/_sanity/_sanity_test.py
|
| index 1b02d66267e294ce83977dac64f075981705647c..0a5a715c0e1c66bfcff7a05cbcb9238941e2e4aa 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py
|
| +++ b/third_party/grpc/src/python/grpcio/tests/unit/_sanity/_sanity_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,27 @@
|
| # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
| +import json
|
| +import unittest
|
|
|
| -import logging
|
| -_GOODBYE_MESSAGE = u'Goodbye'
|
| +import tests
|
|
|
|
|
| -def web_socket_do_extra_handshake(request):
|
| - pass # Always accept.
|
| +class Sanity(unittest.TestCase):
|
|
|
| + def testTestsJsonUpToDate(self):
|
| + """Autodiscovers all test suites and checks that tests.json is up to date"""
|
| + loader = tests.Loader()
|
| + loader.loadTestsFromNames(['tests'])
|
| + test_suite_names = [
|
| + test_case_class.id().rsplit('.', 1)[0]
|
| + for test_case_class in tests._loader.iterate_suite_cases(loader.suite)]
|
| + test_suite_names = sorted(set(test_suite_names))
|
|
|
| -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)
|
| + with open('src/python/grpcio/tests/tests.json') as tests_json_file:
|
| + tests_json = json.load(tests_json_file)
|
| + self.assertListEqual(test_suite_names, tests_json)
|
|
|
|
|
| -def web_socket_passive_closing_handshake(request):
|
| - return request.ws_close_code, request.ws_close_reason
|
| +if __name__ == '__main__':
|
| + unittest.main(verbosity=2)
|
|
|