]> err.no Git - varnish/commitdiff
Test XML/ESI syntax errors etc.
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Thu, 10 Jul 2008 20:08:57 +0000 (20:08 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Thu, 10 Jul 2008 20:08:57 +0000 (20:08 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2922 d4fa192b-c00b-0410-8231-f00ffab90ce4

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

diff --git a/varnish-cache/bin/varnishtest/tests/e00008.vtc b/varnish-cache/bin/varnishtest/tests/e00008.vtc
new file mode 100644 (file)
index 0000000..b6877e0
--- /dev/null
@@ -0,0 +1,33 @@
+# $Id: e00004.vtc 2906 2008-07-08 10:29:07Z phk $
+
+test "ESI parsing errors"
+
+server s1 {
+       rxreq 
+       txresp -body {
+               Before include
+               <!--esi <esi:include src="/body"/> -->
+               After include
+               <!-- normal comment -->
+               <esi:bogosity/>
+       }
+       rxreq 
+       expect req.url == "/body"
+       txresp -body {
+               Included file
+       }
+} -start
+
+varnish v1 -vcl+backend {
+       sub vcl_fetch {
+               esi;
+       }
+} -start
+
+client c1 {
+       txreq 
+       rxresp
+       expect resp.status == 200
+}
+
+client c1 -run