mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-05-21 12:24:29 +02:00
24 lines
732 B
Python
Executable file
24 lines
732 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
# Test whether a client subscribed to a topic receives its own message sent to that topic.
|
|
# Does the Content Type property get sent through?
|
|
# MQTT v5
|
|
|
|
import prop_subpub_helper as helper
|
|
from mosq_test_helper import *
|
|
|
|
def do_test(start_broker):
|
|
props_out = mqtt5_props.gen_string_prop(mqtt5_props.CONTENT_TYPE, "text")
|
|
props_out = props_out+mqtt5_props.gen_uint16_prop(mqtt5_props.TOPIC_ALIAS, 1)
|
|
|
|
props_in = mqtt5_props.gen_string_prop(mqtt5_props.CONTENT_TYPE, "text")
|
|
|
|
return helper.prop_subpub_helper(start_broker, "12-prop-subpub-content-type", props_out, props_in)
|
|
|
|
|
|
def all_tests(start_broker=False):
|
|
return do_test(start_broker)
|
|
|
|
if __name__ == '__main__':
|
|
all_tests(True)
|