2021-12-04 03:06:03 -05:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
2021-12-18 23:46:20 -05:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
2021-12-04 03:06:03 -05:00
|
|
|
use Test::More;
|
|
|
|
use Mojo::File qw{curfile};
|
|
|
|
use Test::Mojo;
|
|
|
|
|
|
|
|
my $script = curfile->dirname->sibling('guestbook-ng.pl');
|
|
|
|
my $t = Test::Mojo->new($script);
|
2021-12-11 19:01:43 -05:00
|
|
|
my %form = (
|
|
|
|
name => 'swagg boi',
|
2021-12-31 23:45:21 -05:00
|
|
|
url => 'http://localhost',
|
2021-12-18 23:42:20 -05:00
|
|
|
message => 'Ayy... lmao',
|
2021-12-19 22:43:42 -05:00
|
|
|
answer => 'false'
|
2021-12-11 19:01:43 -05:00
|
|
|
);
|
|
|
|
|
2022-01-08 22:01:51 -05:00
|
|
|
$t->ua->max_redirects(1);
|
|
|
|
|
2021-12-18 23:42:20 -05:00
|
|
|
$t->get_ok('/')->status_is(200)
|
2021-12-19 22:43:42 -05:00
|
|
|
->text_is(h2 => 'Messages from the World Wide Web');
|
|
|
|
$t->get_ok('/sign')->status_is(200)->text_is(h2 => 'Sign the Guestbook');
|
2022-01-08 22:01:51 -05:00
|
|
|
$t->post_ok('/sign', form => \%form)->status_is(200);
|
2021-12-04 03:06:03 -05:00
|
|
|
|
|
|
|
done_testing();
|