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/join-test.e | |
| parent | 8532af453ccc9071ddc919b063788d6b496af991 (diff) | |
remove deprecated
Diffstat (limited to 'deprecated-ngircd/src/testsuite/join-test.e')
| -rw-r--r-- | deprecated-ngircd/src/testsuite/join-test.e | 112 |
1 files changed, 0 insertions, 112 deletions
diff --git a/deprecated-ngircd/src/testsuite/join-test.e b/deprecated-ngircd/src/testsuite/join-test.e deleted file mode 100644 index 7e6a29a..0000000 --- a/deprecated-ngircd/src/testsuite/join-test.e +++ /dev/null @@ -1,112 +0,0 @@ -# ngIRCd test suite -# JOIN 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 "JOIN\r" -expect { - timeout { exit 1} - "461" -} - -send "JOIN #InviteChannel\r" -expect { - timeout { exit 1 } - "473" -} - -send "JOIN #FullKeyed\r" -expect { - timeout { exit 1 } - "475" -} - -send "JOIN #FullKeyed WrongKey\r" -expect { - timeout { exit 1 } - "475" -} - -send "JOIN #FullKeyed Secret\r" -expect { - timeout { exit 1 } - "471" -} - -send "JOIN #TopicChannel\r" -expect { - timeout { exit 1 } - "@* JOIN :#TopicChannel" -} -expect { - timeout { exit 1 } - "332" -} - -send "JOIN 0\r" -send "JOIN #1,#2,#3,#4\r" -send "JOIN #5\r" -expect { - timeout { exit 1 } - "405" -} -send "JOIN 0\r" - -send "JoIn #MultiMode\r" -expect { - timeout { exit 1 } - "474 nick #MultiMode" -} - -send "OPer TestOp 123\r" -expect { - timeout { exit 1 } - "381" -} - -send "Mode #MultiMode -b nick!~user\r" -expect { - timeout { exit 1 } - "MODE #MultiMode -b nick!~user@*" -} - -send "jOiN #MULTIMODE\r" -expect { - timeout { exit 1 } - "@* JOIN :#MULTIMODE" -} -expect { - timeout { exit 1 } - "366" -} -send "ModE #MULTImode\r" -expect { - timeout { exit 1 } - "324 nick #MultiMode +Pnt" -} -send "mODe #multimode +b\r" -expect { - timeout { exit 1 } - "367 nick #MultiMode banned!~ghost@example.com ngircd.test.server" -} -expect { - timeout { exit 1 } - "368 nick #MultiMode" -} - -send "quit\r" -expect { - timeout { exit 1 } - "ERROR :Closing connection" -} |
