blob: aba46549b4e60f67a91bf432a2cb4443bd2812da [file] [log] [blame]
Christopher Faulet16b37512021-04-07 14:37:07 +02001varnishtest "A test for the abortonclose option (H1 only)"
2feature ignore_unknown_macro
3
4# NOTE : This test may fail if too many vtest are running in parallel because
5# the port reserved for closed s1 server may be reused by another vtest
6
7#REQUIRE_VERSION=2.3
8#REGTEST_TYPE=slow
9
10# b1 : Don't send /c4 before /c3 was received by s2 server
11# b2 : Don't finish c2 before c1 and c3 before c4 (from syslog POV)
12# b3 : finish c3 before s2
13
14barrier b1 cond 2 -cyclic
15barrier b2 cond 2 -cyclic
16barrier b3 cond 2 -cyclic
17
18server s1 {
19} -start
20server s1 -break
21
22server s2 {
23 rxreq
24
25 # unlock c4
26 barrier b1 sync
27
28 # wait end of c3
29 barrier b3 sync
30
31 expect_close
32} -start
33
34syslog S -level info {
35 recv
36 expect ~ "[^:\\[ ]*\\[[0-9]*\\]: .* .* fe1 be1/srv1 [0-9]*/[0-9]*/-1/-1/[0-9]* 503 .* - - SC-- .* .* \"GET /c1 HTTP/1\\.1\""
37 barrier b2 sync
38 recv
39 expect ~ "[^:\\[ ]*\\[[0-9]*\\]: .* .* fe1 be1/srv1 [0-9]*/[0-9]*/-1/-1/[0-9]* 503 .* - - CC-- .* .* \"GET /c2 HTTP/1\\.1\""
40
41 recv
42 expect ~ "[^:\\[ ]*\\[[0-9]*\\]: .* .* fe2 be2/<NOSRV> [0-9]*/[0-9]*/-1/-1/[0-9]* 503 .* - - CQ-- .* .* \"GET /c4 HTTP/1\\.1\""
43 barrier b2 sync
44 recv
45 expect ~ "[^:\\[ ]*\\[[0-9]*\\]: .* .* fe2 be2/srv1 [0-9]*/[0-9]*/[0-9]*/-1/[0-9]* 400 .* - - CH-- .* .* \"GET /c3 HTTP/1\\.1\""
46} -start
47
48haproxy h1 -conf {
Willy Tarreaue1465c12021-05-09 14:41:41 +020049 global
50 # WT: limit false-positives causing "HTTP header incomplete" due to
51 # idle server connections being randomly used and randomly expiring
52 # under us.
53 tune.idle-pool.shared off
54
Christopher Faulet16b37512021-04-07 14:37:07 +020055 defaults
56 mode http
57 ${no-htx} option http-use-htx
58 option abortonclose
59 retries 3
60 timeout client 10s
61 timeout server 10s
62 timeout connect 100ms
63 timeout queue 5s
64
65 frontend fe1
66 option httplog
67 log ${S_addr}:${S_port} local0 debug err
68 bind "fd@${fe1}"
69 use_backend be1
70
71 frontend fe2
72 option httplog
73 log ${S_addr}:${S_port} local0 debug err
74 bind "fd@${fe2}"
75 use_backend be2
76
77 backend be1
78 server srv1 ${s1_addr}:${s1_port}
79
80 backend be2
81 server srv1 ${s2_addr}:${s2_port} maxconn 1
82} -start
83
84# No server, wait all connection retries : SC--
85client c1 -connect ${h1_fe1_sock} {
86 txreq -url /c1
Willy Tarreau2b0ba5f2021-08-20 11:12:47 +020087 rxresp
88 expect resp.status == 503
Christopher Faulet16b37512021-04-07 14:37:07 +020089} -run
90
91# Wait c1 log entry
92barrier b2 sync
93
94# No server, abort during connections retries : CC--
95client c2 -connect ${h1_fe1_sock} {
96 txreq -url /c2
97} -run
98
99# server with maxconn=1, abort waiting the server reply : CH--
100client c3 -connect ${h1_fe2_sock} {
101 txreq -url /c3
102
103 # Wait c4 log entry
104 barrier b2 sync
105} -start
106
107# server with maxconn=1, abort waiting in the queue (c3 still attached) : CQ--
108client c4 -connect ${h1_fe2_sock} {
109 # Wait s2 receives c3 request
110 barrier b1 sync
111
112 txreq -url /c4
113 delay .2
114} -run
115
116client c3 -wait
117
118# unlock s2
119barrier b3 sync
120
121syslog S -wait