]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/testsuite/who-test.e
Include flags in RPL_WHOREPLY messages.
[ngircd-alex.git] / src / testsuite / who-test.e
diff --git a/src/testsuite/who-test.e b/src/testsuite/who-test.e
new file mode 100644 (file)
index 0000000..c54a190
--- /dev/null
@@ -0,0 +1,162 @@
+spawn telnet localhost 6789
+expect {
+       timeout { exit 1 }
+       "Connected"
+}
+
+send "nick nick\r"
+send "user user . . :Real Name\r"
+expect {
+       timeout { exit 1 }
+       "376"
+}
+
+send "who\r"
+expect {
+       timeout { exit 1 }
+       ":ngircd.test.server 352 nick \* ~user localhost ngircd.test.server nick H :0 Real Name"
+}
+
+send "join #channel\r"
+expect {
+       timeout { exit 1 }
+       "@* JOIN :#channel"
+}
+
+send "who 0\r"
+expect {
+       timeout { exit 1 }
+       ":ngircd.test.server 352 nick #channel ~user localhost ngircd.test.server nick H@ :0 Real Name"
+}
+
+send "away :testing\r"
+expect {
+       timeout { exit 1 }
+       "306 nick"
+}
+
+send "who *\r"
+expect {
+       timeout { exit 1 }
+       ":ngircd.test.server 352 nick #channel ~user localhost ngircd.test.server nick G@ :0 Real Name"
+}
+
+send "mode #channel +v nick\r"
+expect {
+       timeout { exit 1 }
+       "@* MODE #channel +v nick\r"
+}
+
+send "who localhost\r"
+expect {
+       timeout { exit 1 }
+       ":ngircd.test.server 352 nick #channel ~user localhost ngircd.test.server nick G@ :0 Real Name"
+}
+
+send "mode #channel -o nick\r"
+expect {
+       timeout { exit 1 }
+       "@* MODE #channel -o nick\r"
+}
+
+send "who ngircd.test.server\r"
+expect {
+       timeout { exit 1 }
+       ":ngircd.test.server 352 nick #channel ~user localhost ngircd.test.server nick G+ :0 Real Name"
+}
+
+send "part #channel\r"
+expect {
+       timeout { exit 1 }
+       "@* PART #channel :nick"
+}
+
+send "who Real?Name\r"
+expect {
+       timeout { exit 1 }
+       ":ngircd.test.server 352 nick \* ~user localhost ngircd.test.server nick G :0 Real Name"
+}
+
+send "oper TestOp 123\r"
+expect {
+       timeout { exit 1 }
+       "MODE nick :+o"
+}
+expect {
+       timeout { exit 1 }
+       "381 nick"
+}
+
+send "who 0 o\r"
+expect {
+       timeout { exit 1 }
+       ":ngircd.test.server 352 nick \* ~user localhost ngircd.test.server nick G* :0 Real Name"
+}
+
+send "away\r"
+expect {
+       timeout { exit 1 }
+       "305 nick"
+}
+
+send "who *cal*ho??\r"
+expect {
+       timeout { exit 1 }
+       ":ngircd.test.server 352 nick \* ~user localhost ngircd.test.server nick H* :0 Real Name"
+}
+
+send "join #opers\r"
+expect {
+       timeout { exit 1 }
+       "@* JOIN :#opers"
+}
+
+send "who #opers\r"
+expect {
+       timeout { exit 1 }
+       ":ngircd.test.server 352 nick #opers ~user localhost ngircd.test.server nick H*@ :0 Real Name"
+}
+
+send "mode #opers -o nick\r"
+expect {
+       timeout { exit 1 }
+       "@* MODE #opers -o nick\r"
+}
+
+send "who *.server\r"
+expect {
+       timeout { exit 1 }
+       ":ngircd.test.server 352 nick #opers ~user localhost ngircd.test.server nick H* :0 Real Name"
+}
+
+send "mode #opers +v nick\r"
+expect {
+       timeout { exit 1 }
+       "@* MODE #opers +v nick\r"
+}
+
+send "who Real*me\r"
+expect {
+       timeout { exit 1 }
+       ":ngircd.test.server 352 nick #opers ~user localhost ngircd.test.server nick H*+ :0 Real Name"
+}
+
+send "mode #opers +s\r"
+expect {
+       timeout { exit 1 }
+       "@* MODE #opers +s\r"
+}
+
+send "who n?c?\r"
+expect {
+       timeout { exit 1 }
+       ":ngircd.test.server 352 nick \* ~user localhost ngircd.test.server nick H* :0 Real Name"
+}
+
+send "quit\r"
+expect {
+       timeout { exit 1 }
+       "Connection closed"
+}
+
+# -eof-