test1198/9: add two mqtt publish tests without payload lengths

Closes #6335
This commit is contained in:
Daniel Stenberg 2020-12-17 10:14:14 +01:00
parent 30fc1cc7db
commit 3abfadfc19
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
3 changed files with 110 additions and 1 deletions

54
tests/data/test1198 Normal file
View file

@ -0,0 +1,54 @@
<testcase>
<info>
<keywords>
MQTT
MQTT SUBSCRIBE
</keywords>
</info>
#
# Server-side
<reply>
<data nocheck="yes">
hello
</data>
<datacheck hex="yes">
00 04 31 31 39 30 68 65 6c 6c 6f 5b 4c 46 5d 0a
</datacheck>
</reply>
#
# Client-side
<client>
<features>
mqtt
</features>
<server>
mqtt
</server>
<name>
MQTT PUBLISH empty payload, single space topic
</name>
<command option="binary-trace">
"mqtt:/%HOSTIP:%MQTTPORT/ " -d ""
</command>
</client>
#
# Verify data after the test has been "shot"
<verify>
# These are hexadecimal protocol dumps from the client
#
# Strip out the random part of the client id from the CONNECT message
# before comparison
<strippart>
s/^(.* 00044d5154540402003c000c6375726c).*/$1/
</strippart>
<protocol>
client CONNECT 18 00044d5154540402003c000c6375726c
server CONNACK 2 20020000
client PUBLISH 3 000120
client DISCONNECT 0 e000
</protocol>
</verify>
</testcase>