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

phk at projects.linpro.no phk at projects.linpro.no
Tue Feb 3 22:49:47 CET 2009


Author: phk
Date: 2009-02-03 22:49:47 +0100 (Tue, 03 Feb 2009)
New Revision: 3576

Added:
   trunk/varnish-cache/bin/varnishtest/tests/r00433.vcl
Log:
Regression testcase for #433



Added: trunk/varnish-cache/bin/varnishtest/tests/r00433.vcl
===================================================================
--- trunk/varnish-cache/bin/varnishtest/tests/r00433.vcl	                        (rev 0)
+++ trunk/varnish-cache/bin/varnishtest/tests/r00433.vcl	2009-02-03 21:49:47 UTC (rev 3576)
@@ -0,0 +1,48 @@
+# $Id$
+
+test "noidx"
+
+server s1 {
+	rxreq
+	expect req.url == "/foo"
+	txresp -hdr "Connection: close"
+	send {
+<H>
+FOO{
+<esi:include src="/bar"/>
+}FOO
+<!-- blablablabablablablablablablablablabla >
+blablablablab -->
+The end.
+}
+
+} -start
+
+server s2 -listen 127.0.0.1:9082 {
+	rxreq
+	expect req.url == "/bar"
+	txresp -body "bar"
+} -start
+
+varnish v1 -vcl+backend {
+	sub vcl_recv {
+		if (req.url == "/foo") {
+			set req.backend = s1;
+		} else {
+			set req.backend = s2;
+		}
+	}
+
+	sub vcl_fetch {
+		esi;
+	}
+} -start
+
+varnish v1 -cliok "param.set esi_syntax 4"
+varnish v1 -cliok "param.set diag_bitmap 0x10000"
+varnish v1 -cliok "debug.fragfetch 32"
+
+client c1 {
+	txreq -url /foo
+	rxresp
+} -run



More information about the varnish-commit mailing list