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
|
use strict;
use warnings FATAL => 'all';
#
# To run tests for mod_authnz_ldap:
#
# a) run an LDAP server with root DN of dc=example,dc=com on localhost port 8389
# b) populate the directory with the LDIF from scripts/httpd.ldif
# c) configure & run the test suite passing "--defines LDAP" to ./t/TEST
#
use Apache::Test;
use Apache::TestRequest;
use Apache::TestUtil;
use Apache::TestConfig;
my $defs = Apache::Test->vars('defines');
my $ldap_defined = $defs =~ /LDAP/;
# URL -> username, password, expected-status
my @cases = (
['/modules/ldap/simple/' => '', '', 401],
['/modules/ldap/simple/' => 'alpha', 'badpass', 401],
['/modules/ldap/simple/' => 'alpha', 'Alpha', 200],
['/modules/ldap/simple/' => 'gamma', 'Gamma', 200],
['/modules/ldap/group/' => 'gamma', 'Gamma', 401],
['/modules/ldap/group/' => 'delta', 'Delta', 200],
['/modules/ldap/refer/' => 'alpha', 'Alpha', 401],
['/modules/ldap/refer/' => 'beta', 'Beta', 200],
);
plan tests => scalar @cases,
need need_module('authnz_ldap'), { "LDAP testing not configured" => $ldap_defined };
foreach my $t (@cases) {
my $url = $t->[0];
my $username = $t->[1];
my $password = $t->[2];
my $response;
my $creds;
if ($username) {
$response = GET $url, username => $username, password => $password;
$creds = "$username/$password";
}
else {
$response = GET $url;
$creds = "no credentials";
}
ok t_cmp($response->code, $t->[3], "test for $url with $creds");
}
|