#!/usr/bin/env perl use strict; use warnings; 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); my %invalid_form = ( name => 'swagg boi', url => 'INVALID://', message => '', answer => 'false' ); my %spam_form = ( name => 'swagg boi', url => 'http://localhost/', message => 'hi', answer => 0 ); my %valid_form = ( name => 'swagg boi', url => 'http://localhost', message => 'Ayy... lmao', answer => 'false' ); $t->ua->max_redirects(1); # Valid requests $t->get_ok('/sign')->status_is(200)->text_is(h2 => 'Sign the Guestbook'); $t->post_ok('/sign', form => \%valid_form)->status_is(200); # Invalid input $t->post_ok('/sign', form => \%invalid_form)->status_is(200) ->content_like(qr/cannot be blank/); $t->post_ok('/sign', form => \%invalid_form)->status_is(200) ->content_like(qr/URL does not appear to be/); # Spam test $t->post_ok('/sign', form => \%spam_form)->status_is(403) ->text_is(p => 'This message was flagged as spam'); done_testing();