File: 62-Lemonldap-NG-Handler-Nginx.t

package info (click to toggle)
lemonldap-ng 2.21.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 28,024 kB
  • sloc: perl: 77,414; javascript: 25,284; xml: 6,473; makefile: 1,303; sh: 453; sql: 159; python: 53; php: 26
file content (287 lines) | stat: -rw-r--r-- 8,834 bytes parent folder | download | duplicates (2)
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
use Test::More skip_all => 'Heavy developer tests';
use JSON;
use MIME::Base64;
use Data::Dumper;
use URI::Escape;

BEGIN {
    require 't/test-psgi-lib.pm';
    require 't/custom.pm';
}

init('Lemonldap::NG::Handler::Server::Nginx');

my $res;


subtest "Unauthenticated queries without special AJAX handling" => sub {

    # Unauthentified query, not AJAX
    ok( $res = $client->_get('/'), 'Unauthentified query' );
    ok( ref($res) eq 'ARRAY', 'Response is an array' ) or explain( $res, 'array' );
    ok( $res->[0] == 401,     'Code is 401' )          or explain( $res->[0], 401 );
    my %h = @{ $res->[1] };
    is(
        $h{Location}, 'http://auth.example.com/?url='
        . uri_escape( encode_base64( 'http://test1.example.com/', '' ) ),
        'Redirection points to portal'
    );

    # Unauthentified query, AJAX
    ok( $res = $client->_get('/',undef,undef,undef, HTTP_ACCEPT=> "application/json"), 'Unauthentified query' );
    ok( ref($res) eq 'ARRAY', 'Response is an array' ) or explain( $res, 'array' );
    ok( $res->[0] == 401,     'Code is 401' )          or explain( $res->[0], 401 );
    my %h = @{ $res->[1] };
    is(
        $h{Location}, 'http://auth.example.com/?url='
        . uri_escape( encode_base64( 'http://test1.example.com/', '' ) ),
        'Redirection points to portal'
    );
};
count(1);

subtest "Unauthenticated queries with special AJAX handling" => sub {
    Lemonldap::NG::Handler::Main->tsv->{useRedirectAjaxOnUnauthorized} = 0;

    # Unauthentified query, not AJAX
    ok( $res = $client->_get('/'), 'Unauthentified query' );
    ok( ref($res) eq 'ARRAY', 'Response is an array' ) or explain( $res, 'array' );
    ok( $res->[0] == 401,     'Code is 401' )          or explain( $res->[0], 401 );
    my %h = @{ $res->[1] };
    is(
        $h{Location}, 'http://auth.example.com/?url='
        . uri_escape( encode_base64( 'http://test1.example.com/', '' ) ),
        'Redirection points to portal'
    );

    # Unauthentified query, AJAX
    ok( $res = $client->_get('/',undef,undef,undef, HTTP_ACCEPT=> "application/json"), 'Unauthentified query' );
    ok( ref($res) eq 'ARRAY', 'Response is an array' ) or explain( $res, 'array' );
    ok( $res->[0] == 401,     'Code is 401' )          or explain( $res->[0], 401 );
    my %h = @{ $res->[1] };
    ok(!  $h{Location}, "No Location header is specified" );
    Lemonldap::NG::Handler::Main->tsv->{useRedirectAjaxOnUnauthorized} = 1;
};
count(1);

# Authentified queries
# --------------------

# Authorized query
ok(
    $res =
      $client->_get( '/', undef, 'test4.example.com', "lemonldap=$sessionId" ),
    'Authentified query'
);
ok( $res->[0] == 200, 'Code is 200' ) or explain( $res->[0], 200 );
count(2);

# Check headers
%h = @{ $res->[1] };
ok(
    $h{'Lm-Remote-Custom'} eq
'dwho@badwolf.org alias Doctor_Who:users; timelords by using Mozilla/5.0 (X11; VAX4000; rv:43.0) Gecko/20100101 Firefox/143.0 Iceweasel/143.0.1',
    'Lm-Remote-Custom is overwriten'
  )
  or explain(
    \%h,
'Lm-Remote-Custom => "dwho@badwolf.org alias Doctor_Who:users; timelords by using Mozilla/5.0 (X11; VAX4000; rv:43.0) Gecko/20100101 Firefox/143.0 Iceweasel/143.0.1"'
  );
count(1);

# Check that cookie is removed
{
    my $previous, $success;
    my $cookie_count = 0;
    for ( @{ $res->[1] } ) {
        if ( $_ eq "Cookie" ) {
            $success = $previous =~ /^Deleteheader/;
            $cookie_count++;
        }
        $previous = $_;
    }
    is( $cookie_count, 1, "One occurence of Cookie in response headers" );
    ok( $success, "Cookie occurence appears after a Deleteheader instruction" );
    count(2);
}

# Authorized query with cookie
ok(
    $res = $client->_get(
        '/', undef, 'test4.example.com', "a=b; lemonldap=$sessionId; x=y"
    ),
    'Authentified query'
);
ok( $res->[0] == 200, 'Code is 200' ) or explain( $res->[0], 200 );
count(2);

# Check that cookie is modified
{
    %h = @{ $res->[1] };
    my @cookie_occurences = grep { $_ eq "Cookie" } @{ $res->[1] };
    is( scalar(@cookie_occurences),
        1, "One occurence of Cookie in response headers" );
    is( $h{Cookie}, "a=b; x=y", "Correct cookie value" );
    count(2);
}

# Authorized query
ok( $res = $client->_get( '/', undef, undef, "lemonldap=$sessionId" ),
    'Authentified query' );
ok( $res->[0] == 200, 'Code is 200' ) or explain( $res->[0], 200 );
count(2);

# Check headers
%h = @{ $res->[1] };
ok( $h{'Headername1'} eq 'Auth-User', 'Headername1 is set to "Auth-User"' )
  or explain( \%h, 'Headername1 => "Auth-User"' );
ok( $h{'Headervalue1'} eq 'dwho', 'Headervalue1 is set to "dwho"' )
  or explain( \%h, 'Headervalue1 => "dwho"' );
ok(
    $h{'Lm-Remote-Custom'} eq 'dwho@badwolf.org',
    'Lm-Remote-Custom is set "dwho@badwolf.org"'
) or explain( \%h, 'Lm-Remote-User => "dwho@badwolf.org"' );
count(3);

# Request an URI protected by custom function -> allowed
ok(
    $res =
      $client->_get( '/test-uri1/dwho', undef, undef, "lemonldap=$sessionId" ),
    'Authentified query'
);
ok( $res->[0] == 200, '/test-uri1 -> Code is 200' ) or explain( $res, 200 );
count(2);

# Request an URI protected by custom function -> allowed
ok(
    $res = $client->_get(
        '/test-uri2/dwho/dummy', undef, undef, "lemonldap=$sessionId"
    ),
    'Authentified query'
);
ok( $res->[0] == 200, '/test-uri2 -> Code is 200' ) or explain( $res, 200 );
count(2);

# Request an URI protected by custom function -> denied
ok(
    $res =
      $client->_get( '/test-uri1/dwho/', undef, undef, "lemonldap=$sessionId" ),
    'Denied query'
);
ok( $res->[0] == 403, '/test-uri1 -> Code is 403' )
  or explain( $res->[0], 403 );
count(2);

# Request an URI protected by custom function -> denied
ok(
    $res =
      $client->_get( '/test-uri1/dwh', undef, undef, "lemonldap=$sessionId" ),
    'Denied query'
);
ok( $res->[0] == 403, '/test-uri1 -> Code is 403' )
  or explain( $res->[0], 403 );
count(2);

# Denied query
ok( $res = $client->_get( '/deny', undef, undef, "lemonldap=$sessionId" ),
    'Denied query' );
ok( $res->[0] == 403, 'Code is 403' ) or explain( $res->[0], 403 );
count(2);

# Required AuthnLevel = 1
ok( $res = $client->_get( '/AuthWeak', undef, undef, "lemonldap=$sessionId" ),
    'Weak Authentified query' );
ok( $res->[0] == 200, 'Code is 200' ) or explain( $res, 200 );
count(2);

# Required AuthnLevel = 5
ok(
    $res = $client->_get( '/AuthStrong', undef, undef, "lemonldap=$sessionId" ),
    'Strong Authentified query'
);
ok( $res->[0] == 401, 'Code is 401' ) or explain( $res, 401 );
%h = @{ $res->[1] };
ok(
    $h{Location} eq 'http://auth.example.com//upgradesession?url='
      . uri_escape(
        encode_base64( 'http://test1.example.com/AuthStrong', '' ) ),
    'Redirection points to http://test1.example.com/AuthStrong'
  )
  or explain(
    \%h,
    'http://auth.example.com//upgradesession?url='
      . uri_escape( encode_base64( 'http://test1.example.com/AuthStrong', '' ) )
  );
count(3);

# Bad cookie
ok(
    $res = $client->_get(
        '/deny',
        undef,
        'manager.example.com',
'lemonldap=e5eec18ebb9bc96352595e2d8ce962e8ecf7af7c9a98cb9a43f9cd181cf4b545'
    ),
    'Bad cookie'
);
ok( $res->[0] == 401, 'Code is 401' ) or explain( $res->[0], 401 );
unlink(
't/sessions/lock/Apache-Session-e5eec18ebb9bc96352595e2d8ce962e8ecf7af7c9a98cb9a43f9cd181cf4b545.lock'
);
count(2);

# Required AuthnLevel = 1
ok(
    $res = $client->_get(
        '/AuthWeak', undef, 'test2.example.com', "lemonldap=$sessionId"
    ),
    'Weak Authentified query'
);
ok( $res->[0] == 200, 'Code is 200' ) or explain( $res, 200 );
count(2);

# Required AuthnLevel = 5
ok(
    $res =
      $client->_get( '/', undef, 'test2.example.com', "lemonldap=$sessionId" ),
    'Default Authentified query'
);
ok( $res->[0] == 401, 'Code is 401' ) or explain( $res, 401 );
%h = @{ $res->[1] };
ok(
    $h{Location} eq 'http://auth.example.com//upgradesession?url='
      . uri_escape( encode_base64( 'http://test2.example.com/', '' ) ),
    'Redirection points to http://test2.example.com/'
  )
  or explain(
    \%h,
    'http://auth.example.com//upgradesession?url='
      . uri_escape( encode_base64( 'http://test2.example.com/', '' ) )
  );
count(3);

# Clean headers
ok(
    $res = $client->_get(
        '/skipif/zz', undef, 'test1.example.com', undef,
        HTTP_AUTH_USER => 'rtyler'
    ),
    'Test skip() with forged header'
);
ok( $res->[0] == 200, 'Code is 200' ) or explain( $res, 200 );
count(2);
%h = @{ $res->[1] };
my %delete;
foreach ( keys %h ) {
    /^Deleteheader\d$/ and $delete{ $h{$_} }++;
}
foreach (qw(Cookie HTTP_COOKIE Auth-User HTTP_AUTH_USER)) {
    ok( $delete{$_}, "Delete command for $_" )
      or explain( \%h, 'Delete* headers' );
    ok( !$h{$_}, "$_ is deleted" ) or explain( \%h, 'Delete* headers' );
    count(2);
}

done_testing( count() );

clean();