r1813 - trunk/varnish-tools/regress/lib/Varnish/Test/Case

des at projects.linpro.no des at projects.linpro.no
Wed Aug 8 13:00:26 CEST 2007


Author: des
Date: 2007-08-08 13:00:26 +0200 (Wed, 08 Aug 2007)
New Revision: 1813

Added:
   trunk/varnish-tools/regress/lib/Varnish/Test/Case/POST.pm
Log:
Add three regression tests for POST request handling.  All of them
currently fail (see #47, #129).


Added: trunk/varnish-tools/regress/lib/Varnish/Test/Case/POST.pm
===================================================================
--- trunk/varnish-tools/regress/lib/Varnish/Test/Case/POST.pm	                        (rev 0)
+++ trunk/varnish-tools/regress/lib/Varnish/Test/Case/POST.pm	2007-08-08 11:00:26 UTC (rev 1813)
@@ -0,0 +1,108 @@
+#!/usr/bin/perl -w
+#-
+# Copyright (c) 2007 Linpro AS
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+#    notice, this list of conditions and the following disclaimer
+#    in this position and unchanged.
+# 2. Redistributions in binary form must reproduce the above copyright
+#    notice, this list of conditions and the following disclaimer in the
+#    documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+# SUCH DAMAGE.
+#
+# $Id$
+#
+
+package Varnish::Test::Case::POST;
+
+use strict;
+use base 'Varnish::Test::Case';
+
+our $DESCR = "Tests Varnish's ability to correctly pass POST requests" .
+    " to the backend, and their replies back to the client.";
+
+our $VCL = <<EOVCL;
+sub vcl_recv {
+    if (req.request == "POST") {
+	if (!req.http.content-length || req.http.content-length == "0") {
+	    lookup;
+	}
+	if (req.url ~ "pass") {
+	    pass;
+	}
+	pipe;
+    }
+}
+EOVCL
+
+our $MAGIC_WORDS = "Squeamish Ossifrage";
+our $NOTHING_HAPPENS = "Nothing happens.";
+
+sub testPassPOST($) {
+    my ($self) = @_;
+
+    my $client = $self->new_client;
+    $self->post($client, "/pass_me", [], $MAGIC_WORDS);
+    $self->assert_ok();
+    $self->assert_body(qr/\Q$MAGIC_WORDS\E/);
+
+    return 'OK';
+}
+
+sub testPipePOST($) {
+    my ($self) = @_;
+
+    my $client = $self->new_client;
+    $self->post($client, "/pipe_me", [], $MAGIC_WORDS);
+    $self->assert_ok();
+    $self->assert_body(qr/\Q$MAGIC_WORDS\E/);
+
+    return 'OK';
+}
+
+sub testCachePOST($) {
+    my ($self) = @_;
+
+    my $client = $self->new_client;
+
+    # Warm up the cache
+    $self->post($client, "/cache_me");
+    $self->assert_ok();
+    $self->assert_uncached();
+    $self->assert_body(qr/\Q$NOTHING_HAPPENS\E/);
+
+    # Verify that the request was cached
+    $self->post($client, "/cache_me");
+    $self->assert_ok();
+    $self->assert_cached();
+    $self->assert_body(qr/\Q$NOTHING_HAPPENS\E/);
+
+    return 'OK';
+}
+
+sub server_post($$$$) {
+    my ($self, $request, $response) = @_;
+
+    if ($request->content()) {
+	$response->content("The Magic Words are " . $request->content());
+    } else {
+	$response->content($NOTHING_HAPPENS);
+    }
+}
+
+1;


Property changes on: trunk/varnish-tools/regress/lib/Varnish/Test/Case/POST.pm
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native




More information about the varnish-commit mailing list