haproxy/reg-tests/sample_fetches/tcpinfo_rtt.vtc
Willy Tarreau 9d511b3c27 REGTESTS: enable -dW on almost all tests to fail on warnings
Now that warnings were almost all removed, let's enable zero-warning
via -dW. All tests were adjusted, but two:

  - mcli/mcli_start_progs.vtc:
      the programs section currently cannot be silenced

  - stats/stats-file.vtc:
      the warning comes from the stats file itself on comment lines.

All other ones are now OK.
2024-11-19 09:27:08 +01:00

39 lines
950 B
Plaintext

varnishtest "Test declaration of TCP rtt fetches"
# feature cmd "$HAPROXY_PROGRAM -cc 'version_atleast(v2.8-dev8)'"
feature ignore_unknown_macro
server s1 {
rxreq
txresp
} -start
haproxy h1 -arg '-dW' -conf {
defaults common
mode http
timeout connect "${HAPROXY_TEST_TIMEOUT-5s}"
timeout client "${HAPROXY_TEST_TIMEOUT-5s}"
timeout server "${HAPROXY_TEST_TIMEOUT-5s}"
frontend fe from common
bind "fd@${feh1}"
default_backend be
backend be from common
http-response set-header x-test1 "%[fc_rtt]"
http-response set-header x-test2 "%[bc_rtt(us)]"
http-response set-header x-test3 "%[fc_rttvar]"
http-response set-header x-test4 "%[bc_rttvar]"
server s1 ${s1_addr}:${s1_port}
} -start
client c1 -connect ${h1_feh1_sock} {
txreq -req GET -url /
rxresp
expect resp.status == 200
expect resp.http.x-test2 ~ "[0-9]+"
} -run