Commit 034c3b87 authored by Geoff Simmons's avatar Geoff Simmons

Add an HTTP/2 test for e20.vtc.

parent f4cb2006
...@@ -41,8 +41,29 @@ client c1 { ...@@ -41,8 +41,29 @@ client c1 {
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
expect resp.bodylen == 40 expect resp.bodylen == 40
expect resp.body == {
<esX>This is a test: Hello world
}
} }
client c1 -run client c1 -run
varnish v1 -expect esi_errors == 2 varnish v1 -expect esi_errors == 2
logexpect l1 -wait logexpect l1 -wait
## HTTP/2
varnish v1 -cliok "param.set feature +http2"
client c1 {
stream 1 {
txreq
rxresp
expect resp.status == 200
expect resp.bodylen == 40
expect resp.body == {
<esX>This is a test: Hello world
}
} -run
} -run
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment