blob: a226f463766f8f9a9e214ae1b43363aa64170a86 [file] [log] [blame]
Frederic Lecaille3ec7bfb2018-12-13 22:15:09 +01001varnishtest "Check: smptchk option"
2feature ignore_unknown_macro
3
Frédéric Lécailleeacb0222019-04-29 16:10:12 +02004#EXCLUDE_TARGETS=freebsd,osx,generic
Frédéric Lécailledc1a3bd2019-03-29 15:07:24 +01005#REGTEST_TYPE=slow
6
Frederic Lecaille3ec7bfb2018-12-13 22:15:09 +01007barrier b cond 3
8
9syslog S1 -level notice {
10 recv
11 expect ~ "[^:\\[ ]\\[${h1_pid}\\]: Proxy be1 started"
12 recv
Christopher Faulet617780f2020-04-07 08:00:35 +020013 expect ~ "[^:\\[ ]\\[${h1_pid}\\]: Health check for server be1/srv1 succeeded.+reason: Layer7 check passed.+code: 2(20|48).+check duration: [[:digit:]]+ms.+status: 1/1 UP."
Frederic Lecaille3ec7bfb2018-12-13 22:15:09 +010014 barrier b sync
15 recv
Christopher Faulet617780f2020-04-07 08:00:35 +020016 expect ~ "Health check for server be1/srv1 failed.+reason: Layer7 timeout.+check duration: [[:digit:]]+ms.+status: 0/1 DOWN"
Frederic Lecaille3ec7bfb2018-12-13 22:15:09 +010017} -start
18
19syslog S2 -level notice {
20 recv
21 expect ~ "[^:\\[ ]\\[${h1_pid}\\]: Proxy be2 started"
22 recv
Christopher Fauleta67ed432020-04-20 14:59:20 +020023 expect ~ "[^:\\[ ]\\[${h1_pid}\\]: Health check for server be2/srv2 succeeded.+reason: Layer7 check passed.+code: 200.+.+check duration: [[:digit:]]+ms.+status: 1/1 UP."
Frederic Lecaille3ec7bfb2018-12-13 22:15:09 +010024 barrier b sync
25 recv
Christopher Faulet617780f2020-04-07 08:00:35 +020026 expect ~ "[^:\\[ ]\\[${h1_pid}\\]: Health check for server be2/srv2 failed.+reason: Layer7 timeout.+check duration: [[:digit:]]+ms.+status: 0/1 DOWN"
Frederic Lecaille3ec7bfb2018-12-13 22:15:09 +010027} -start
28
29syslog S3 -level notice {
30 recv
31 expect ~ "[^:\\[ ]\\[${h1_pid}\\]: Proxy be3 started"
32 recv
Christopher Faulet617780f2020-04-07 08:00:35 +020033 expect ~ "[^:\\[ ]\\[${h1_pid}\\]: Health check for server be3/srv3 failed.+reason: Layer4 connection problem.+info: \"General socket error \\(Network is unreachable\\)\".+check duration: [[:digit:]]+ms.+status: 0/1 DOWN."
Frederic Lecaille3ec7bfb2018-12-13 22:15:09 +010034} -start
35
36syslog S4 -level notice {
37 recv
38 expect ~ "[^:\\[ ]\\[${h1_pid}\\]: Proxy be4 started"
39 recv
Christopher Faulet617780f2020-04-07 08:00:35 +020040 expect ~ "[^:\\[ ]\\[${h1_pid}\\]: Health check for server be4/srv4 failed.+reason: Layer4 connection problem.+info: \"Connection refused\".+check duration: [[:digit:]]+ms.+status: 0/1 DOWN."
Frederic Lecaille3ec7bfb2018-12-13 22:15:09 +010041} -start
42
43server s1 {
Christopher Faulet617780f2020-04-07 08:00:35 +020044 send "2"
45 send "2"
46 send "0"
47 send "\r\n\r\n"
Frederic Lecaille3ec7bfb2018-12-13 22:15:09 +010048 recv 16
49 send "2"
50 send "4"
51 send "8"
52 send "\r\n\r\n"
53} -start
54
55server s2 {
56 rxreq
57 txresp
58} -start
59
60haproxy h1 -conf {
61 defaults
62 timeout client 1s
63 timeout server 1s
64 timeout connect 1s
65 option log-health-checks
Christopher Faulet617780f2020-04-07 08:00:35 +020066 default-server inter 200ms downinter 100ms rise 1 fall 1
Frederic Lecaille3ec7bfb2018-12-13 22:15:09 +010067
68 backend be1
69 option smtpchk
70 log ${S1_addr}:${S1_port} daemon
71 server srv1 ${s1_addr}:${s1_port} check
72
73 backend be2
74 mode tcp
75 log ${S2_addr}:${S2_port} daemon
76 option httpchk OPTIONS * HTTP/1.1\r\nHost:\ www
77 server srv2 ${s2_addr}:${s2_port} check
78
79 backend be3
80 log ${S3_addr}:${S3_port} daemon
81 server srv3 255.255.255.255:11111 check
82
83 backend be4
84 log ${S4_addr}:${S4_port} daemon
85 server srv4 localhost:11111 check
86} -start
87
88haproxy h1 -cli {
89 barrier b sync
90 send "show servers state"
91 expect ~ .*
92}
93
94server s1 -wait
95server s2 -wait
96
97syslog S1 -wait
98syslog S2 -wait
99syslog S3 -wait
100syslog S4 -wait
101
102