2022-11-26 04:22:38 +00:00
|
|
|
use Mojo::Base -strict;
|
|
|
|
use Test::More;
|
|
|
|
use Test::Mojo;
|
|
|
|
|
|
|
|
my $t = Test::Mojo->new('PostText');
|
|
|
|
|
|
|
|
my %valid_login = (
|
|
|
|
email => 'swaggboi@slackware.uk',
|
|
|
|
password => 'i like to party'
|
|
|
|
);
|
|
|
|
|
|
|
|
my %invalid_login = (
|
|
|
|
email => 'fuck@example.com',
|
|
|
|
password => 'ah fuck'
|
|
|
|
);
|
|
|
|
|
|
|
|
subtest Login => sub {
|
2022-11-28 04:56:35 +00:00
|
|
|
$t->get_ok('/login')
|
|
|
|
->status_is(200)
|
2022-11-28 20:31:56 +00:00
|
|
|
->element_exists('form input[name="email"]')
|
|
|
|
->element_exists('form input[name="password"]')
|
2022-11-28 04:56:35 +00:00
|
|
|
->text_like(h2 => qr/Moderator Login/);
|
|
|
|
|
|
|
|
$t->post_ok('/login', form => \%invalid_login)
|
|
|
|
->status_is(403)
|
2022-11-28 20:31:56 +00:00
|
|
|
->element_exists('form input[name="email"]')
|
|
|
|
->element_exists('form input[name="password"]')
|
2022-11-28 04:56:35 +00:00
|
|
|
->text_like(p => qr/Invalid login/);
|
2022-11-26 04:22:38 +00:00
|
|
|
|
|
|
|
$t->post_ok('/login', form => \%valid_login)
|
|
|
|
->status_is(302)
|
|
|
|
->header_like(Location => qr{moderator/list});
|
|
|
|
|
2022-11-28 20:31:56 +00:00
|
|
|
$t->get_ok('/moderator/list')
|
|
|
|
->status_is(200)
|
|
|
|
->text_like(h2 => qr/Top Secret/);
|
|
|
|
|
2022-11-29 04:33:19 +00:00
|
|
|
$t->get_ok('/login')
|
|
|
|
->status_is(302)
|
|
|
|
->header_like(Location => qr{moderator/list});
|
|
|
|
|
2022-11-26 04:22:38 +00:00
|
|
|
$t->get_ok('/logout')
|
|
|
|
->status_is(302)
|
|
|
|
->header_like(Location => qr{thread/list});
|
|
|
|
};
|
|
|
|
|
|
|
|
done_testing();
|