Test resp.filters with esi, gunzip and range

parent d099d7f6
varnishtest "ESI requests turned off"
varnishtest "ESI requests turned off and other filters with esi"
server s1 {
rxreq
......@@ -52,7 +52,7 @@ varnish v1 -expect esi_errors == 0
server s1 {
rxreq
expect req.url == /top2
txresp -body {
txresp -gzipbody {
<html>
Before include
<esi:include src="/body"/>
......@@ -60,7 +60,7 @@ server s1 {
}
rxreq
expect req.url == /recurse
txresp -body {
txresp -gzipbody {
<html>
Before include
<esi:include src="/top2"/>
......@@ -74,25 +74,52 @@ varnish v1 -syntax 4.1 -vcl+backend {
if (req.url == "/top2") {
set resp.do_esi = false;
}
set resp.http.filters = resp.filters;
}
sub vcl_backend_response {
set beresp.do_esi = true;
}
}
# Note on Range requests: The range VDP is active, but as it cannot
# reliably determine the size of the response, it falls back to a 200
client c1 {
txreq -url /top2
rxresp
expect resp.bodylen == 73
expect resp.status == 200
expect resp.http.was == true
expect resp.http.filters == "gunzip"
txreq -url "/esi"
rxresp
expect resp.bodylen == 76
expect resp.status == 200
expect resp.http.was == true
expect resp.http.filters == "esi"
# see Note on Range above
txreq -url "/esi" -hdr "Range: bytes=1-2"
rxresp
expect resp.bodylen == 76
expect resp.status == 200
expect resp.http.was == true
expect resp.http.filters == "esi range"
txreq -url "/recurse"
rxresp
expect resp.bodylen == 120
expect resp.status == 200
expect resp.http.was == true
expect resp.http.filters == "esi gunzip"
# see Note on Range above
txreq -url "/recurse" -hdr "Range: bytes=1-2"
rxresp
expect resp.bodylen == 120
expect resp.status == 200
expect resp.http.was == true
expect resp.http.filters == "esi gunzip range"
} -run
varnish v1 -expect esi_errors == 0
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