]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/testsuite/message-test.e
Test suite: Don't use DNS lookups
[ngircd-alex.git] / src / testsuite / message-test.e
index dd164822e418292bd46a412ffb76319e79257a39..5dc325ded807cd68807c8d05dc54a31451394cf0 100644 (file)
@@ -1,4 +1,7 @@
-spawn telnet localhost 6789
+# ngIRCd test suite
+# PRIVMSG and NOTICE test
+
+spawn telnet 127.0.0.1 6789
 expect {
        timeout { exit 1 }
        "Connected"
@@ -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,20 +50,35 @@ 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"
+}
 
-send "privmsg ~user\%localhost :test\r"
+send "privmsg ~user\%127.0.0.1 :test\r"
 expect {
        timeout { exit 1 }
        "@* PRIVMSG nick :test"
 }
 
-send "privmsg nick!~user@localhost :test\r"
+send "privmsg Nick!~User@127.0.0.1 :test\r"
 expect {
        timeout { exit 1 }
        "@* PRIVMSG nick :test"
@@ -116,12 +134,8 @@ expect {
        "401"
 }
 
-#cannot test host mask since localhost has no '.' as RFC requires
-
 send "quit\r"
 expect {
        timeout { exit 1 }
        "Connection closed"
 }
-
-# -eof-