haproxy/reg-tests/stream/unique-id.vtc
Willy Tarreau 5e8017d53c REGTEST: make the unique-id test depend on version 2.0
Regtest unique-id.vtc was added by commit 5fcec84c58 ("REGTEST: Add
unique-id reg-test") but it relies on the "uuid" sample fetch which
is only available in version 2.0 and above. Let's reflect that in
the REQUIRE_VERSION tag.
2020-04-01 16:08:43 +02:00

50 lines
1.0 KiB
Plaintext

varnishtest "unique-id test"
#REQUIRE_VERSION=2.0
feature ignore_unknown_macro
server s1 {
rxreq
txresp
} -repeat 2 -start
haproxy h1 -conf {
defaults
mode http
timeout connect 1s
timeout client 1s
timeout server 1s
frontend stable
bind "fd@${fe1}"
unique-id-format TEST-%[uuid]
http-response set-header A %[unique-id]
http-response set-header B %[unique-id]
default_backend be
frontend request_data
bind "fd@${fe2}"
unique-id-format TEST-%[req.hdr(in)]
http-response set-header out %[unique-id]
default_backend be
backend be
server srv1 ${s1_addr}:${s1_port}
} -start
client c1 -connect ${h1_fe1_sock} {
txreq -url "/"
rxresp
expect resp.status == 200
expect resp.http.a == resp.http.b
} -run
client c2 -connect ${h1_fe2_sock} {
txreq -url "/" \
-hdr "in: 12345678"
rxresp
expect resp.status == 200
expect resp.http.out == "TEST-12345678"
} -run