You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.1 KiB
62 lines
2.1 KiB
import websocket
|
|
import logging
|
|
from signalrcore.hub_connection_builder import HubConnectionBuilder
|
|
|
|
from test.base_test_case import BaseTestCase, Urls
|
|
|
|
class TestConfiguration(BaseTestCase):
|
|
|
|
def test_bad_auth_function(self):
|
|
with self.assertRaises(TypeError):
|
|
self.connection = HubConnectionBuilder()\
|
|
.with_url(self.server_url,
|
|
options={
|
|
"verify_ssl": False,
|
|
"access_token_factory": 1234,
|
|
"headers": {
|
|
"mycustomheader": "mycustomheadervalue"
|
|
}
|
|
})
|
|
|
|
def test_bad_url(self):
|
|
with self.assertRaises(ValueError):
|
|
self.connection = HubConnectionBuilder()\
|
|
.with_url("")
|
|
|
|
def test_bad_options(self):
|
|
with self.assertRaises(TypeError):
|
|
self.connection = HubConnectionBuilder()\
|
|
.with_url(self.server_url,
|
|
options=["ssl", True])
|
|
|
|
def test_auth_configured(self):
|
|
with self.assertRaises(TypeError):
|
|
hub = HubConnectionBuilder()\
|
|
.with_url(self.server_url,
|
|
options={
|
|
"verify_ssl": False,
|
|
"headers": {
|
|
"mycustomheader": "mycustomheadervalue"
|
|
}
|
|
})
|
|
hub.has_auth_configured = True
|
|
hub.options["access_token_factory"] = ""
|
|
conn = hub.build()
|
|
|
|
def test_enable_trace(self):
|
|
hub = HubConnectionBuilder()\
|
|
.with_url(self.server_url, options={"verify_ssl":False})\
|
|
.configure_logging(logging.WARNING, socket_trace=True)\
|
|
.with_automatic_reconnect({
|
|
"type": "raw",
|
|
"keep_alive_interval": 10,
|
|
"reconnect_interval": 5,
|
|
"max_attempts": 5
|
|
})\
|
|
.build()
|
|
hub.on_open(self.on_open)
|
|
hub.on_close(self.on_close)
|
|
hub.start()
|
|
self.assertTrue(websocket.isEnabledForDebug())
|
|
websocket.enableTrace(False)
|
|
hub.stop() |