Return-Path: Delivered-To: apmail-httpd-test-cvs-archive@www.apache.org Received: (qmail 34110 invoked from network); 1 Feb 2005 21:18:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 1 Feb 2005 21:18:30 -0000 Received: (qmail 61387 invoked by uid 500); 1 Feb 2005 21:18:26 -0000 Delivered-To: apmail-httpd-test-cvs-archive@httpd.apache.org Received: (qmail 61302 invoked by uid 500); 1 Feb 2005 21:18:26 -0000 Mailing-List: contact test-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-cvs@httpd.apache.org Received: (qmail 61248 invoked by uid 99); 1 Feb 2005 21:18:25 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Tue, 01 Feb 2005 13:18:25 -0800 Received: (qmail 33953 invoked by uid 65534); 1 Feb 2005 21:18:23 -0000 Message-ID: <20050201211823.33949.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Mailer: svnmailer-1.0.0-dev Date: Tue, 01 Feb 2005 21:18:23 -0000 Subject: svn commit: r149450 - httpd/test/trunk/perl-framework/t/modules/proxy.t To: test-cvs@httpd.apache.org From: jorton@apache.org X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: jorton Date: Tue Feb 1 13:18:22 2005 New Revision: 149450 URL: http://svn.apache.org/viewcvs?view=3Drev&rev=3D149450 Log: Explain the test. Modified: httpd/test/trunk/perl-framework/t/modules/proxy.t Modified: httpd/test/trunk/perl-framework/t/modules/proxy.t URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/module= s/proxy.t?view=3Ddiff&r1=3D149449&r2=3D149450 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- httpd/test/trunk/perl-framework/t/modules/proxy.t (original) +++ httpd/test/trunk/perl-framework/t/modules/proxy.t Tue Feb 1 13:18:22 2= 005 @@ -36,7 +36,10 @@ } =20 if (have_min_apache_version('2.1.0')) { - # trigger the "proxy decodes abs_path issue" + # trigger the "proxy decodes abs_path issue": with the bug present, the + # proxy URI-decodes on the way through, so the origin server receives + # an abs_path of "/reverse/nonesuch/file%", which it fails to parse and + # returns a 400 response. $r =3D GET("/reverse/nonesuch/file%25"); ok t_cmp($r->code, 404, "reverse proxy URI decoding issue, PR 15207"); } else {