]> err.no Git - varnish/commitdiff
Add a minimal testcase of critbit
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Mon, 12 Jan 2009 12:57:30 +0000 (12:57 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Mon, 12 Jan 2009 12:57:30 +0000 (12:57 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3503 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/bin/varnishtest/tests/c00020.vtc [new file with mode: 0644]

diff --git a/varnish-cache/bin/varnishtest/tests/c00020.vtc b/varnish-cache/bin/varnishtest/tests/c00020.vtc
new file mode 100644 (file)
index 0000000..b4735a8
--- /dev/null
@@ -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