1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
use strictures 1;
use Test::More;
use Test::Fatal;
use FindBin;
my $FilePath = sub { die "does not pass the type constraint" if $_[0] eq '/' };
{
package Baz;
use Moo;
has 'path' => (
is => 'ro',
isa => $FilePath,
required => 1,
);
sub BUILD {
my ( $self, $params ) = @_;
die $params->{path} . " does not exist"
unless -e $params->{path};
}
# Defining this causes the FIRST call to Baz->new w/o param to fail,
# if no call to ANY Moo::Object->new was done before.
sub DEMOLISH {
my ( $self ) = @_;
}
}
{
package Qee;
use Moo;
has 'path' => (
is => 'ro',
isa => $FilePath,
required => 1,
);
sub BUILD {
my ( $self, $params ) = @_;
die $params->{path} . " does not exist"
unless -e $params->{path};
}
# Defining this causes the FIRST call to Qee->new w/o param to fail...
# if no call to ANY Moo::Object->new was done before.
sub DEMOLISH {
my ( $self ) = @_;
}
}
{
package Foo;
use Moo;
has 'path' => (
is => 'ro',
isa => $FilePath,
required => 1,
);
sub BUILD {
my ( $self, $params ) = @_;
die $params->{path} . " does not exist"
unless -e $params->{path};
}
# Having no DEMOLISH, everything works as expected...
}
check_em ( 'Baz' ); # 'Baz plain' will fail, aka NO error
check_em ( 'Qee' ); # ok
check_em ( 'Foo' ); # ok
check_em ( 'Qee' ); # 'Qee plain' will fail, aka NO error
check_em ( 'Baz' ); # ok
check_em ( 'Foo' ); # ok
check_em ( 'Foo' ); # ok
check_em ( 'Baz' ); # ok !
check_em ( 'Qee' ); # ok
sub check_em {
my ( $pkg ) = @_;
my ( %param, $obj );
# Uncomment to see, that it is really any first call.
# Subsequents calls will not fail, aka giving the correct error.
{
local $@;
my $obj = eval { $pkg->new; };
::like( $@, qr/Missing required argument/, "... $pkg plain" );
::is( $obj, undef, "... the object is undef" );
}
{
local $@;
my $obj = eval { $pkg->new(); };
::like( $@, qr/Missing required argument/, "... $pkg empty" );
::is( $obj, undef, "... the object is undef" );
}
{
local $@;
my $obj = eval { $pkg->new ( notanattr => 1 ); };
::like( $@, qr/Missing required argument/, "... $pkg undef" );
::is( $obj, undef, "... the object is undef" );
}
{
local $@;
my $obj = eval { $pkg->new ( %param ); };
::like( $@, qr/Missing required argument/, "... $pkg undef param" );
::is( $obj, undef, "... the object is undef" );
}
{
local $@;
my $obj = eval { $pkg->new ( path => '/' ); };
::like( $@, qr/does not pass the type constraint/, "... $pkg root path forbidden" );
::is( $obj, undef, "... the object is undef" );
}
{
local $@;
my $obj = eval { $pkg->new ( path => '/this_path/does/not_exist' ); };
::like( $@, qr/does not exist/, "... $pkg non existing path" );
::is( $obj, undef, "... the object is undef" );
}
{
local $@;
my $obj = eval { $pkg->new ( path => $FindBin::Bin ); };
::is( $@, '', "... $pkg no error" );
::isa_ok( $obj, $pkg );
::isa_ok( $obj, 'Moo::Object' );
::is( $obj->path, $FindBin::Bin, "... $pkg got the right value" );
}
}
done_testing;
|