Commit 2b8f60c3 authored by Geoff Simmons's avatar Geoff Simmons

add test g00005.vtc

parent 5fef4aa9
varnishtest "test gunzip for client + Range"
server s1 {
rxreq
expect req.http.accept-encoding == "gzip"
txresp -gzipbody FOOBARBARF
} -start
varnish v1 -cliok "param.set http_gzip_support true" -vcl {
import backend_dyn from "${vmod_topbuild}/src/.libs/libvmod_backend_dyn.so";
backend dummy { .host = "${bad_ip}"; }
sub vcl_init {
if (!backend_dyn.create(name="be", host="${s1_addr}",
port="${s1_port}")) {
return(fail);
}
}
sub vcl_recv {
set req.backend_hint = backend_dyn.by_name("be");
}
} -start
client c1 {
txreq
rxresp
expect resp.bodylen == "10"
expect resp.http.content-encoding == <undef>
txreq -hdr "Accept-encoding: gzip;q=0.1"
rxresp
expect resp.http.content-encoding == "gzip"
gunzip
expect resp.bodylen == "10"
# This delay attempts to ensure that the busyobj
# is completed before we attempt the range request
delay .2
txreq -hdr "Range: bytes=3-5"
rxresp
expect resp.status == 206
expect resp.http.content-encoding == "<undef>"
expect resp.bodylen == "3"
expect resp.body == "BAR"
} -run
varnish v1 -expect VBE.vcl1.be.happy == 0
varnish v1 -expect MAIN.n_backend == 2
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