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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use Test::Moose;
use Test::Exception;
use KiokuDB;
use KiokuDB::Backend::Hash;
{
package KiokuDB_Test_Simple;
use KiokuDB::Class;
has name => ( is => "rw" );
has foo => (
traits => [qw(KiokuDB::Lazy)],
isa => __PACKAGE__,
is => "ro",
);
has foos => (
traits => [qw(KiokuDB::Lazy)],
isa => 'ArrayRef',
is => "ro",
);
}
ok( exists($INC{"KiokuDB/Meta/Attribute/Lazy.pm"}), "KiokuDB::Meta::Attribute::Lazy loaded" );
does_ok( KiokuDB_Test_Simple->meta->get_attribute("foo"), 'KiokuDB::Meta::Attribute::Lazy', '"foo" meta attr does KiokuDB::Meta::Attribute::Lazy' );
does_ok( KiokuDB_Test_Simple->meta->get_attribute("foos"), 'KiokuDB::Meta::Attribute::Lazy', '"foo" meta attr does KiokuDB::Meta::Attribute::Lazy' );
my $dir = KiokuDB->new( backend => KiokuDB::Backend::Hash->new );
{
my $s = $dir->new_scope;
my ( $foo, @baz ) = map { KiokuDB_Test_Simple->new } 1 .. 3;
my $bar = KiokuDB_Test_Simple->new( foo => $foo, foos => \@baz);
is( $bar->foo, $foo, "foo attribute" );
$dir->store( foo => $foo, bar => $bar );
}
{
my $s = $dir->new_scope;
is_deeply(
[ $dir->live_objects->live_objects ],
[],
"no live objects",
);
my $bar = $dir->lookup("bar");
is_deeply(
[ $dir->live_objects->live_objects ],
[ $bar ],
"only bar is live",
);
my $foos = $bar->foos;
is_deeply(
[ sort $dir->live_objects->live_objects ],
[ sort @$foos, $bar ],
"all objects are live",
);
}
{
my $s = $dir->new_scope;
is_deeply(
[ $dir->live_objects->live_objects ],
[],
"no live objects",
);
my $bar = $dir->lookup("bar");
is_deeply(
[ $dir->live_objects->live_objects ],
[ $bar ],
"only bar is live",
);
my $foo = $bar->foo;
is_deeply(
[ sort $dir->live_objects->live_objects ],
[ sort $foo, $bar ],
"both objects are live",
);
}
{
my $s = $dir->new_scope;
is_deeply(
[ $dir->live_objects->live_objects ],
[],
"no live objects",
);
my $bar = $dir->lookup("bar");
is_deeply(
[ $dir->live_objects->live_objects ],
[ $bar ],
"only bar is live",
);
$bar->name("moose");
$dir->update($bar);
is_deeply(
[ $dir->live_objects->live_objects ],
[ $bar ],
"only bar is live",
);
}
{
my $s = $dir->new_scope;
is_deeply(
[ $dir->live_objects->live_objects ],
[],
"no live objects",
);
my $bar = $dir->lookup("bar");
is( $bar->name, "moose", "name updated" );
is_deeply(
[ $dir->live_objects->live_objects ],
[ $bar ],
"only bar is live",
);
my $foo = $bar->foo;
is_deeply(
[ sort $dir->live_objects->live_objects ],
[ sort $foo, $bar ],
"both objects are live",
);
}
done_testing;
|