no trailing whitespace
[gitmo/MooseX-Types.git] / t / 12_wrapper-definition.t
1 #!/usr/bin/env perl
2 use warnings;
3 use strict;
4
5 use Test::More;
6 use FindBin;
7 use lib "$FindBin::Bin/lib";
8 use Moose::Util::TypeConstraints;
9 BEGIN { coerce 'Str', from 'Int', via { "$_" } }
10 use TestWrapper TestLibrary => [qw( NonEmptyStr IntArrayRef )],
11                 Moose       => [qw( Str Int )];
12
13
14 my @tests = (
15     [ 'NonEmptyStr', 'TestLibrary::NonEmptyStr', 12, "12", [], "foobar", "" ],
16     [ 'IntArrayRef', 'TestLibrary::IntArrayRef', 12, [12], {}, [17, 23], {} ],
17     [ 'Str',         'Str',                      12, "12", [], "foo", [777] ],
18 );
19
20 # new array ref so we can safely shift from it
21 for my $data (map { [@$_] } @tests) {
22     my $type = shift @$data;
23     my $full = shift @$data;
24
25     # Type name export
26     {
27         ok my $code = __PACKAGE__->can($type), "$type() was exported";
28         is $code->(), $full, "$type() returned correct type name";
29     }
30
31     # coercion handler export
32     {
33         my ($coerce, $coercion_result, $cannot_coerce) = map { shift @$data } 1 .. 3;
34         ok my $code = __PACKAGE__->can("to_$type"), "to_$type() coercion was exported";
35         is_deeply scalar $code->($coerce), $coercion_result, "to_$type() coercion works";
36         eval { $code->($cannot_coerce) };
37         is $@, "coercion returned undef\n", "to_$type() died on invalid value";
38     }
39
40     # type test handler
41     {
42         my ($valid, $invalid) = map { shift @$data } 1 .. 2;
43         ok my $code = __PACKAGE__->can("is_$type"), "is_$type() check was exported";
44         ok $code->($valid), "is_$type() check true on valid value";
45         ok ! $code->($invalid), "is_$type() check false on invalid value";
46         is ref($code->()), 'CODE', "is_$type() returns test closure without args";
47     }
48 }
49
50 done_testing;