Author: jorton
Date: Tue Feb 1 13:18:22 2005
New Revision: 149450
URL: http://svn.apache.org/viewcvs?view=rev&rev=149450
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/modules/proxy.t?view=diff&r1=149449&r2=149450
==============================================================================
--- 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 2005
@@ -36,7 +36,10 @@
}
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 = GET("/reverse/nonesuch/file%25");
ok t_cmp($r->code, 404, "reverse proxy URI decoding issue, PR 15207");
} else {