Tim Duesterhus | cf6e0c8 | 2020-03-13 12:34:24 +0100 | [diff] [blame] | 1 | varnishtest "Check that the unique ID TLV is properly sent" |
| 2 | |
| 3 | #REQUIRE_VERSION=2.2 |
| 4 | |
| 5 | feature ignore_unknown_macro |
| 6 | |
| 7 | haproxy h1 -conf { |
| 8 | defaults |
| 9 | mode http |
| 10 | log global |
| 11 | unique-id-format %{+X}o\ TEST-%[req.hdr(in)] |
| 12 | |
| 13 | listen sender |
| 14 | bind "fd@${feS}" |
| 15 | |
| 16 | unique-id-header unique_id |
| 17 | |
| 18 | server example ${h1_feR_addr}:${h1_feR_port} send-proxy-v2 proxy-v2-options unique-id |
| 19 | |
| 20 | listen receiver |
| 21 | bind "fd@${feR}" accept-proxy |
| 22 | |
| 23 | http-request set-var(txn.http_unique_id) req.hdr(unique_id) |
| 24 | http-request set-var(txn.proxy_unique_id) fc_pp_unique_id |
| 25 | http-after-response set-header http_unique_id %[var(txn.http_unique_id)] |
| 26 | http-after-response set-header proxy_unique_id %[var(txn.proxy_unique_id)] |
| 27 | http-request return status 200 |
| 28 | } -start |
| 29 | |
| 30 | # Validate that a correct header passes |
| 31 | client c1 -connect ${h1_feS_sock} { |
| 32 | txreq -url "/" \ |
| 33 | -hdr "in: foo" |
| 34 | rxresp |
| 35 | expect resp.http.http_unique_id == "TEST-foo" |
| 36 | expect resp.http.proxy_unique_id == "TEST-foo" |
| 37 | txreq -url "/" \ |
| 38 | -hdr "in: bar" |
| 39 | rxresp |
| 40 | expect resp.http.http_unique_id == "TEST-bar" |
| 41 | expect resp.http.proxy_unique_id == "TEST-foo" |
| 42 | } -run |