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:
@@ -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");
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user