Allow metaclasses to be reinitialized from an existing metaclass, instead of only...
[gitmo/Class-MOP.git] / t / 046_rebless_instance.t
1 use strict;
2 use warnings;
3
4 use Test::More tests => 27;
5 use Test::Exception;
6 use Scalar::Util 'blessed';
7
8 {
9         package Parent;
10         use metaclass;
11
12         sub new    { bless {} => shift }
13         sub whoami { "parent"          }
14         sub parent { "parent"          }
15
16         package Child;
17         use metaclass;
18         use base qw/Parent/;
19
20         sub whoami { "child" }
21         sub child  { "child" }
22
23         package LeftField;
24         use metaclass;
25
26         sub new    { bless {} => shift }
27         sub whoami { "leftfield"       }
28         sub myhax  { "areleet"         }
29 }
30
31 # basic tests
32 my $foo = Parent->new;
33 is(blessed($foo), 'Parent', 'Parent->new gives a Parent');
34 is($foo->whoami, "parent", 'Parent->whoami gives parent');
35 is($foo->parent, "parent", 'Parent->parent gives parent');
36 dies_ok { $foo->child } "Parent->child method doesn't exist";
37
38 Child->meta->rebless_instance($foo);
39 is(blessed($foo), 'Child', 'rebless_instance really reblessed the instance');
40 is($foo->whoami, "child", 'reblessed->whoami gives child');
41 is($foo->parent, "parent", 'reblessed->parent gives parent');
42 is($foo->child, "child", 'reblessed->child gives child');
43
44 throws_ok { LeftField->meta->rebless_instance($foo) }
45           qr/You may rebless only into a subclass of \(Child\), of which \(LeftField\) isn't\./;
46
47 throws_ok { Class::MOP::Class->initialize("NonExistent")->rebless_instance($foo) }
48           qr/You may rebless only into a subclass of \(Child\), of which \(NonExistent\) isn't\./;
49
50 # make sure our ->meta is still sane
51 my $bar = Parent->new;
52 is(blessed($bar), 'Parent', "sanity check");
53 is(blessed($bar->meta), 'Class::MOP::Class', "meta gives a Class::MOP::Class");
54 is($bar->meta->name, 'Parent', "this Class::MOP::Class instance is for Parent");
55
56 ok($bar->meta->has_method('new'), 'metaclass has "new" method');
57 ok($bar->meta->has_method('whoami'), 'metaclass has "whoami" method');
58 ok($bar->meta->has_method('parent'), 'metaclass has "parent" method');
59
60 is(blessed($bar->meta->new_object), 'Parent', 'new_object gives a Parent');
61
62 Child->meta->rebless_instance($bar);
63 is(blessed($bar), 'Child', "rebless really reblessed");
64 is(blessed($bar->meta), 'Class::MOP::Class', "meta gives a Class::MOP::Class");
65 is($bar->meta->name, 'Child', "this Class::MOP::Class instance is for Child");
66
67 ok($bar->meta->find_method_by_name('new'), 'metaclass has "new" method');
68 ok($bar->meta->find_method_by_name('parent'), 'metaclass has "parent" method');
69 ok(!$bar->meta->has_method('new'), 'no "new" method in this class');
70 ok(!$bar->meta->has_method('parent'), 'no "parent" method in this class');
71 ok($bar->meta->has_method('whoami'), 'metaclass has "whoami" method');
72 ok($bar->meta->has_method('child'), 'metaclass has "child" method');
73
74 is(blessed($bar->meta->new_object), 'Child', 'new_object gives a Child');
75