mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
test the ACK message
This commit is contained in:
@ -286,16 +286,12 @@ class LabeledResponsesTestCase(cases.BaseServerTestCase, cases.OptionalityHelper
|
|||||||
# PONG never receives a response
|
# PONG never receives a response
|
||||||
self.sendLine(1, '@draft/label=98765 PONG adhoctestline')
|
self.sendLine(1, '@draft/label=98765 PONG adhoctestline')
|
||||||
|
|
||||||
# "If no response is required, an empty batch MUST be sent."
|
# draft/labeled-response-0.2: "Servers MUST respond with a labeled
|
||||||
# https://ircv3.net/specs/extensions/labeled-response-0.2.html
|
# `ACK` message when a client sends a labeled command that normally
|
||||||
|
# produces no response."
|
||||||
ms = self.getMessages(1)
|
ms = self.getMessages(1)
|
||||||
self.assertEqual(len(ms), 2)
|
self.assertEqual(len(ms), 1)
|
||||||
batch_start, batch_end = ms
|
ack = ms[0]
|
||||||
|
|
||||||
self.assertEqual(batch_start.command, 'BATCH')
|
self.assertEqual(ack.command, 'ACK')
|
||||||
self.assertEqual(batch_start.tags.get('draft/label'), '98765')
|
self.assertEqual(ack.tags.get('draft/label'), '98765')
|
||||||
self.assertTrue(batch_start.params[0].startswith('+'))
|
|
||||||
batch_id = batch_start.params[0][1:]
|
|
||||||
|
|
||||||
self.assertEqual(batch_end.command, 'BATCH')
|
|
||||||
self.assertEqual(batch_end.params[0], '-' + batch_id)
|
|
||||||
|
Reference in New Issue
Block a user