From: phk Date: Fri, 27 Jun 2008 12:51:47 +0000 (+0000) Subject: Test "hit for pass" (pass from vcl_fetch) X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=852e3bde31530e6a1ce67e14f18be8f4b933cf85;p=varnish Test "hit for pass" (pass from vcl_fetch) git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2855 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishtest/tests/c00011.vtc b/varnish-cache/bin/varnishtest/tests/c00011.vtc new file mode 100644 index 00000000..1c081dcb --- /dev/null +++ b/varnish-cache/bin/varnishtest/tests/c00011.vtc @@ -0,0 +1,33 @@ +# $Id$ + +test "Test hit for pass (pass from fetch)" + +server s1 { + rxreq + expect req.url == "/foo" + txresp -body foobar + rxreq + expect req.url == "/foo" + txresp -body foobar1 +} -start + +varnish v1 -vcl+backend { + sub vcl_fetch { + pass; + } +} -start + +client c1 { + txreq -url "/foo" + rxresp + expect resp.status == 200 + expect resp.http.content-length == 6 + expect resp.http.x-varnish == "1001" + txreq -url "/foo" + rxresp + expect resp.status == 200 + expect resp.http.content-length == 7 + expect resp.http.x-varnish == "1002" +} + +client c1 -run