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

88 lines
1.8 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"
}';
my $json2 = '{
"date": "2016-05-31",
"reference": "testref",
"uid": "dwho",
"title": "Test2 title",
"text": "This is a second test text"
}';
2019-02-07 09:27:56 +01:00
my $client = LLNG::Manager::Test->new( {
2017-02-19 18:04:49 +01:00
ini => {
logLevel => 'error',
useSafeJail => 1,
notification => 1,
notificationServer => 1,
notificationStorage => 'File',
notificationStorageOptions => {
dirName => 't'
},
}
}
);
my $res;
ok(
$res = $client->_post(
'/notifications', IO::String->new($json),
type => 'application/json',
length => length($json)
),
'Create notification'
);
count(1);
ok(
$res = $client->_post(
'/notifications', IO::String->new($json2),
type => 'application/json',
length => length($json2)
),
'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() );