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/channel-test.e | |
| parent | 8532af453ccc9071ddc919b063788d6b496af991 (diff) | |
remove deprecated
Diffstat (limited to 'deprecated-ngircd/src/testsuite/channel-test.e')
| -rw-r--r-- | deprecated-ngircd/src/testsuite/channel-test.e | 107 |
1 files changed, 0 insertions, 107 deletions
diff --git a/deprecated-ngircd/src/testsuite/channel-test.e b/deprecated-ngircd/src/testsuite/channel-test.e deleted file mode 100644 index 5e0afab..0000000 --- a/deprecated-ngircd/src/testsuite/channel-test.e +++ /dev/null @@ -1,107 +0,0 @@ -# ngIRCd test suite -# Channel 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 #channel\r" -expect { - timeout { exit 1 } - "@* JOIN :#channel" -} -expect { - timeout { exit 1 } - "366" -} - -send "topic #channel :Test-Topic\r" -expect { - timeout { exit 1 } - "@* TOPIC #channel :Test-Topic" -} - -send "who #channel\r" -expect { - timeout { exit 1 } - "352 nick #channel" -} -expect { - timeout { exit 1 } - "* nick H@ :0 User" -} -expect { - timeout { exit 1 } - "315 nick #channel" -} - -send "names #channel\r" -expect { - timeout { exit 1 } - "353 nick = #channel :@nick" -} -expect { - timeout { exit 1 } - "366 nick #channel" -} - -send "list\r" -expect { - timeout { exit 1 } - "322 nick #channel 1 :Test-Topic" -} -expect { - timeout { exit 1 } - "323 nick :End of LIST" -} - -send "part #channel :bye bye\r" -expect { - timeout { exit 1 } - "@* PART #channel :bye bye" -} - -send "join #channel\r" -expect { - timeout { exit 1 } - "@* JOIN :#channel" -} -expect { - timeout { exit 1 } - "366" -} - -send "join #channel2\r" -expect { - timeout { exit 1 } - "@* JOIN :#channel2" -} -expect { - timeout { exit 1 } - "366" -} - -send "join 0\r" -expect { - timeout { exit 1 } - "@* PART #channel2 :" -} -expect { - timeout { exit 1 } - "@* PART #channel :" -} - -send "quit\r" -expect { - timeout { exit 1 } - "ERROR :Closing connection" -} |
