Commit 3a72edbf authored by Geoff Simmons's avatar Geoff Simmons

Add an HTTP/2 test to e30.vtc.

parent c04aa1df
...@@ -100,6 +100,41 @@ client c1 { ...@@ -100,6 +100,41 @@ client c1 {
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
expect resp.bodylen == 81 expect resp.bodylen == 81
expect resp.body == {
<html>
Before include
Included file
After include
</html>
}
} -run } -run
varnish v1 -expect esi_errors == 0 varnish v1 -expect esi_errors == 0
## HTTP/2
varnish v1 -cliok "param.set feature +http2"
client c1 {
stream 1 {
txreq
rxresp
expect resp.status == 200
expect resp.bodylen == 81
expect resp.body == {
<html>
Before include
Included file
After include
</html>
}
} -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