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

phk at projects.linpro.no phk at projects.linpro.no
Tue Aug 19 21:33:39 CEST 2008


Author: phk
Date: 2008-08-19 21:33:39 +0200 (Tue, 19 Aug 2008)
New Revision: 3109

Added:
   trunk/varnish-cache/bin/varnishtest/tests/r00292.vtc
Log:
Add a regression test for ticket 292



Added: trunk/varnish-cache/bin/varnishtest/tests/r00292.vtc
===================================================================
--- trunk/varnish-cache/bin/varnishtest/tests/r00292.vtc	                        (rev 0)
+++ trunk/varnish-cache/bin/varnishtest/tests/r00292.vtc	2008-08-19 19:33:39 UTC (rev 3109)
@@ -0,0 +1,39 @@
+# $Id$
+#
+# This test checks that the ->hdf flag which tracks Connection: header
+# deletes tracks the headers properly.
+
+test "Header deletion test"
+
+server s1 {
+	rxreq
+	expect req.url == "/foo"
+	expect req.http.hdr1 == "req.http.hdr1"
+	expect req.http.hdr2 == "2"
+	expect req.http.hdr3 == "req.http.hdr3"
+	expect req.http.hdr4 == "4"
+	expect req.http.hdr5 == "req.http.hdr5"
+	expect req.http.hdr6 == "6"
+	txresp -body "foobar"
+} -start
+
+varnish v1 -vcl+backend { 
+
+	sub vcl_recv {
+		remove req.http.hdr1;
+		remove req.http.hdr5;
+	}
+} -start
+
+client c1 {
+	txreq  -url "/foo" \
+		-hdr "Connection: hdr3" \
+		-hdr "hdr1: 1" \
+		-hdr "hdr2: 2" \
+		-hdr "hdr3: 3" \
+		-hdr "hdr4: 4" \
+		-hdr "hdr5: 5" \
+		-hdr "hdr6: 6"
+	rxresp
+} -run
+




More information about the varnish-commit mailing list