r3503 - trunk/varnish-cache/bin/varnishtest/tests

phk at projects.linpro.no phk at projects.linpro.no
Mon Jan 12 13:57:31 CET 2009


Author: phk
Date: 2009-01-12 13:57:30 +0100 (Mon, 12 Jan 2009)
New Revision: 3503

Added:
   trunk/varnish-cache/bin/varnishtest/tests/c00020.vtc
Log:
Add a minimal testcase of critbit



Added: trunk/varnish-cache/bin/varnishtest/tests/c00020.vtc
===================================================================
--- trunk/varnish-cache/bin/varnishtest/tests/c00020.vtc	                        (rev 0)
+++ trunk/varnish-cache/bin/varnishtest/tests/c00020.vtc	2009-01-12 12:57:30 UTC (rev 3503)
@@ -0,0 +1,32 @@
+# $Id$
+
+test "Test -h critbit a bit"
+
+server s1 {
+        rxreq 
+        txresp -hdr "Connection: close" -body "012345\n"
+} -start
+
+varnish v1 -arg "-hcritbit" -vcl+backend { } -start 
+
+client c1 {
+        txreq -url "/"
+        rxresp
+        expect resp.status == 200
+        expect resp.http.X-Varnish == "1001"
+} -run
+
+client c2 {
+        txreq -url "/"
+        rxresp
+        expect resp.status == 200
+        expect resp.http.X-Varnish == "1002 1001"
+} -run
+
+varnish v1 -expect client_conn == 2
+varnish v1 -expect cache_hit == 1
+varnish v1 -expect cache_miss == 1
+varnish v1 -expect client_req == 2
+varnish v1 -expect s_sess == 2
+varnish v1 -expect s_req == 2
+varnish v1 -expect s_fetch == 1



More information about the varnish-commit mailing list