Erster Stand der Hintergrundprozesse, die auf der Synology unter /volume1/homes/wagner/SolarManager laufen: der Manager selbst, die Sammler je Geraet, die MQTT-Bruecke, der Wecker und - neu hinzugezogen - der AutoAction-Runner, der als Hintergrundprozess hierher gehoert und nicht ins Web-Verzeichnis. Zugangsdaten stehen nicht mehr im Quelltext, sondern in config.ini, die nicht mit eingecheckt wird. Vorlage ist config.ini.example, gelesen wird sie von konfig.py. Betroffen waren solarManager.py (Datenbank und Wattpilot), zeit.py, gatherWaterData.py, wecker.py und skoda_testdaten.py, das sich das Passwort bisher aus dem Quelltext eines anderen Moduls herausgesucht hat. Die Kia-Anbindung ist mit dem Fahrzeug entfallen: kiaTest.py, gatherCarData.py und hyundai_kia_connect_api sind nicht mehr dabei, ebenso gatherInverterData.py, auf das nur noch eine auskommentierte Zeile zeigte. Die mitgelieferten Bibliotheken bleiben im Repository - die NAS hat kein pip, sie muessen neben den Skripten liegen. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
42 lines
1.4 KiB
Python
42 lines
1.4 KiB
Python
# Test whether a client responds correctly to a PUBLISH with QoS 1.
|
|
|
|
# The client should connect with keepalive=60, clean session set,
|
|
# and client id publish-qos1-test
|
|
# The test will send a CONNACK message to the client with rc=0. Upon receiving
|
|
# the CONNACK the client should verify that rc==0.
|
|
# The test will send the client a PUBLISH message with topic
|
|
# "pub/qos1/receive", payload of "message", QoS=1 and mid=123. The client
|
|
# should handle this as per the spec by sending a PUBACK message.
|
|
# The client should then exit with return code==0.
|
|
import tests.paho_test as paho_test
|
|
|
|
connect_packet = paho_test.gen_connect("publish-qos2-test", keepalive=60)
|
|
connack_packet = paho_test.gen_connack(rc=0)
|
|
|
|
disconnect_packet = paho_test.gen_disconnect()
|
|
|
|
mid = 13423
|
|
publish_packet = paho_test.gen_publish(
|
|
"pub/qos2/receive", qos=2, mid=mid, payload="message")
|
|
pubrec_packet = paho_test.gen_pubrec(mid=mid)
|
|
pubrel_packet = paho_test.gen_pubrel(mid=mid)
|
|
pubcomp_packet = paho_test.gen_pubcomp(mid)
|
|
|
|
|
|
def test_03_publish_b2c_qos2(server_socket, start_client):
|
|
start_client("03-publish-b2c-qos2.py")
|
|
|
|
(conn, address) = server_socket.accept()
|
|
conn.settimeout(10)
|
|
|
|
paho_test.expect_packet(conn, "connect", connect_packet)
|
|
conn.send(connack_packet)
|
|
conn.send(publish_packet)
|
|
|
|
paho_test.expect_packet(conn, "pubrec", pubrec_packet)
|
|
conn.send(pubrel_packet)
|
|
|
|
paho_test.expect_packet(conn, "pubcomp", pubcomp_packet)
|
|
|
|
conn.close()
|