1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
use strict;
use warnings;
use Test::More;
use CGI ':all';
$ENV{HTTP_X_FORWARDED_HOST} = 'proxy:8484';
$ENV{SERVER_PROTOCOL} = 'HTTP/1.0';
$ENV{SERVER_PORT} = 8080;
$ENV{SERVER_NAME} = 'the.good.ship.lollypop.com';
is virtual_port() => 8484, 'virtual_port()';
is server_port() => 8080, 'server_port()';
is url() => 'http://proxy:8484', 'url()';
# let's see if we do the defaults right
$ENV{HTTP_X_FORWARDED_HOST} = 'proxy:80';
is url() => 'http://proxy', 'url() with default port';
subtest 'rewrite_interactions' => sub {
# Reference: RT#45019
local %ENV = (
# These two are always set
'SCRIPT_NAME' => '/real/cgi-bin/dispatch.cgi',
'SCRIPT_FILENAME' => '/home/mark/real/path/cgi-bin/dispatch.cgi',
# These two are added by mod_rewrite Ref: http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html
'SCRIPT_URL' => '/real/path/info',
'SCRIPT_URI' => 'http://example.com/real/path/info',
'PATH_INFO' => '/path/info',
'REQUEST_URI' => '/real/path/info',
'HTTP_HOST' => 'example.com'
);
my $q = CGI->new;
is(
$q->url( -absolute => 1, -query => 1, -path_info => 1 ),
'/real/path/info',
'$q->url( -absolute => 1, -query => 1, -path_info => 1 ) should return complete path, even when mod_rewrite is detected.'
);
is( $q->url(), 'http://example.com/real', '$q->url(), with rewriting detected' );
is( $q->url(-full=>1), 'http://example.com/real', '$q->url(-full=>1), with rewriting detected' );
is( $q->url(-path=>1), 'http://example.com/real/path/info', '$q->url(-path=>1), with rewriting detected' );
is( $q->url(-path=>0), 'http://example.com/real', '$q->url(-path=>0), with rewriting detected' );
is( $q->url(-full=>1,-path=>1), 'http://example.com/real/path/info', '$q->url(-full=>1,-path=>1), with rewriting detected' );
is( $q->url(-rewrite=>1,-path=>0), 'http://example.com/real', '$q->url(-rewrite=>1,-path=>0), with rewriting detected' );
is( $q->url(-rewrite=>1), 'http://example.com/real',
'$q->url(-rewrite=>1), with rewriting detected' );
is( $q->url(-rewrite=>0), 'http://example.com/real/cgi-bin/dispatch.cgi',
'$q->url(-rewrite=>0), with rewriting detected' );
is( $q->url(-rewrite=>0,-path=>1), 'http://example.com/real/cgi-bin/dispatch.cgi/path/info',
'$q->url(-rewrite=>0,-path=>1), with rewriting detected' );
is( $q->url(-rewrite=>1,-path=>1), 'http://example.com/real/path/info',
'$q->url(-rewrite=>1,-path=>1), with rewriting detected' );
is( $q->url(-rewrite=>0,-path=>0), 'http://example.com/real/cgi-bin/dispatch.cgi',
'$q->url(-rewrite=>0,-path=>1), with rewriting detected' );
};
done_testing();
|