blob: 9ae73f70b9bc037cc5e96e16a13ab542e30c2400 [file] [log] [blame]
Willy Tarreau12989482018-12-07 18:21:21 +01001varnishtest "Composite HTTP manipulation test (H1 clear to H1 clear)"
Willy Tarreau12989482018-12-07 18:21:21 +01002#REQUIRE_VERSION_BELOW=1.9
Willy Tarreau4d58ba72018-12-07 15:18:54 +01003
4# This config tests several http-request features and their interactions.
5# It extracts some samples, places them into variables, modifies some header
6# fields, appends multiple identical header fields, overwrites the start line
7# using several methods, then dumps the initial list of variables and the final
8# one, then applies CRC32 to these values as signatures that are easy to test.
9# Then it does it again in the backend after saving the current headers into
10# the same names prefixed by "fe-". Then it does the same on the response path.
11# If some modifications are performed, the crc values need to be adjusted based
12# on the failed logs.
13#
14# Run it with HAPROXY_PROGRAM=$PWD/haproxy varnishtest -l -k -t 1 "$1"
15
16feature ignore_unknown_macro
17
18server s1 {
19 rxreq
20 txresp \
21 -status 234 \
22 -hdr "hdr1: val1" \
23 -hdr "hdr2: val2a" \
24 -hdr "hdr2: val2b" \
25 -hdr "hdr3: val3a, val3b" \
26 -hdr "hdr4:" \
Willy Tarreau4d58ba72018-12-07 15:18:54 +010027 -body "This is a body"
28
29 expect req.method == "GET"
30 expect req.http.fe-sl1-crc == 992395575
31 expect req.http.fe-sl2-crc == 1270056220
32 expect req.http.fe-hdr-crc == 1719311923
33 expect req.http.be-sl1-crc == 2604236007
34 expect req.http.be-sl2-crc == 4181358964
35 expect req.http.be-hdr-crc == 3634102538
36} -start
37
38haproxy h1 -conf {
39 defaults
40 mode http
Willy Tarreauf6739232021-11-18 17:46:22 +010041 timeout connect "${HAPROXY_TEST_TIMEOUT-5s}"
42 timeout client "${HAPROXY_TEST_TIMEOUT-5s}"
43 timeout server "${HAPROXY_TEST_TIMEOUT-5s}"
Willy Tarreau4d58ba72018-12-07 15:18:54 +010044
45 frontend fe
46 bind "fd@${fe}"
47
48 #### requests
49 http-request set-var(req.method) method
50 http-request set-var(req.uri) url
51 http-request set-var(req.path) path
52 http-request set-var(req.query) query
53 http-request set-var(req.param) url_param(qs_arg)
54
55 http-request set-header sl1 "sl1: "
56
57 http-request set-method "%[str(GET)]"
58 http-request set-uri concat(/bu/,req.uri,/eu)
59 http-request set-path "/bp/%[var(req.path)]/ep"
60 http-request set-query "bq&%[var(req.query)]&eq"
61
62 http-request set-header sl2 "sl2: "
63
64 http-request set-header sl1 "%[req.fhdr(sl1)] method=<%[var(req.method)]>; uri=<%[var(req.uri)]>; path=<%[var(req.path)]>;"
65 http-request set-header sl1 "%[req.fhdr(sl1)] query=<%[var(req.query)]>; param=<%[var(req.param)]>"
66 http-request set-header sl2 "%[req.fhdr(sl2)] method=<%[method]>; uri=<%[url]>; path=<%[path]>; "
67 http-request set-header sl2 "%[req.fhdr(sl2)] query=<%[query]>; param=<%[url_param(qs_arg)]>"
68 http-request set-header hdr "%[req.fhdr(hdr)] hdr1=<%[req.hdr(hdr1)]>; fhdr1=<%[req.fhdr(hdr1)]>;"
69 http-request set-header hdr "%[req.fhdr(hdr)] hdr2=<%[req.hdr(hdr2)]>; fhdr2=<%[req.fhdr(hdr2)]>;"
70 http-request set-header hdr "%[req.fhdr(hdr)] hdr3=<%[req.hdr(hdr3)]>; fhdr3=<%[req.fhdr(hdr3)]>;"
71 http-request set-header hdr "%[req.fhdr(hdr)] hdr4=<%[req.hdr(hdr4)]>; fhdr4=<%[req.fhdr(hdr4)]>;"
72
73 http-request set-header sl1-crc "%[req.fhdr(sl1),crc32]"
74 http-request set-header sl2-crc "%[req.fhdr(sl2),crc32]"
75 http-request set-header hdr-crc "%[req.fhdr(hdr),crc32]"
76
77 #### responses
78 http-response set-header be-sl1 "%[res.fhdr(sl1)]"
79 http-response set-header be-sl2 "%[res.fhdr(sl2)]"
80 http-response set-header be-hdr "%[res.fhdr(hdr)]"
81
82 http-response set-header be-sl1-crc "%[res.fhdr(sl1-crc)]"
83 http-response set-header be-sl2-crc "%[res.fhdr(sl2-crc)]"
84 http-response set-header be-hdr-crc "%[res.fhdr(hdr-crc)]"
85
86 http-response set-var(res.status) status
87 http-response set-header sl1 "sl1: "
88
89 http-response set-status 200
90
91 http-response set-header sl2 "sl2: "
92
93 http-response set-header sl1 "%[res.fhdr(sl1)] status=<%[var(res.status)]>;"
94 http-response set-header sl2 "%[res.fhdr(sl2)] status=<%[status]>;"
95 http-response set-header hdr "%[res.fhdr(hdr)] hdr1=<%[res.hdr(hdr1)]>; fhdr1=<%[res.fhdr(hdr1)]>;"
96 http-response set-header hdr "%[res.fhdr(hdr)] hdr2=<%[res.hdr(hdr2)]>; fhdr2=<%[res.fhdr(hdr2)]>;"
97 http-response set-header hdr "%[res.fhdr(hdr)] hdr3=<%[res.hdr(hdr3)]>; fhdr3=<%[res.fhdr(hdr3)]>;"
98 http-response set-header hdr "%[res.fhdr(hdr)] hdr4=<%[res.hdr(hdr4)]>; fhdr4=<%[res.fhdr(hdr4)]>;"
99
100 http-response set-header fe-sl1-crc "%[res.fhdr(sl1),crc32]"
101 http-response set-header fe-sl2-crc "%[res.fhdr(sl2),crc32]"
102 http-response set-header fe-hdr-crc "%[res.fhdr(hdr),crc32]"
103
104 default_backend be
105
106 backend be
107 #### requests
108 http-request set-header fe-sl1 "%[req.fhdr(sl1)]"
109 http-request set-header fe-sl2 "%[req.fhdr(sl2)]"
110 http-request set-header fe-hdr "%[req.fhdr(hdr)]"
111
112 http-request set-header fe-sl1-crc "%[req.fhdr(sl1-crc)]"
113 http-request set-header fe-sl2-crc "%[req.fhdr(sl2-crc)]"
114 http-request set-header fe-hdr-crc "%[req.fhdr(hdr-crc)]"
115
116 http-request set-var(req.method) method
117 http-request set-var(req.uri) url
118 http-request set-var(req.path) path
119 http-request set-var(req.query) query
120 http-request set-var(req.param) url_param(qs_arg)
121
122 http-request set-header sl1 "sl1: "
123
124 http-request set-method "%[str(GET)]"
125 http-request set-uri concat(/bu/,req.uri,/eu)
126 http-request set-path "/bp/%[var(req.path)]/ep"
127 http-request set-query "bq&%[var(req.query)]&eq"
128
129 http-request set-header sl2 "sl2: "
130
131 http-request set-header sl1 "%[req.fhdr(sl1)] method=<%[var(req.method)]>; uri=<%[var(req.uri)]>; path=<%[var(req.path)]>;"
132 http-request set-header sl1 "%[req.fhdr(sl1)] query=<%[var(req.query)]>; param=<%[var(req.param)]>"
133 http-request set-header sl2 "%[req.fhdr(sl2)] method=<%[method]>; uri=<%[url]>; path=<%[path]>; "
134 http-request set-header sl2 "%[req.fhdr(sl2)] query=<%[query]>; param=<%[url_param(qs_arg)]>"
135 http-request set-header hdr "%[req.fhdr(hdr)] hdr1=<%[req.hdr(hdr1)]>; fhdr1=<%[req.fhdr(hdr1)]>;"
136 http-request set-header hdr "%[req.fhdr(hdr)] hdr2=<%[req.hdr(hdr2)]>; fhdr2=<%[req.fhdr(hdr2)]>;"
137 http-request set-header hdr "%[req.fhdr(hdr)] hdr3=<%[req.hdr(hdr3)]>; fhdr3=<%[req.fhdr(hdr3)]>;"
138 http-request set-header hdr "%[req.fhdr(hdr)] hdr4=<%[req.hdr(hdr4)]>; fhdr4=<%[req.fhdr(hdr4)]>;"
139
140 http-request set-header be-sl1-crc "%[req.fhdr(sl1),crc32]"
141 http-request set-header be-sl2-crc "%[req.fhdr(sl2),crc32]"
142 http-request set-header be-hdr-crc "%[req.fhdr(hdr),crc32]"
143
144 #### responses
145 http-response set-var(res.status) status
146 http-response set-header sl1 "sl1: "
147
148 http-response set-status 200
149
150 http-response set-header sl2 "sl2: "
151
152 http-response set-header sl1 "%[res.fhdr(sl1)] status=<%[var(res.status)]>;"
153 http-response set-header sl2 "%[res.fhdr(sl2)] status=<%[status]>;"
154 http-response set-header hdr "%[res.fhdr(hdr)] hdr1=<%[res.hdr(hdr1)]>; fhdr1=<%[res.fhdr(hdr1)]>;"
155 http-response set-header hdr "%[res.fhdr(hdr)] hdr2=<%[res.hdr(hdr2)]>; fhdr2=<%[res.fhdr(hdr2)]>;"
156 http-response set-header hdr "%[res.fhdr(hdr)] hdr3=<%[res.hdr(hdr3)]>; fhdr3=<%[res.fhdr(hdr3)]>;"
157 http-response set-header hdr "%[res.fhdr(hdr)] hdr4=<%[res.hdr(hdr4)]>; fhdr4=<%[res.fhdr(hdr4)]>;"
158
159 http-response set-header sl1-crc "%[res.fhdr(sl1),crc32]"
160 http-response set-header sl2-crc "%[res.fhdr(sl2),crc32]"
161 http-response set-header hdr-crc "%[res.fhdr(hdr),crc32]"
162
163 server s1 ${s1_addr}:${s1_port}
164} -start
165
166client c1 -connect ${h1_fe_sock} {
167 txreq \
168 -req GET \
169 -url /path/to/file.extension?qs_arg=qs_value \
170 -hdr "hdr1: val1" \
171 -hdr "hdr2: val2a" \
172 -hdr "hdr2: val2b" \
173 -hdr "hdr3: val3a, val3b" \
174 -hdr "hdr4:"
175 rxresp
176
177 expect resp.status == 200
178 expect resp.http.be-sl1-crc == 487202719
179 expect resp.http.be-sl2-crc == 561949791
180 expect resp.http.be-hdr-crc == 1719311923
181 expect resp.http.fe-sl1-crc == 146151597
182 expect resp.http.fe-sl2-crc == 561949791
183 expect resp.http.fe-hdr-crc == 3634102538
184 expect resp.bodylen == 14
185 expect resp.body == "This is a body"
186} -run