From: phk Date: Tue, 11 Nov 2008 19:07:30 +0000 (+0000) Subject: Regression test case for ticket 365: restart in hit. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f75b16a6ee5c50c42e622f600193fdfb935289eb;p=varnish Regression test case for ticket 365: restart in hit. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3387 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishtest/tests/r00365.vtc b/varnish-cache/bin/varnishtest/tests/r00365.vtc new file mode 100644 index 00000000..fed9a471 --- /dev/null +++ b/varnish-cache/bin/varnishtest/tests/r00365.vtc @@ -0,0 +1,31 @@ +# $Id$ + +test "Test restarts in vcl_hit" + +server s1 { + rxreq + expect req.url == "/foo" + txresp -status 200 -body "1" + rxreq + expect req.url == "/foo" + txresp -status 200 -body "22" +} -start + +varnish v1 -vcl+backend { + sub vcl_hit { + set obj.cacheable = false; + restart; + } +} -start + +client c1 { + txreq -url "/foo" + rxresp + expect resp.status == 200 + expect resp.bodylen == 1 + + txreq -url "/foo" + rxresp + expect resp.status == 200 + expect resp.bodylen == 2 +} -run