repo: ngircd action: commit revision: path_from: revision_from: 4d46eac73381ed13569e897c010bc748fad9fec4: path_to: revision_to:
commit 4d46eac73381ed13569e897c010bc748fad9fec4 Author: Alexander BartonDate: Mon Sep 9 21:26:00 2002 +0000 - Tests erweitert. diff --git a/src/testsuite/channel-test.e b/src/testsuite/channel-test.e
--- a/src/testsuite/channel-test.e
+++ b/src/testsuite/channel-test.e
@@ -1,4 +1,4 @@
-# $Id: channel-test.e,v 1.1 2002/09/09 10:16:24 alex Exp $
+# $Id: channel-test.e,v 1.2 2002/09/09 21:26:00 alex Exp $
spawn telnet localhost 6789
expect {
@@ -23,6 +23,42 @@ expect {
"366"
}
+send "topic #channel :Test-Topic\r"
+expect {
+ timeout { exit 1 }
+ ":nick!~user@* TOPIC #channel :Test-Topic"
+}
+
+send "who #channel\r"
+expect {
+ timeout { exit 1 }
+ "352 nick #channel ~user * 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\r"
expect {
timeout { exit 1 }
diff --git a/src/testsuite/mode-test.e b/src/testsuite/mode-test.e
--- a/src/testsuite/mode-test.e
+++ b/src/testsuite/mode-test.e
@@ -0,0 +1,108 @@
+# $Id: mode-test.e,v 1.2 2002/09/09 21:26:00 alex Exp $
+
+spawn telnet localhost 6789
+expect {
+ timeout { exit 1 }
+ "Connected"
+}
+
+send "nick nick\r"
+send "user user . . :User\r"
+expect {
+ timeout { exit 1 }
+ "376"
+}
+
+send "mode nick +i\r"
+expect {
+ timeout { exit 1 }
+ ":nick!~user@* MODE nick +i"
+}
+
+send "mode nick\r"
+expect {
+ timeout { exit 1 }
+ "211 nick +i"
+}
+
+send "mode nick -i\r"
+expect {
+ timeout { exit 1 }
+ ":nick!~user@* MODE nick -i"
+}
+
+send "oper TestOp 123\r"
+expect {
+ timeout { exit 1 }
+ "MODE nick :+o"
+}
+expect {
+ timeout { exit 1 }
+ "381 nick"
+}
+
+send "mode nick\r"
+expect {
+ timeout { exit 1 }
+ "211 nick +o"
+}
+
+send "join #channel\r"
+expect {
+ timeout { exit 1 }
+ ":nick!~user@* JOIN :#channel"
+}
+expect {
+ timeout { exit 1 }
+ "366"
+}
+
+send "mode #channel +tn\r"
+expect {
+ timeout { exit 1 }
+ ":nick!~user@* MODE #channel +tn"
+}
+
+send "mode #channel\r"
+expect {
+ timeout { exit 1 }
+ "324 nick #channel +tn"
+}
+
+send "mode #channel +v nick\r"
+expect {
+ timeout { exit 1 }
+ ":nick!~user@* MODE #channel +v nick"
+}
+
+send "mode #channel +I nick1\r"
+expect {
+ timeout { exit 1 }
+ ":nick!~user@* MODE #channel +I nick1!*@*"
+}
+
+send "mode #channel +b nick2@domain\r"
+expect {
+ timeout { exit 1 }
+ ":nick!~user@* MODE #channel +b nick2!*@domain"
+}
+
+send "mode #channel +I nick3!user\r"
+expect {
+ timeout { exit 1 }
+ ":nick!~user@* MODE #channel +I nick3!user@*"
+}
+
+send "mode #channel -vo nick\r"
+expect {
+ timeout { exit 1 }
+ ":nick!~user@* MODE #channel -vo nick"
+}
+
+send "quit\r"
+expect {
+ timeout { exit 1 }
+ "Connection closed"
+}
+
+# -eof-
-----END OF PAGE-----