git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2822
d4fa192b-c00b-0410-8231-
f00ffab90ce4
--- /dev/null
+# $Id$
+
+test "ESI test with no ESI content"
+
+
+server s1 {
+ rxreq
+ txresp -body {
+ -This is a test: Hello world
+ }
+} -start
+
+varnish v1 -vcl+backend {
+ sub vcl_fetch {
+ esi;
+ }
+} -start
+
+client c1 {
+ txreq
+ rxresp
+ expect resp.status == 200
+ expect resp.http.content-length == 33
+}
+
+client c1 -run
--- /dev/null
+# $Id$
+
+test "ESI:remove"
+
+
+server s1 {
+ rxreq
+ txresp -body {
+ <esi:remove>
+ This is a test: Unseen University
+ </esi:remove>
+ This is a test: Hello world
+ }
+} -start
+
+varnish v1 -vcl+backend {
+ sub vcl_fetch {
+ esi;
+ }
+} -start
+
+client c1 {
+ txreq
+ rxresp
+ expect resp.status == 200
+}
+
+client c1 -run