1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 23:06:38 +02:00

irc: use parsed command parameters in "344" command callback

This commit is contained in:
Sébastien Helleu
2021-10-16 11:51:54 +02:00
parent 741343e9aa
commit 5546b0af0e
2 changed files with 19 additions and 8 deletions
+8 -4
View File
@@ -2915,20 +2915,24 @@ TEST(IrcProtocolWithServer, 344)
{
SRV_INIT_JOIN;
/* not enough arguments */
/* not enough parameters */
RECV(":server 344");
CHECK_ERROR_ARGS("344", 2, 5);
CHECK_ERROR_PARAMS("344", 0, 3);
RECV(":server 344 alice");
CHECK_ERROR_ARGS("344", 3, 5);
CHECK_ERROR_PARAMS("344", 1, 3);
RECV(":server 344 alice #test");
CHECK_ERROR_ARGS("344", 4, 5);
CHECK_ERROR_PARAMS("344", 2, 3);
RECV(":server 344 alice #test nick!user@host");
CHECK_SRV("-- Channel reop #test: nick!user@host");
RECV(":server 344 alice #test :nick!user@host");
CHECK_SRV("-- Channel reop #test: nick!user@host");
/* channel not found */
RECV(":server 344 alice #xyz nick!user@host");
CHECK_SRV("-- Channel reop #xyz: nick!user@host");
RECV(":server 344 alice #xyz :nick!user@host");
CHECK_SRV("-- Channel reop #xyz: nick!user@host");
}
/*