William Lallemand 6f746af915 REGTESTS: use -dW by default on every reg-tests
Every reg-test now runs without any warning, so let's acivate -dW by
default so the new ones will inheritate the option.

This patch reverts 9d511b3c ("REGTESTS: enable -dW on almost all tests
to fail on warnings") and adds -dW in the default HAPROXY_ARGS of
scripts/run-regtests.sh instead.
2024-11-19 16:53:10 +01:00

38 lines
802 B
Plaintext

varnishtest "url_dec converter Test"
feature ignore_unknown_macro
server s1 {
rxreq
txresp
} -repeat 2 -start
haproxy h1 -conf {
defaults
mode http
timeout connect "${HAPROXY_TEST_TIMEOUT-5s}"
timeout client "${HAPROXY_TEST_TIMEOUT-5s}"
timeout server "${HAPROXY_TEST_TIMEOUT-5s}"
frontend fe
bind "fd@${fe}"
http-request set-var(txn.url) url
http-response set-header url_dec0 "%[var(txn.url),url_dec]"
http-response set-header url_dec1 "%[var(txn.url),url_dec(1)]"
default_backend be
backend be
server s1 ${s1_addr}:${s1_port}
} -start
client c1 -connect ${h1_fe_sock} {
txreq -url "/bla+%20?foo%3Dbar%2B42+42%20"
rxresp
expect resp.http.url_dec0 == "/bla+ ?foo=bar+42 42 "
expect resp.http.url_dec1 == "/bla ?foo=bar+42 42 "
expect resp.status == 200
} -run