From a07fb9063278eddc0e2fad6f09a0b5df66df9470 Mon Sep 17 00:00:00 2001 From: Amaury Denoyelle Date: Wed, 17 Aug 2022 16:34:13 +0200 Subject: [PATCH] REGTESTS: add test for HTTP/2 cookies concatenation Write a regtest to test RFC 7540 compliance in regards to multiple cookie headers concatenation. (cherry picked from commit d23435df28357ac6a61407685c8ffae4ad550dad) Signed-off-by: Willy Tarreau --- reg-tests/http-cookies/h2_cookie_concat.vtc | 42 +++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 reg-tests/http-cookies/h2_cookie_concat.vtc diff --git a/reg-tests/http-cookies/h2_cookie_concat.vtc b/reg-tests/http-cookies/h2_cookie_concat.vtc new file mode 100644 index 000000000..e2e6d8186 --- /dev/null +++ b/reg-tests/http-cookies/h2_cookie_concat.vtc @@ -0,0 +1,42 @@ +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 -conf { + defaults + 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