haproxy/reg-tests/http-cookies/h2_cookie_concat.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

46 lines
733 B
Plaintext

varnishtest "HTTP/2 cookie concatenation"
feature ignore_unknown_macro
server s1 {
rxreq
expect req.http.cookie == "c1=foo; c2=bar; c3=baz"
txresp
} -start
haproxy h1 -arg '-dW' -conf {
defaults
timeout client 30s
timeout server 30s
timeout connect 30s
mode http
frontend fe1
bind "fd@${fe1}" proto h2
use_backend be1
backend be1
server srv1 ${s1_addr}:${s1_port}
} -start
client c1 -connect ${h1_fe1_sock} {
txpri
stream 0 {
txsettings
rxsettings
txsettings -ack
rxsettings
expect settings.ack == true
} -run
stream 1 {
txreq \
-req "GET" \
-scheme "http" \
-url "/" \
-hdr "cookie" "c1=foo" \
-hdr "cookie" "c2=bar" \
-hdr "cookie" "c3=baz"
rxhdrs
} -run
} -run