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 142
|
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Exception;
use Class::MOP;
my $instance;
{
package Foo;
sub new {
my $class = shift;
$instance = bless {@_}, $class;
return $instance;
}
sub foo { shift->{foo} }
}
{
package Foo::Sub;
use base 'Foo';
use metaclass;
sub new {
my $class = shift;
$class->meta->new_object(
__INSTANCE__ => $class->SUPER::new(@_),
@_,
);
}
__PACKAGE__->meta->add_attribute(
bar => (
reader => 'bar',
initializer => sub {
my $self = shift;
my ($value, $writer, $attr) = @_;
$writer->(uc $value);
},
),
);
}
undef $instance;
lives_and {
my $foo = Foo::Sub->new;
isa_ok($foo, 'Foo');
isa_ok($foo, 'Foo::Sub');
is($foo, $instance, "used the passed-in instance");
};
undef $instance;
lives_and {
my $foo = Foo::Sub->new(foo => 'FOO');
isa_ok($foo, 'Foo');
isa_ok($foo, 'Foo::Sub');
is($foo, $instance, "used the passed-in instance");
is($foo->foo, 'FOO', "set non-CMOP constructor args");
};
undef $instance;
lives_and {
my $foo = Foo::Sub->new(bar => 'bar');
isa_ok($foo, 'Foo');
isa_ok($foo, 'Foo::Sub');
is($foo, $instance, "used the passed-in instance");
is($foo->bar, 'BAR', "set CMOP attributes");
};
undef $instance;
lives_and {
my $foo = Foo::Sub->new(foo => 'FOO', bar => 'bar');
isa_ok($foo, 'Foo');
isa_ok($foo, 'Foo::Sub');
is($foo, $instance, "used the passed-in instance");
is($foo->foo, 'FOO', "set non-CMOP constructor arg");
is($foo->bar, 'BAR', "set correct CMOP attribute");
};
{
package BadFoo;
sub new {
my $class = shift;
$instance = bless {@_};
return $instance;
}
sub foo { shift->{foo} }
}
{
package BadFoo::Sub;
use base 'BadFoo';
use metaclass;
sub new {
my $class = shift;
$class->meta->new_object(
__INSTANCE__ => $class->SUPER::new(@_),
@_,
);
}
__PACKAGE__->meta->add_attribute(
bar => (
reader => 'bar',
initializer => sub {
my $self = shift;
my ($value, $writer, $attr) = @_;
$writer->(uc $value);
},
),
);
}
throws_ok { BadFoo::Sub->new }
qr/BadFoo=HASH.*is not a BadFoo::Sub/,
"error with incorrect constructors";
{
my $meta = Class::MOP::Class->create('Really::Bad::Foo');
throws_ok {
$meta->new_object(__INSTANCE__ => (bless {}, 'Some::Other::Class'))
} qr/Some::Other::Class=HASH.*is not a Really::Bad::Foo/,
"error with completely invalid class";
}
{
my $meta = Class::MOP::Class->create('Really::Bad::Foo::2');
for my $invalid ('foo', 1, 0, '') {
throws_ok {
$meta->new_object(__INSTANCE__ => $invalid)
} qr/The __INSTANCE__ parameter must be a blessed reference, not $invalid/,
"error with unblessed thing";
}
}
done_testing;
|