lemonldap-ng/lemonldap-ng-portal/t/40-Notifications-JSON-Server.t

164 lines
4.0 KiB
Perl
Raw Normal View History

2017-02-19 18:04:49 +01:00
use Test::More;
use strict;
use IO::String;
BEGIN {
require 't/test-lib.pm';
}
eval { unlink 't/20160530_dwho_dGVzdHJlZg==.json' };
my $json = '{
"date": "2016-05-30",
"reference": "testref",
"uid": "dwho",
"title": "Test title",
"text": "This is a test text"
}';
2019-07-21 22:35:23 +02:00
my $jsonbis = '{
"date": "2016-05-31",
"reference": "testref",
"uid": "dwho",
"title": "Test2 title",
"text": "This is a second test text"
}';
2019-07-21 22:35:23 +02:00
my $json2 = '{
"date": "2016-05-30",
"reference": "testref2",
"uid": "dwho",
"title": "Test2 title",
"text": "This is a second test text"
}';
my $deljson = '{"uid":"dwho","reference":"testref2"}';
2019-07-21 23:21:20 +02:00
my $listjson = '{"uid":"dwho"}';
2019-07-21 21:54:20 +02:00
2019-02-07 09:27:56 +01:00
my $client = LLNG::Manager::Test->new( {
2017-02-19 18:04:49 +01:00
ini => {
2019-07-21 23:21:20 +02:00
logLevel => 'error',
2017-02-19 18:04:49 +01:00
useSafeJail => 1,
notification => 1,
notificationServer => 1,
notificationStorage => 'File',
notificationStorageOptions => {
dirName => 't'
},
}
}
);
my $res;
2019-07-21 22:35:23 +02:00
2017-02-19 18:04:49 +01:00
ok(
$res = $client->_post(
'/notifications', IO::String->new($json),
type => 'application/json',
length => length($json)
),
'Create notification'
);
2019-07-21 22:35:23 +02:00
ok( $res->[2]->[0] =~ /"result"\s*:\s*1/, 'Notification has been inserted' )
or print STDERR Dumper( $res->[2]->[0] );
count(2);
ok(
$res = $client->_post(
'/notifications', IO::String->new($json2),
type => 'application/json',
length => length($json2)
),
'Create second notification'
);
ok( $res->[2]->[0] =~ /"result"\s*:\s*1/, 'Second notification has been inserted' )
or print STDERR Dumper( $res->[2]->[0] );
count(2);
ok(
$res = $client->_get(
2019-07-22 15:40:16 +02:00
'/notifications/dwho',
2019-07-21 22:35:23 +02:00
type => 'application/json',
),
2019-07-22 15:40:16 +02:00
'List notifications for "dwho"'
2019-07-21 22:35:23 +02:00
);
ok( $res->[2]->[0] =~ /"result"\s*:\s*/, 'Result found' )
2019-07-21 22:35:23 +02:00
or print STDERR Dumper( $res->[2]->[0] );
2019-07-21 23:21:20 +02:00
ok( $res->[2]->[0] =~ /"reference":"testref"/, 'First notification found' )
or print STDERR Dumper( $res->[2]->[0] );
2019-07-21 23:21:20 +02:00
ok( $res->[2]->[0] =~ /"reference":"testref2"/, 'Second notification found' )
or print STDERR Dumper( $res->[2]->[0] );
count(4);
2017-02-19 18:04:49 +01:00
2019-07-22 15:40:16 +02:00
ok(
$res = $client->_get(
'/notifications/dwho/testref',
type => 'application/json',
),
'List notification with reference "testref"'
);
ok( $res->[2]->[0] =~ /"result"\s*:\s*/, 'Result found' )
or print STDERR Dumper( $res->[2]->[0] );
ok( $res->[2]->[0] =~ /"reference":"testref"/, 'Notification found' )
or print STDERR Dumper( $res->[2]->[0] );
count(3);
2019-07-21 21:54:20 +02:00
ok(
$res = $client->_put(
'/notifications', IO::String->new($deljson),
type => 'application/json',
length => length($deljson)
),
'Try to delete notification with bad method'
);
ok( $res->[2]->[0] =~ /"error"\s*:\s*"Bad request"/, 'Bad method is refused' );
count(2);
ok(
$res = $client->_delete(
2019-07-22 15:40:16 +02:00
'/notifications/dwho/testref2',
2019-07-21 21:54:20 +02:00
type => 'application/json',
),
'Delete notification'
);
ok( $res->[2]->[0] =~ /"result"\s*:\s*1/, 'Notification has been deleted' )
or print STDERR Dumper( $res->[2]->[0] );
count(2);
ok(
$res = $client->_post(
2019-07-21 22:35:23 +02:00
'/notifications', IO::String->new($jsonbis),
type => 'application/json',
2019-07-21 22:35:23 +02:00
length => length($jsonbis)
),
'Try to create the same notification twice'
);
ok(
$res->[2]->[0] =~
/"error"\s*:\s*"A notification already exists with reference testref"/,
'Append the same notification is refused'
);
count(2);
2019-07-17 11:58:22 +02:00
# Try to authenticate
2017-02-19 18:04:49 +01:00
# -------------------
ok(
$res = $client->_post(
'/',
IO::String->new(
2018-09-02 17:31:58 +02:00
'user=dwho&password=dwho&url=aHR0cDovL3Rlc3QxLmV4YW1wbGUuY29tLw=='),
2017-02-19 18:04:49 +01:00
accept => 'text/html',
length => 64,
),
'Auth query'
);
count(1);
expectOK($res);
my $id = expectCookie($res);
expectForm( $res, undef, '/notifback', 'reference1x1', 'url' );
eval { unlink 't/20160530_dwho_dGVzdHJlZg==.json' };
clean_sessions();
done_testing( count() );