- Tests erweitert.

This commit is contained in:
Alexander Barton 2002-09-09 21:26:00 +00:00
parent 85691130b1
commit 4d46eac733
2 changed files with 145 additions and 1 deletions

View File

@ -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 }

View File

@ -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-