diff options
| author | Mistivia <i@mistivia.com> | 2025-11-05 15:34:49 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-11-05 15:34:49 +0800 |
| commit | 95caa5bdaff4e5b5a924a9141b51c756a57abc0f (patch) | |
| tree | bb0ff8eddfe8a06558317464cea14405e76b7ebc /deprecated-ngircd/src/testsuite/kick-test.e | |
| parent | 8532af453ccc9071ddc919b063788d6b496af991 (diff) | |
remove deprecated
Diffstat (limited to 'deprecated-ngircd/src/testsuite/kick-test.e')
| -rw-r--r-- | deprecated-ngircd/src/testsuite/kick-test.e | 113 |
1 files changed, 0 insertions, 113 deletions
diff --git a/deprecated-ngircd/src/testsuite/kick-test.e b/deprecated-ngircd/src/testsuite/kick-test.e deleted file mode 100644 index a803879..0000000 --- a/deprecated-ngircd/src/testsuite/kick-test.e +++ /dev/null @@ -1,113 +0,0 @@ -# ngIRCd test suite -# KICK test - -spawn telnet 127.0.0.1 6789 -expect { - timeout { exit 1 } - "Connected" -} - -send "nick nick\r" -send "user user . . :User\r" -expect { - timeout { exit 1 } - "376" -} - -send "kick #Channel nick\r" -expect { - timeout { exit 1 } - "403" -} - -send "join #Channel\r" - -send "kick #Channel nick\r" -expect { - timeout { exit 1 } - "@* KICK #Channel nick :nick" -} - -send "join #Channel\r" - -send "kick #Channel nick :reason\r" -expect { - timeout { exit 1 } - "@* KICK #Channel nick :reason" -} - -send "join #Channel,#Channel2\r" - -send "kick #Channel,#Channel2 nick\r" -expect { - timeout { exit 1 } - "461" -} - -send "kick #Channel,#Channel2,#NoExists,#NoExists nick1,nick,nick3,nick :reason\r" -expect { - timeout { exit 1 } - "401" -} -expect { - timeout { exit 1 } - "@* KICK #Channel2 nick :reason" -} -expect { - timeout { exit 1 } - "401" -} -expect { - timeout { exit 1 } - "403" -} - -send "kick #Channel nick2,nick,nick3\r" -expect { - timeout { exit 1 } - "401" -} -expect { - timeout { exit 1 } - "@* KICK #Channel nick :nick" -} -expect { - timeout { exit 1 } - "401" -} - -send "kick #Channel ,,\r" -expect { - timeout { exit 1 } - "401" -} -expect { - timeout { exit 1 } - "401" -} - -send "kick ,, ,,,\r" -expect { - timeout { exit 1 } - "461" -} - -send "kick ,, ,,\r" -expect { - timeout { exit 1 } - "401" -} -expect { - timeout { exit 1 } - "401" -} -expect { - timeout { exit 1 } - "401" -} - -send "quit\r" -expect { - timeout { exit 1 } - "ERROR :Closing connection" -} |
