kopia lustrzana https://github.com/Yakifo/amqtt
24 wiersze
837 B
Python
24 wiersze
837 B
Python
![]() |
# Copyright (c) 2015 Nicolas JOUANIN
|
||
|
#
|
||
|
# See the file license.txt for copying permission.
|
||
|
import unittest
|
||
|
|
||
|
from hbmqtt.mqtt.pubrec import PubrecPacket, PubrecVariableHeader
|
||
|
from hbmqtt.codecs import *
|
||
|
|
||
|
class PubrecPacketTest(unittest.TestCase):
|
||
|
def setUp(self):
|
||
|
self.loop = asyncio.new_event_loop()
|
||
|
|
||
|
def test_from_stream(self):
|
||
|
data = b'\x50\x02\x00\x0a'
|
||
|
stream = asyncio.StreamReader(loop=self.loop)
|
||
|
stream.feed_data(data)
|
||
|
message = self.loop.run_until_complete(PubrecPacket.from_stream(stream))
|
||
|
self.assertEqual(message.variable_header.packet_id, 10)
|
||
|
|
||
|
def test_to_bytes(self):
|
||
|
variable_header = PubrecVariableHeader(10)
|
||
|
publish = PubrecPacket(variable_header=variable_header)
|
||
|
out = publish.to_bytes()
|
||
|
self.assertEqual(out, b'\x50\x02\x00\x0a')
|