about summary refs log tree commit diff
path: root/src/testsuite/misc-test.e
blob: 5c985f555bacbdc5210786e298a55cdd9653ff72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# $Id: misc-test.e,v 1.1 2008/02/17 13:26:42 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 "summon\r"
expect {
	timeout { exit 1 }
	"445"
}

send "users\r"
expect {
	timeout { exit 1 }
	"446"
}

send "info\r"
expect {
	timeout { exit 1 }
	"371"
}
expect {
	timeout { exit 1 }
	"374"
}

send "squit\r"
expect {
	timeout { exit 1 }
	"481"
}

send "quit\r"
expect {
	timeout { exit 1 }
	"ERROR"
}

# -eof-