2015-09-27 19:17:42 +00:00
|
|
|
# Copyright (c) 2015 Nicolas JOUANIN
|
|
|
|
#
|
|
|
|
# See the file license.txt for copying permission.
|
|
|
|
import unittest
|
|
|
|
import asyncio
|
2015-09-27 19:39:43 +00:00
|
|
|
import os
|
2015-09-27 19:17:42 +00:00
|
|
|
import logging
|
2015-10-07 20:42:04 +00:00
|
|
|
from hbmqtt.client import MQTTClient, ConnectException
|
2016-05-31 19:40:10 +00:00
|
|
|
from hbmqtt.broker import Broker
|
2015-09-27 20:07:09 +00:00
|
|
|
from hbmqtt.mqtt.constants import *
|
2015-09-27 19:17:42 +00:00
|
|
|
|
|
|
|
formatter = "[%(asctime)s] %(name)s {%(filename)s:%(lineno)d} %(levelname)s - %(message)s"
|
|
|
|
logging.basicConfig(level=logging.DEBUG, format=formatter)
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
2016-05-31 19:40:10 +00:00
|
|
|
broker_config = {
|
|
|
|
'listeners': {
|
|
|
|
'default': {
|
|
|
|
'type': 'tcp',
|
|
|
|
'bind': 'localhost:1883',
|
|
|
|
'max_connections': 10
|
|
|
|
},
|
|
|
|
'ws': {
|
|
|
|
'type': 'ws',
|
|
|
|
'bind': 'localhost:8080',
|
|
|
|
'max_connections': 10
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'sys_interval': 0,
|
|
|
|
'auth': {
|
|
|
|
'allow-anonymous': True,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-27 19:17:42 +00:00
|
|
|
|
|
|
|
class MQTTClientTest(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.loop = asyncio.new_event_loop()
|
|
|
|
asyncio.set_event_loop(self.loop)
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
self.loop.close()
|
|
|
|
|
|
|
|
def test_connect_tcp(self):
|
2015-11-01 14:58:20 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def test_coro():
|
2015-09-27 19:17:42 +00:00
|
|
|
try:
|
|
|
|
client = MQTTClient()
|
2015-11-01 14:58:20 +00:00
|
|
|
ret = yield from client.connect('mqtt://test.mosquitto.org/')
|
2015-09-27 19:17:42 +00:00
|
|
|
self.assertIsNotNone(client.session)
|
2015-11-01 14:58:20 +00:00
|
|
|
yield from client.disconnect()
|
2015-09-27 19:17:42 +00:00
|
|
|
future.set_result(True)
|
|
|
|
except Exception as ae:
|
|
|
|
future.set_exception(ae)
|
|
|
|
|
|
|
|
future = asyncio.Future(loop=self.loop)
|
|
|
|
self.loop.run_until_complete(test_coro())
|
|
|
|
if future.exception():
|
|
|
|
raise future.exception()
|
|
|
|
|
|
|
|
def test_connect_tcp_secure(self):
|
2015-11-01 14:58:20 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def test_coro():
|
2015-09-27 19:17:42 +00:00
|
|
|
try:
|
|
|
|
client = MQTTClient()
|
2015-09-27 19:39:43 +00:00
|
|
|
ca = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'mosquitto.org.crt')
|
2015-11-01 14:58:20 +00:00
|
|
|
ret = yield from client.connect('mqtts://test.mosquitto.org/', cafile=ca)
|
2015-09-27 19:17:42 +00:00
|
|
|
self.assertIsNotNone(client.session)
|
2015-11-01 14:58:20 +00:00
|
|
|
yield from client.disconnect()
|
2015-09-27 19:17:42 +00:00
|
|
|
future.set_result(True)
|
|
|
|
except Exception as ae:
|
|
|
|
future.set_exception(ae)
|
|
|
|
|
|
|
|
future = asyncio.Future(loop=self.loop)
|
|
|
|
self.loop.run_until_complete(test_coro())
|
|
|
|
if future.exception():
|
|
|
|
raise future.exception()
|
|
|
|
|
|
|
|
def test_connect_tcp_failure(self):
|
2015-11-01 14:58:20 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def test_coro():
|
2015-09-27 19:17:42 +00:00
|
|
|
try:
|
2015-10-07 20:42:04 +00:00
|
|
|
config = {'auto_reconnect': False}
|
|
|
|
client = MQTTClient(config=config)
|
2015-11-01 14:58:20 +00:00
|
|
|
ret = yield from client.connect('mqtt://localhost/')
|
2015-10-07 20:42:04 +00:00
|
|
|
except ConnectException as e:
|
2015-09-27 19:17:42 +00:00
|
|
|
future.set_result(True)
|
|
|
|
|
|
|
|
future = asyncio.Future(loop=self.loop)
|
|
|
|
self.loop.run_until_complete(test_coro())
|
|
|
|
if future.exception():
|
|
|
|
raise future.exception()
|
|
|
|
|
|
|
|
def test_connect_ws(self):
|
2015-11-01 14:58:20 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def test_coro():
|
2015-09-27 19:17:42 +00:00
|
|
|
try:
|
2016-05-31 19:40:10 +00:00
|
|
|
broker = Broker(broker_config, plugin_namespace="hbmqtt.test.plugins")
|
|
|
|
yield from broker.start()
|
2015-09-27 19:17:42 +00:00
|
|
|
client = MQTTClient()
|
2016-05-31 19:40:10 +00:00
|
|
|
yield from client.connect('ws://localhost:8080/')
|
2015-09-27 19:17:42 +00:00
|
|
|
self.assertIsNotNone(client.session)
|
2015-11-01 14:58:20 +00:00
|
|
|
yield from client.disconnect()
|
2016-05-31 19:40:10 +00:00
|
|
|
yield from broker.shutdown()
|
2015-09-27 19:17:42 +00:00
|
|
|
future.set_result(True)
|
|
|
|
except Exception as ae:
|
|
|
|
future.set_exception(ae)
|
|
|
|
|
|
|
|
future = asyncio.Future(loop=self.loop)
|
|
|
|
self.loop.run_until_complete(test_coro())
|
|
|
|
if future.exception():
|
|
|
|
raise future.exception()
|
|
|
|
|
|
|
|
def test_connect_ws_secure(self):
|
2015-11-01 14:58:20 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def test_coro():
|
2015-09-27 19:17:42 +00:00
|
|
|
try:
|
|
|
|
client = MQTTClient()
|
2015-09-27 19:39:43 +00:00
|
|
|
ca = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'mosquitto.org.crt')
|
2015-11-01 14:58:20 +00:00
|
|
|
yield from client.connect('wss://test.mosquitto.org:8081/', cafile=ca)
|
2015-09-27 19:17:42 +00:00
|
|
|
self.assertIsNotNone(client.session)
|
2015-11-01 14:58:20 +00:00
|
|
|
yield from client.disconnect()
|
2015-09-27 19:17:42 +00:00
|
|
|
future.set_result(True)
|
|
|
|
except Exception as ae:
|
|
|
|
future.set_exception(ae)
|
|
|
|
|
|
|
|
future = asyncio.Future(loop=self.loop)
|
|
|
|
self.loop.run_until_complete(test_coro())
|
|
|
|
if future.exception():
|
|
|
|
raise future.exception()
|
|
|
|
|
|
|
|
def test_ping(self):
|
2015-11-01 14:58:20 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def test_coro():
|
2015-09-27 19:17:42 +00:00
|
|
|
try:
|
2016-05-31 19:40:10 +00:00
|
|
|
broker = Broker(broker_config, plugin_namespace="hbmqtt.test.plugins")
|
|
|
|
yield from broker.start()
|
2015-09-27 19:17:42 +00:00
|
|
|
client = MQTTClient()
|
2016-05-31 19:40:10 +00:00
|
|
|
ret = yield from client.connect('mqtt://localhost/')
|
2015-09-27 19:17:42 +00:00
|
|
|
self.assertIsNotNone(client.session)
|
2015-11-01 14:58:20 +00:00
|
|
|
yield from client.ping()
|
|
|
|
yield from client.disconnect()
|
2016-05-31 19:40:10 +00:00
|
|
|
yield from broker.shutdown()
|
2015-09-27 19:17:42 +00:00
|
|
|
future.set_result(True)
|
|
|
|
except Exception as ae:
|
|
|
|
future.set_exception(ae)
|
|
|
|
|
|
|
|
future = asyncio.Future(loop=self.loop)
|
|
|
|
self.loop.run_until_complete(test_coro())
|
|
|
|
if future.exception():
|
|
|
|
raise future.exception()
|
2015-09-27 20:07:09 +00:00
|
|
|
|
|
|
|
def test_subscribe(self):
|
2015-11-01 14:58:20 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def test_coro():
|
2015-09-27 20:07:09 +00:00
|
|
|
try:
|
2016-05-31 19:40:10 +00:00
|
|
|
broker = Broker(broker_config, plugin_namespace="hbmqtt.test.plugins")
|
|
|
|
yield from broker.start()
|
2015-09-27 20:07:09 +00:00
|
|
|
client = MQTTClient()
|
2016-05-31 19:40:10 +00:00
|
|
|
yield from client.connect('mqtt://localhost/')
|
2015-09-27 20:07:09 +00:00
|
|
|
self.assertIsNotNone(client.session)
|
2015-11-01 14:58:20 +00:00
|
|
|
ret = yield from client.subscribe([
|
2015-09-27 20:07:09 +00:00
|
|
|
('$SYS/broker/uptime', QOS_0),
|
|
|
|
('$SYS/broker/uptime', QOS_1),
|
|
|
|
('$SYS/broker/uptime', QOS_2),
|
|
|
|
])
|
|
|
|
self.assertEquals(ret[0], QOS_0)
|
|
|
|
self.assertEquals(ret[1], QOS_1)
|
|
|
|
self.assertEquals(ret[2], QOS_2)
|
2015-11-01 14:58:20 +00:00
|
|
|
yield from client.disconnect()
|
2016-05-31 19:40:10 +00:00
|
|
|
yield from broker.shutdown()
|
2015-09-27 20:07:09 +00:00
|
|
|
future.set_result(True)
|
|
|
|
except Exception as ae:
|
|
|
|
future.set_exception(ae)
|
|
|
|
|
|
|
|
future = asyncio.Future(loop=self.loop)
|
|
|
|
self.loop.run_until_complete(test_coro())
|
|
|
|
if future.exception():
|
|
|
|
raise future.exception()
|
|
|
|
|
|
|
|
def test_unsubscribe(self):
|
2015-11-01 14:58:20 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def test_coro():
|
2015-09-27 20:07:09 +00:00
|
|
|
try:
|
2016-05-31 19:40:10 +00:00
|
|
|
broker = Broker(broker_config, plugin_namespace="hbmqtt.test.plugins")
|
|
|
|
yield from broker.start()
|
2015-09-27 20:07:09 +00:00
|
|
|
client = MQTTClient()
|
2016-05-31 19:40:10 +00:00
|
|
|
yield from client.connect('mqtt://localhost/')
|
2015-09-27 20:07:09 +00:00
|
|
|
self.assertIsNotNone(client.session)
|
2015-11-01 14:58:20 +00:00
|
|
|
ret = yield from client.subscribe([
|
2015-09-27 20:07:09 +00:00
|
|
|
('$SYS/broker/uptime', QOS_0),
|
|
|
|
])
|
|
|
|
self.assertEquals(ret[0], QOS_0)
|
2015-11-01 14:58:20 +00:00
|
|
|
yield from client.unsubscribe(['$SYS/broker/uptime'])
|
|
|
|
yield from client.disconnect()
|
2016-05-31 19:40:10 +00:00
|
|
|
yield from broker.shutdown()
|
|
|
|
future.set_result(True)
|
|
|
|
except Exception as ae:
|
|
|
|
future.set_exception(ae)
|
|
|
|
|
|
|
|
future = asyncio.Future(loop=self.loop)
|
|
|
|
self.loop.run_until_complete(test_coro())
|
|
|
|
if future.exception():
|
|
|
|
raise future.exception()
|
|
|
|
|
|
|
|
def test_deliver(self):
|
|
|
|
data = b'data'
|
|
|
|
@asyncio.coroutine
|
|
|
|
def test_coro():
|
|
|
|
try:
|
|
|
|
broker = Broker(broker_config, plugin_namespace="hbmqtt.test.plugins")
|
|
|
|
yield from broker.start()
|
|
|
|
client = MQTTClient()
|
|
|
|
yield from client.connect('mqtt://localhost/')
|
|
|
|
self.assertIsNotNone(client.session)
|
|
|
|
ret = yield from client.subscribe([
|
|
|
|
('test_topic', QOS_0),
|
|
|
|
])
|
|
|
|
self.assertEquals(ret[0], QOS_0)
|
|
|
|
client_pub = MQTTClient()
|
|
|
|
yield from client_pub.connect('mqtt://localhost/')
|
|
|
|
yield from client_pub.publish('test_topic', data, QOS_0)
|
|
|
|
yield from client_pub.disconnect()
|
|
|
|
message = yield from client.deliver_message()
|
|
|
|
self.assertIsNotNone(message)
|
|
|
|
self.assertIsNotNone(message.publish_packet)
|
|
|
|
self.assertEquals(message.data, data)
|
|
|
|
yield from client.unsubscribe(['$SYS/broker/uptime'])
|
|
|
|
yield from client.disconnect()
|
|
|
|
yield from broker.shutdown()
|
|
|
|
future.set_result(True)
|
|
|
|
except Exception as ae:
|
|
|
|
future.set_exception(ae)
|
|
|
|
|
|
|
|
future = asyncio.Future(loop=self.loop)
|
|
|
|
self.loop.run_until_complete(test_coro())
|
|
|
|
if future.exception():
|
|
|
|
raise future.exception()
|
|
|
|
|
|
|
|
def test_deliver_timeout(self):
|
|
|
|
@asyncio.coroutine
|
|
|
|
def test_coro():
|
|
|
|
try:
|
|
|
|
broker = Broker(broker_config, plugin_namespace="hbmqtt.test.plugins")
|
|
|
|
yield from broker.start()
|
|
|
|
client = MQTTClient()
|
|
|
|
yield from client.connect('mqtt://localhost/')
|
|
|
|
self.assertIsNotNone(client.session)
|
|
|
|
ret = yield from client.subscribe([
|
|
|
|
('test_topic', QOS_0),
|
|
|
|
])
|
|
|
|
self.assertEquals(ret[0], QOS_0)
|
|
|
|
with self.assertRaises(asyncio.TimeoutError):
|
|
|
|
message = yield from client.deliver_message(timeout=2)
|
|
|
|
yield from client.unsubscribe(['$SYS/broker/uptime'])
|
|
|
|
yield from client.disconnect()
|
|
|
|
yield from broker.shutdown()
|
2015-09-27 20:07:09 +00:00
|
|
|
future.set_result(True)
|
|
|
|
except Exception as ae:
|
|
|
|
future.set_exception(ae)
|
|
|
|
|
|
|
|
future = asyncio.Future(loop=self.loop)
|
|
|
|
self.loop.run_until_complete(test_coro())
|
|
|
|
if future.exception():
|
|
|
|
raise future.exception()
|