]> err.no Git - varnish/commitdiff
Add regression test for ticket 262
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Wed, 25 Jun 2008 09:58:43 +0000 (09:58 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Wed, 25 Jun 2008 09:58:43 +0000 (09:58 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2800 d4fa192b-c00b-0410-8231-f00ffab90ce4

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

diff --git a/varnish-cache/bin/varnishtest/tests/r00262.vtc b/varnish-cache/bin/varnishtest/tests/r00262.vtc
new file mode 100644 (file)
index 0000000..ce48dfc
--- /dev/null
@@ -0,0 +1,29 @@
+# $Id$
+
+test "Test that inter-request whitespace trimming works"
+
+server s1 {
+       rxreq 
+       txresp \
+               -hdr "Connection: close" \
+               -body "012345\n"
+}
+
+varnish v1 -arg "-p session_linger=20" -vcl+backend { } -start 
+
+server s1 -start 
+
+client c1 {
+       send "GET / HTTP/1.1\r\n\r\n\r\n"
+
+       rxresp
+       expect resp.status == 200
+       expect resp.http.X-Varnish == "1001"
+
+       send "GET / HTTP/1.1\r\n\r\n"
+       rxresp
+       expect resp.status == 200
+       expect resp.http.X-Varnish == "1002 1001"
+}
+
+client c1 -run