File: ldap.t

package info (click to toggle)
apache2 2.4.66-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 59,500 kB
  • sloc: ansic: 212,331; python: 13,830; perl: 11,307; sh: 7,258; php: 1,320; javascript: 1,314; awk: 749; makefile: 715; lex: 374; yacc: 161; xml: 2
file content (52 lines) | stat: -rw-r--r-- 1,525 bytes parent folder | download | duplicates (5)
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");
}