| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- %%%-----------------------------------------------------------------------------
- %%% @Copyright (C) 2012-2015, Feng Lee <feng@emqtt.io>
- %%%
- %%% Permission is hereby granted, free of charge, to any person obtaining a copy
- %%% of this software and associated documentation files (the "Software"), to deal
- %%% in the Software without restriction, including without limitation the rights
- %%% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- %%% copies of the Software, and to permit persons to whom the Software is
- %%% furnished to do so, subject to the following conditions:
- %%%
- %%% The above copyright notice and this permission notice shall be included in all
- %%% copies or substantial portions of the Software.
- %%%
- %%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- %%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- %%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- %%% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- %%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- %%% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- %%% SOFTWARE.
- %%%-----------------------------------------------------------------------------
- %%% @doc
- %%% emqttd_serializer tests.
- %%%
- %%% @end
- %%%-----------------------------------------------------------------------------
- -module(emqttd_serializer_tests).
- -ifdef(TEST).
- -include("emqttd_protocol.hrl").
- -include_lib("eunit/include/eunit.hrl").
- -import(emqttd_serializer, [serialize/1]).
- serialize_connect_test() ->
- serialize(?CONNECT_PACKET(#mqtt_packet_connect{})).
- serialize_connack_test() ->
- ConnAck = #mqtt_packet{header = #mqtt_packet_header{type = ?CONNACK},
- variable = #mqtt_packet_connack{ack_flags = 0, return_code = 0}},
- ?assertEqual(<<32,2,0,0>>, serialize(ConnAck)).
- serialize_publish_test() ->
- serialize(?PUBLISH_PACKET(?QOS_0, <<"Topic">>, undefined, <<"Payload">>)),
- serialize(?PUBLISH_PACKET(?QOS_1, <<"Topic">>, 938, <<"Payload">>)).
- serialize_puback_test() ->
- serialize(?PUBACK_PACKET(?PUBACK, 10384)).
- serialize_pubrel_test() ->
- serialize(?PUBREL_PACKET(10384)).
- serialize_subscribe_test() ->
- TopicTable = [{<<"TopicQos0">>, ?QOS_0}, {<<"TopicQos1">>, ?QOS_1}, {<<"TopicQos2">>, ?QOS_2}],
- serialize(?SUBSCRIBE_PACKET(10, TopicTable)).
- serialize_suback_test() ->
- serialize(?SUBACK_PACKET(10, [?QOS_0, ?QOS_1, 128])).
- serialize_unsubscribe_test() ->
- serialize(?UNSUBSCRIBE_PACKET(10, [<<"Topic1">>, <<"Topic2">>])).
- serialize_unsuback_test() ->
- serialize(?UNSUBACK_PACKET(10)).
- serialize_pingreq_test() ->
- serialize(?PACKET(?PINGREQ)).
- serialize_pingresp_test() ->
- serialize(?PACKET(?PINGRESP)).
- serialize_disconnect_test() ->
- serialize(?PACKET(?DISCONNECT)).
- -endif.
|