/third_party/websockify/tests/test_websocketproxy.py

https://github.com/SiggyBar/emscripten · Python · 136 lines · 90 code · 31 blank · 15 comment · 8 complexity · 769d008ede4cd60bdc1cec16d723d17e MD5 · raw file

  1. # vim: tabstop=4 shiftwidth=4 softtabstop=4
  2. # Copyright(c) 2015 Red Hat, Inc All Rights Reserved.
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License"); you may
  5. # not use this file except in compliance with the License. You may obtain
  6. # a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. # License for the specific language governing permissions and limitations
  14. # under the License.
  15. """ Unit tests for websocketproxy """
  16. import unittest
  17. import unittest
  18. import socket
  19. import stubout
  20. from websockify import websocket
  21. from websockify import websocketproxy
  22. from websockify import token_plugins
  23. from websockify import auth_plugins
  24. try:
  25. from StringIO import StringIO
  26. BytesIO = StringIO
  27. except ImportError:
  28. from io import StringIO
  29. from io import BytesIO
  30. class FakeSocket(object):
  31. def __init__(self, data=''):
  32. if isinstance(data, bytes):
  33. self._data = data
  34. else:
  35. self._data = data.encode('latin_1')
  36. def recv(self, amt, flags=None):
  37. res = self._data[0:amt]
  38. if not (flags & socket.MSG_PEEK):
  39. self._data = self._data[amt:]
  40. return res
  41. def makefile(self, mode='r', buffsize=None):
  42. if 'b' in mode:
  43. return BytesIO(self._data)
  44. else:
  45. return StringIO(self._data.decode('latin_1'))
  46. class FakeServer(object):
  47. class EClose(Exception):
  48. pass
  49. def __init__(self):
  50. self.token_plugin = None
  51. self.auth_plugin = None
  52. self.wrap_cmd = None
  53. self.ssl_target = None
  54. self.unix_target = None
  55. class ProxyRequestHandlerTestCase(unittest.TestCase):
  56. def setUp(self):
  57. super(ProxyRequestHandlerTestCase, self).setUp()
  58. self.stubs = stubout.StubOutForTesting()
  59. self.handler = websocketproxy.ProxyRequestHandler(
  60. FakeSocket(''), "127.0.0.1", FakeServer())
  61. self.handler.path = "https://localhost:6080/websockify?token=blah"
  62. self.handler.headers = None
  63. self.stubs.Set(websocket.WebSocketServer, 'socket',
  64. staticmethod(lambda *args, **kwargs: None))
  65. def tearDown(self):
  66. self.stubs.UnsetAll()
  67. super(ProxyRequestHandlerTestCase, self).tearDown()
  68. def test_get_target(self):
  69. class TestPlugin(token_plugins.BasePlugin):
  70. def lookup(self, token):
  71. return ("some host", "some port")
  72. host, port = self.handler.get_target(
  73. TestPlugin(None), self.handler.path)
  74. self.assertEqual(host, "some host")
  75. self.assertEqual(port, "some port")
  76. def test_get_target_raises_error_on_unknown_token(self):
  77. class TestPlugin(token_plugins.BasePlugin):
  78. def lookup(self, token):
  79. return None
  80. self.assertRaises(FakeServer.EClose, self.handler.get_target,
  81. TestPlugin(None), "https://localhost:6080/websockify?token=blah")
  82. def test_token_plugin(self):
  83. class TestPlugin(token_plugins.BasePlugin):
  84. def lookup(self, token):
  85. return (self.source + token).split(',')
  86. self.stubs.Set(websocketproxy.ProxyRequestHandler, 'send_auth_error',
  87. staticmethod(lambda *args, **kwargs: None))
  88. self.handler.server.token_plugin = TestPlugin("somehost,")
  89. self.handler.validate_connection()
  90. self.assertEqual(self.handler.server.target_host, "somehost")
  91. self.assertEqual(self.handler.server.target_port, "blah")
  92. def test_auth_plugin(self):
  93. class TestPlugin(auth_plugins.BasePlugin):
  94. def authenticate(self, headers, target_host, target_port):
  95. if target_host == self.source:
  96. raise auth_plugins.AuthenticationError(response_msg="some_error")
  97. self.stubs.Set(websocketproxy.ProxyRequestHandler, 'send_auth_error',
  98. staticmethod(lambda *args, **kwargs: None))
  99. self.handler.server.auth_plugin = TestPlugin("somehost")
  100. self.handler.server.target_host = "somehost"
  101. self.handler.server.target_port = "someport"
  102. self.assertRaises(auth_plugins.AuthenticationError,
  103. self.handler.validate_connection)
  104. self.handler.server.target_host = "someotherhost"
  105. self.handler.validate_connection()