]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/testsuite/message-test.e
Debian: require "telnet" or "telnet-ssl" for building
[ngircd-alex.git] / src / testsuite / message-test.e
index 000334649d53e07230e36cff0c7be7c0a2abdb3c..d0ffcef99266556515c0c5f91fabab67a917f1ff 100644 (file)
@@ -1,5 +1,3 @@
-# $Id: mode-test.e,v 1.7 2008/02/16 11:27:49 fw Exp $
-
 spawn telnet localhost 6789
 expect {
        timeout { exit 1 }
@@ -37,20 +35,43 @@ 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"
 }
 
-send "JOIN #testChannel\r"
-
 send "privmsg doesnotexist :test\r"
 expect {
        timeout { exit 1 }
        "401"
 }
 
+send "privmsg ~UsEr@ngIRCd.Test.Server :test\r"
+expect {
+       timeout { exit 1 }
+       "@* PRIVMSG nick :test"
+}
+
+# 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
+# for 127.0.0.1 instead of just "localhost".
+# (for example OpenBSD 4, OpenSolaris, ...)
+#
+#send "privmsg ~user\%localhost :test\r"
+#expect {
+#      timeout { exit 1 }
+#      "@* PRIVMSG nick :test"
+#}
+#
+#send "privmsg Nick!~User@LocalHost :test\r"
+#expect {
+#      timeout { exit 1 }
+#      "@* PRIVMSG nick :test"
+#      "401"
+#}
+
 send "away :away\r"
 expect {
        timeout { exit 1 }