summaryrefslogtreecommitdiff
path: root/tests/end_to_end/scenarios/raw_names_command.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/end_to_end/scenarios/raw_names_command.py')
-rw-r--r--tests/end_to_end/scenarios/raw_names_command.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/end_to_end/scenarios/raw_names_command.py b/tests/end_to_end/scenarios/raw_names_command.py
new file mode 100644
index 0000000..09b47be
--- /dev/null
+++ b/tests/end_to_end/scenarios/raw_names_command.py
@@ -0,0 +1,13 @@
+from functions import send_stanza, expect_stanza
+
+import scenarios.simple_channel_join
+
+join_channel = scenarios.simple_channel_join.scenario
+
+scenario = (
+ join_channel,
+
+ send_stanza("<message type='chat' from='{jid_one}/{resource_one}' to='{irc_server_one}'><body>NAMES</body></message>"),
+ expect_stanza("/message/body[text()='irc.localhost: = #foo @{nick_one} ']"),
+ expect_stanza("/message/body[text()='irc.localhost: * End of /NAMES list. ']"),
+)