mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-22 12:30:07 +00:00
REGTEST: Add unique-id reg-test
This reg-test verifies the following behavior:
1. That unique IDs are stable (i.e. the bug fixed in 530408f976
)
2. That unique IDs can use values from the HTTP request (see https://www.mail-archive.com/haproxy@formilux.org/msg36436.html)
This commit is contained in:
parent
2c1f37d353
commit
5fcec84c58
47
reg-tests/stream/unique-id.vtc
Normal file
47
reg-tests/stream/unique-id.vtc
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
varnishtest "unique-id test"
|
||||||
|
|
||||||
|
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
|
Loading…
Reference in New Issue
Block a user