]> err.no Git - varnish/commitdiff
Regression testcase for #433
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Tue, 3 Feb 2009 21:49:47 +0000 (21:49 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Tue, 3 Feb 2009 21:49:47 +0000 (21:49 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3576 d4fa192b-c00b-0410-8231-f00ffab90ce4

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

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