]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/testsuite/message-test.e
Merge branch 'CipherListNoSSL3'
[ngircd-alex.git] / src / testsuite / message-test.e
index eb26ac45a66828eb1f86b0e2a7acc7bf37b2d5a2..0e70640e2b6ca2abd444a19eedf34aed611d3d53 100644 (file)
@@ -1,3 +1,6 @@
+# ngIRCd test suite
+# PRIVMSG and NOTICE test
+
 spawn telnet localhost 6789
 expect {
        timeout { exit 1 }
@@ -35,7 +38,7 @@ expect {
        "@* PRIVMSG nick :test\r*@* PRIVMSG nick :test"
 }
 
-send "privmsg nick,#testChannel,nick :test\r"
+send "privmsg Nick,#testChannel,nick :test\r"
 expect {
        timeout { exit 1 }
        "@* PRIVMSG nick :test\r*401*@* PRIVMSG nick :test"
@@ -47,12 +50,28 @@ expect {
        "401"
 }
 
-send "privmsg ~user@ngircd.test.server :test\r"
+send "privmsg ~UsEr@ngIRCd.Test.Server :test\r"
 expect {
        timeout { exit 1 }
        "@* PRIVMSG nick :test"
 }
 
+send "mode nick +b\r"
+expect {
+       timeout { exit 1 }
+       "MODE nick :+b"
+}
+send "privmsg nick :test\r"
+expect {
+       timeout { exit 1 }
+       "486"
+}
+send "mode nick -b\r"
+expect {
+       timeout { exit 1 }
+       "MODE nick :-b"
+}
+
 # The following two tests using "localhost" as host name
 # had to be disabled, because there are operating systems
 # out there, that use "localhost.<domain>" as host name
@@ -65,7 +84,7 @@ expect {
 #      "@* PRIVMSG nick :test"
 #}
 #
-#send "privmsg nick!~user@localhost :test\r"
+#send "privmsg Nick!~User@LocalHost :test\r"
 #expect {
 #      timeout { exit 1 }
 #      "@* PRIVMSG nick :test"
@@ -122,12 +141,8 @@ expect {
        "401"
 }
 
-#cannot test host mask since localhost has no '.' as RFC requires
-
 send "quit\r"
 expect {
        timeout { exit 1 }
        "Connection closed"
 }
-
-# -eof-