|
@@ -12,7 +12,8 @@ import intertechno_cc1101_mqtt
|
|
|
|
|
|
@pytest.mark.parametrize("mqtt_host", ["mqtt-broker.local"])
|
|
|
@pytest.mark.parametrize("mqtt_port", [1833])
|
|
|
-def test__run(caplog, mqtt_host, mqtt_port):
|
|
|
+@pytest.mark.parametrize("power_setting", [0xC6, 0x34])
|
|
|
+def test__run(caplog, mqtt_host, mqtt_port, power_setting):
|
|
|
with unittest.mock.patch(
|
|
|
"paho.mqtt.client.Client"
|
|
|
) as mqtt_client_mock, caplog.at_level(logging.DEBUG):
|
|
@@ -22,13 +23,14 @@ def test__run(caplog, mqtt_host, mqtt_port):
|
|
|
mqtt_username=None,
|
|
|
mqtt_password=None,
|
|
|
alias_file_path=None,
|
|
|
+ power_setting=power_setting,
|
|
|
)
|
|
|
assert mqtt_client_mock.call_count == 1
|
|
|
assert not mqtt_client_mock.call_args[0]
|
|
|
assert set(mqtt_client_mock.call_args[1]) == {"userdata"}
|
|
|
event_userdata = mqtt_client_mock.call_args[1]["userdata"]
|
|
|
assert event_userdata.aliases == {}
|
|
|
- assert event_userdata.power_setting == 0xC6
|
|
|
+ assert event_userdata.power_setting == power_setting
|
|
|
assert not mqtt_client_mock().username_pw_set.called
|
|
|
mqtt_client_mock().connect.assert_called_once_with(host=mqtt_host, port=mqtt_port)
|
|
|
mqtt_client_mock().socket().getpeername.return_value = (mqtt_host, mqtt_port)
|
|
@@ -69,6 +71,7 @@ def test__run_authentication(mqtt_host, mqtt_port, mqtt_username, mqtt_password)
|
|
|
mqtt_username=mqtt_username,
|
|
|
mqtt_password=mqtt_password,
|
|
|
alias_file_path=None,
|
|
|
+ power_setting=0xC6,
|
|
|
)
|
|
|
assert mqtt_client_mock.call_count == 1
|
|
|
mqtt_client_mock().username_pw_set.assert_called_once_with(
|
|
@@ -88,6 +91,7 @@ def test__run_authentication_missing_username(mqtt_host, mqtt_port, mqtt_passwor
|
|
|
mqtt_username=None,
|
|
|
mqtt_password=mqtt_password,
|
|
|
alias_file_path=None,
|
|
|
+ power_setting=0xC6,
|
|
|
)
|
|
|
|
|
|
|
|
@@ -107,6 +111,7 @@ def test__run_alias_file_path(caplog, tmp_path, mqtt_host, mqtt_port, aliases):
|
|
|
mqtt_username=None,
|
|
|
mqtt_password=None,
|
|
|
alias_file_path=alias_file_path,
|
|
|
+ power_setting=0xC6,
|
|
|
)
|
|
|
assert mqtt_client_mock.call_count == 1
|
|
|
event_userdata = mqtt_client_mock.call_args[1]["userdata"]
|