Blame


1 db9afbbf 2005-12-30 alex # $Id: stress-B.e,v 1.3 2005/12/30 22:12:28 alex Exp $
2 fc6f6474 2002-09-09 alex
3 fc6f6474 2002-09-09 alex send "user user . . :User\r"
4 fc6f6474 2002-09-09 alex expect {
5 fc6f6474 2002-09-09 alex timeout { exit 1 }
6 db9afbbf 2005-12-30 alex " 376"
7 fc6f6474 2002-09-09 alex }
8 fc6f6474 2002-09-09 alex
9 ae6e6616 2005-08-12 alex sleep 2
10 ae6e6616 2005-08-12 alex
11 fc6f6474 2002-09-09 alex send "oper TestOp 123\r"
12 fc6f6474 2002-09-09 alex expect {
13 fc6f6474 2002-09-09 alex timeout { exit 1 }
14 fc6f6474 2002-09-09 alex "MODE test* :+o"
15 fc6f6474 2002-09-09 alex }
16 fc6f6474 2002-09-09 alex expect {
17 fc6f6474 2002-09-09 alex timeout { exit 1 }
18 db9afbbf 2005-12-30 alex " 381 test"
19 fc6f6474 2002-09-09 alex }
20 fc6f6474 2002-09-09 alex
21 ae6e6616 2005-08-12 alex sleep 2
22 ae6e6616 2005-08-12 alex
23 fc6f6474 2002-09-09 alex send "join #channel\r"
24 fc6f6474 2002-09-09 alex expect {
25 fc6f6474 2002-09-09 alex timeout { exit 1 }
26 db9afbbf 2005-12-30 alex " 353 * = #channel "
27 fc6f6474 2002-09-09 alex }
28 fc6f6474 2002-09-09 alex expect {
29 fc6f6474 2002-09-09 alex timeout { exit 1 }
30 db9afbbf 2005-12-30 alex " 366 * #channel :"
31 fc6f6474 2002-09-09 alex }
32 fc6f6474 2002-09-09 alex
33 fc6f6474 2002-09-09 alex send "mode #channel\r"
34 fc6f6474 2002-09-09 alex expect {
35 fc6f6474 2002-09-09 alex timeout { exit 1 }
36 db9afbbf 2005-12-30 alex " 324 test* #channel"
37 fc6f6474 2002-09-09 alex }
38 fc6f6474 2002-09-09 alex
39 fc6f6474 2002-09-09 alex send "join #channel2\r"
40 fc6f6474 2002-09-09 alex expect {
41 fc6f6474 2002-09-09 alex timeout { exit 1 }
42 db9afbbf 2005-12-30 alex " 353 * = #channel2 "
43 fc6f6474 2002-09-09 alex }
44 fc6f6474 2002-09-09 alex expect {
45 fc6f6474 2002-09-09 alex timeout { exit 1 }
46 db9afbbf 2005-12-30 alex " 366 * #channel2 :"
47 fc6f6474 2002-09-09 alex }
48 fc6f6474 2002-09-09 alex
49 fc6f6474 2002-09-09 alex send "names\r"
50 fc6f6474 2002-09-09 alex expect {
51 fc6f6474 2002-09-09 alex timeout { exit 1 }
52 db9afbbf 2005-12-30 alex " 366 "
53 fc6f6474 2002-09-09 alex }
54 fc6f6474 2002-09-09 alex
55 ae6e6616 2005-08-12 alex sleep 3
56 ae6e6616 2005-08-12 alex
57 fc6f6474 2002-09-09 alex send "part #channel2\r"
58 fc6f6474 2002-09-09 alex expect {
59 fc6f6474 2002-09-09 alex timeout { exit 1 }
60 db9afbbf 2005-12-30 alex " PART #channel2 "
61 fc6f6474 2002-09-09 alex }
62 fc6f6474 2002-09-09 alex
63 fc6f6474 2002-09-09 alex send "part #channel\r"
64 fc6f6474 2002-09-09 alex expect {
65 fc6f6474 2002-09-09 alex timeout { exit 1 }
66 db9afbbf 2005-12-30 alex " PART #channel "
67 fc6f6474 2002-09-09 alex }
68 fc6f6474 2002-09-09 alex
69 db9afbbf 2005-12-30 alex sleep 1
70 db9afbbf 2005-12-30 alex
71 fc6f6474 2002-09-09 alex send "quit\r"
72 fc6f6474 2002-09-09 alex expect {
73 fc6f6474 2002-09-09 alex timeout { exit 1 }
74 fc6f6474 2002-09-09 alex "Connection closed"
75 fc6f6474 2002-09-09 alex }
76 fc6f6474 2002-09-09 alex
77 fc6f6474 2002-09-09 alex # -eof-