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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestRequest;
use Apache::TestUtil;
use Apache::TestConfig ();
my @echos = ('A'x8, 'A'x64, 'A'x2048, 'A'x4096);
my $skipbodyfailover = !need_min_apache_version("2.4.42");
my $referertest = 0;
if (have_min_apache_version("2.4.41")) {
$referertest = 2;
}
plan tests => 6+(2*scalar @echos)+$referertest, need 'proxy_balancer', 'proxy_http';
Apache::TestRequest::module("proxy_http_balancer");
Apache::TestRequest::user_agent(requests_redirectable => 0);
# Extract the nonce from response to the URL
sub GetNonce {
my $url = shift;
my $balancer = shift;
my $r;
$r = GET($url);
my $NONCE;
foreach my $query ( split( /\?b=/, $r->content ) ){
if ($query =~ m/$balancer/) {
foreach my $var ( split( /&/, $query ) ){
if ($var =~ m/nonce=/) {
foreach my $nonce ( split( /nonce=/, $var ) ){
my $ind = index ($nonce, "\"");
$nonce = substr($nonce, 0, ${ind});
if ( $nonce =~ m/^[0-9a-fA-F-]+$/ ) {
$NONCE = $nonce;
last;
}
}
last;
}
}
last;
}
}
return $NONCE;
}
my $r;
if (have_module('lbmethod_byrequests')) {
$r = GET("/baltest1/index.html");
ok t_cmp($r->code, 200, "Balancer did not die");
} else {
skip "skipping tests without mod_lbmethod_byrequests" foreach (1..1);
}
if (have_module('lbmethod_bytraffic')) {
$r = GET("/baltest2/index.html");
ok t_cmp($r->code, 200, "Balancer did not die");
} else {
skip "skipping tests without mod_lbmethod_bytraffic" foreach (1..1);
}
if (have_module('lbmethod_bybusyness')) {
$r = GET("/baltest3/index.html");
ok t_cmp($r->code, 200, "Balancer did not die");
} else {
skip "skipping tests without mod_lbmethod_bybusyness" foreach (1..1);
}
if (have_module('lbmethod_heartbeat')) {
#$r = GET("/baltest4/index.html");
#ok t_cmp($r->code, 200, "Balancer did not die");
} else {
#skip "skipping tests without mod_lbmethod_heartbeat" foreach (1..1);
}
# PR63891
foreach my $t (@echos) {
$r = POST "/baltest_echo_post", content => $t;
skip $skipbodyfailover, t_cmp($r->code, 200, "failed over");
skip $skipbodyfailover, t_cmp($r->content, $t, "response body echoed");
}
# test dynamic part
$r = GET("/balancer-manager");
ok t_cmp($r->code, 200, "Can't find balancer-manager");
# get the nonce and add a worker
my $result = GetNonce("/balancer-manager", "dynproxy");
my $query = "b_lbm=byrequests&b_tmo=0&b_max=0&b_sforce=0&b_ss=&b_nwrkr=ajp%3A%2F%2F%5B0%3A0%3A0%3A0%3A0%3A0%3A0%3A1%5D%3A8080&b_wyes=1&b=dynproxy&nonce=" . $result;
my @proxy_balancer_headers;
my $vars = Apache::Test::vars();
push @proxy_balancer_headers, "Referer" => "http://" . $vars->{servername} . ":" . $vars->{port} . "/balancer-manager";
# First try without the referer it should fail.
if (have_min_apache_version("2.4.41")) {
$r = POST("/balancer-manager", content => $query);
ok t_cmp($r->code, 200, "request failed");
ok !t_cmp($r->content, qr/ajp/, "AJP worker created");
}
# Try with the referer and http (byrequests)
if (have_min_apache_version("2.4.49") && have_module('lbmethod_byrequests')) {
$r = GET("/dynproxy");
ok t_cmp($r->code, 503, "request should fail for /dynproxy");
# create it
$query = "b_lbm=byrequests&b_tmo=0&b_max=0&b_sforce=0&b_ss=&b_nwrkr=http%3A%2F%2Flocalhost%3A8529&b_wyes=1&b=dynproxy&nonce=" . $result;
$r = POST("/balancer-manager", content => $query, @proxy_balancer_headers);
# enable it.
$query = "w=http%3A%2F%2Flocalhost%3A8529&b=dynproxy&w_status_D=0&nonce=" . $result;
$r = POST("/balancer-manager", content => $query, @proxy_balancer_headers);
# make a query
$r = GET("/dynproxy");
ok t_cmp($r->code, 200, "request failed to /dynproxy");
} else {
skip "skipping tests without lbmethod_byrequests";
skip "skipping tests without lbmethod_byrequests";
}
|