-
Notifications
You must be signed in to change notification settings - Fork 721
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
from paho.mqtt.packettypes import PacketTypes | ||
from paho.mqtt.reasoncodes import ReasonCodes | ||
|
||
|
||
class TestReasonCode: | ||
def test_equality(self): | ||
rc_success = ReasonCodes(PacketTypes.CONNACK, "Success") | ||
assert rc_success == 0 | ||
assert rc_success == "Success" | ||
assert rc_success != "Protocol error" | ||
assert rc_success == ReasonCodes(PacketTypes.CONNACK, "Success") | ||
|
||
rc_protocol_error = ReasonCodes(PacketTypes.CONNACK, "Protocol error") | ||
assert rc_protocol_error == 130 | ||
assert rc_protocol_error == "Protocol error" | ||
assert rc_protocol_error != "Success" | ||
assert rc_protocol_error == ReasonCodes(PacketTypes.CONNACK, "Protocol error") | ||
|
||
def test_comparison(self): | ||
rc_success = ReasonCodes(PacketTypes.CONNACK, "Success") | ||
rc_protocol_error = ReasonCodes(PacketTypes.CONNACK, "Protocol error") | ||
|
||
assert not rc_success > 0 | ||
assert rc_protocol_error > 0 | ||
assert not rc_success != 0 | ||
assert rc_protocol_error != 0 |