Added receipt datetime string submission validation & validator test
This commit is contained in:
parent
65d5bab444
commit
d078a09ccd
3 changed files with 16 additions and 3 deletions
|
@ -4,6 +4,7 @@ use warnings;
|
|||
use Mojolicious::Lite;
|
||||
use Test::More;
|
||||
|
||||
plugin 'Pear::LocalLoop::Plugin::Datetime';
|
||||
plugin 'Pear::LocalLoop::Plugin::Validators';
|
||||
|
||||
my $validator = app->validator;
|
||||
|
@ -16,6 +17,8 @@ my $valid_postcode = 'WC1H 9EB';
|
|||
my $invalid_postcode = 'AB1 2CD';
|
||||
my $not_a_postcode = 'a';
|
||||
my $not_a_whole_postcode = 'LA1';
|
||||
my $valid_purchase_time = '2017-08-14T11:29:07.965+01:00';
|
||||
my $invalid_purchase_time = '2017081411:29:07';
|
||||
|
||||
$validation->input({
|
||||
valid_email => $valid_email,
|
||||
|
@ -24,6 +27,8 @@ $validation->input({
|
|||
invalid_postcode => $invalid_postcode,
|
||||
not_a_postcode => $not_a_postcode,
|
||||
not_a_whole_postcode => $not_a_whole_postcode,
|
||||
valid_purchase_time => $valid_purchase_time,
|
||||
invalid_purchase_time => $invalid_purchase_time,
|
||||
});
|
||||
|
||||
$validation->required('valid_email')->email;
|
||||
|
@ -32,8 +37,10 @@ $validation->required('valid_postcode')->postcode;
|
|||
$validation->required('invalid_postcode')->postcode;
|
||||
$validation->required('not_a_postcode')->postcode;
|
||||
$validation->required('not_a_whole_postcode')->postcode;
|
||||
$validation->required('valid_purchase_time')->is_full_iso_datetime;
|
||||
$validation->required('invalid_purchase_time')->is_full_iso_datetime;
|
||||
|
||||
ok $validation->has_error, 'Have Errors';
|
||||
is_deeply $validation->failed, [ qw/ invalid_email invalid_postcode not_a_postcode not_a_whole_postcode / ], 'Correct Errors';
|
||||
is_deeply $validation->failed, [ qw/ invalid_email invalid_postcode invalid_purchase_time not_a_postcode not_a_whole_postcode / ], 'Correct Errors';
|
||||
|
||||
done_testing;
|
||||
|
|
Reference in a new issue