blob: 6a8c1b6f72d582f18cd9ac5009cea37bf68db0b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# ngIRCd test suite
# Server connect test
spawn openssl s_client -quiet -connect 127.0.0.1:6697
expect {
timeout { exit 1 }
"*CN = my.first.domain.tld"
}
sleep 2
send "oper\r"
expect {
timeout { exit 1 }
"451"
}
send "quit\r"
expect {
timeout { exit 1 }
"Connection closed"
}
|