Skip to content

Commit

Permalink
Merge pull request #2230 from forslund/bugfix/message-bus-build-url
Browse files Browse the repository at this point in the history
Bugfix/message bus build url
  • Loading branch information
forslund committed Jul 24, 2019
2 parents 998697b + b4c99b8 commit dbf0da6
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 3 deletions.
14 changes: 11 additions & 3 deletions mycroft/messagebus/client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,19 @@ def __init__(self, host=None, port=None, route=None, ssl=None):
self.connected_event = Event()
self.started_running = False

@staticmethod
def build_url(host, port, route, ssl):
return '{scheme}://{host}:{port}{route}'.format(
scheme='wss' if ssl else 'ws',
host=host,
port=str(port),
route=route)

def create_client(self):
url = '{scheme}://{host}:{port}{route}'.format(
scheme='wss' if self.config.ssl else 'ws',
url = MessageBusClient.build_url(
ssl=self.config.ssl,
host=self.config.host,
port=str(self.config.port),
port=self.config.port,
route=self.config.route
)
return WebSocketApp(
Expand Down
39 changes: 39 additions & 0 deletions test/unittests/messagebus/client/test_client.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Copyright 2019 Mycroft AI Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from mock import patch

from mycroft.messagebus.client import MessageBusClient

WS_CONF = {
'websocket': {
"host": "testhost",
"port": 1337,
"route": "/core",
"ssl": False
}
}


class TestMessageBusClient:
def test_build_url(self):
url = MessageBusClient.build_url('localhost', 1337, '/core', False)
assert url == 'ws://localhost:1337/core'
ssl_url = MessageBusClient.build_url('sslhost', 443, '/core', True)
assert ssl_url == 'wss://sslhost:443/core'

@patch('mycroft.configuration.Configuration.get', return_value=WS_CONF)
def test_create_client(self, mock_conf):
mc = MessageBusClient()
assert mc.client.url == 'ws://testhost:1337/core'

0 comments on commit dbf0da6

Please sign in to comment.