X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ftestsuite%2Fmessage-test.e;h=5dc325ded807cd68807c8d05dc54a31451394cf0;hb=03e656807930cffc34a76a31635e4d3ad79c4378;hp=4cbc066eec5a0c3fd3fa589a32346eddce4e3e6f;hpb=538e612a47ba8eb83e749e8fe57d27f9322cc717;p=ngircd-alex.git diff --git a/src/testsuite/message-test.e b/src/testsuite/message-test.e index 4cbc066e..5dc325de 100644 --- a/src/testsuite/message-test.e +++ b/src/testsuite/message-test.e @@ -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" @@ -61,7 +64,7 @@ expect { send "privmsg nick :test\r" expect { timeout { exit 1 } - "976" + "486" } send "mode nick -b\r" expect { @@ -69,24 +72,17 @@ expect { "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." 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 "privmsg ~user\%127.0.0.1 :test\r" +expect { + timeout { exit 1 } + "@* PRIVMSG nick :test" +} + +send "privmsg Nick!~User@127.0.0.1 :test\r" +expect { + timeout { exit 1 } + "@* PRIVMSG nick :test" +} send "away :away\r" expect { @@ -138,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-