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
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use Storable qw(dclone);
use KiokuDB::Entry;
use KiokuDB::Reference;
use KiokuDB::LiveObjects;
{
package KiokuDB_Test_Foo;
use Moose;
has oi => ( is => "rw" );
}
my $x = KiokuDB_Test_Foo->new( oi => "vey" );
my $l = KiokuDB::LiveObjects->new;
{
foreach my $ent (
KiokuDB::Entry->new(
id => "foo",
root => 1,
class => "KiokuDB_Test_Foo",
data => { oi => "vey" },
object => $x,
class_meta => { roles => [qw(KiokuDB_Test_Bar)] },
),
KiokuDB::Entry->new(
id => "bar",
data => [ 1 .. 3 ],
),
KiokuDB::Entry->new(
id => "goner",
deleted => 1
),
KiokuDB::Entry->new(
id => "bondage",
tied => "H",
data => KiokuDB::Entry->new(
class => "KiokuDB_Test_Foo",
data => {},
),
),
#KiokuDB::Entry->new(
# id => "bondage",
# tied => "HASH",
# data => KiokuDB::Entry->new(
# class => "KiokuDB_Test_Foo",
# data => {},
# ),
#),
KiokuDB::Entry->new(
id => "bar",
data => [ 1 .. 3 ],
backend_data => ["lalalal"],
),
KiokuDB::Entry->new(
id => "bar",
data => [ 1 .. 3 ],
prev => KiokuDB::Entry->new( id => "bar" ),
),
( map { KiokuDB::Entry->new( id => $_, data => { } ) }
"foo",
123,
"la-la",
"3B19C598-E873-4C65-80BA-0D1C4E961DC9",
"9170dc3d7a22403e11ff4c8aa1cd14d20c0ebf65",
pack("H*", "9170dc3d7a22403e11ff4c8aa1cd14d20c0ebf65"),
"foo,bar",
),
) {
my $copy = dclone($ent);
foreach my $transient ( qw(object prev) ) {
my $attr = KiokuDB::Entry->meta->find_attribute_by_name($transient);
ok( !$attr->has_value($copy), "no $transient in copy" );
$attr->clear_value($ent);
}
is( $copy->id, $ent->id, "ID is the same" );
is_deeply( $copy, $ent, "copy is_deeply orig" );
is_deeply( dclone($copy), $copy, "round trip of copy" );
unless ( $ent->id =~ /,/ ) {
my $new = KiokuDB::Entry->new;
$new->_unpack( $ent->_pack_old );
foreach my $field (qw(id class root deleted tied ) ) {
is( $new->$field, $ent->$field, "$field in old pack format" );
}
}
}
}
my ( $foo, $bar, $gorch ) = map { KiokuDB::Reference->new( id => $_ ) } qw(foo bar gorch);
is_deeply(
[ KiokuDB::Entry->new( data => $foo )->references ],
[ $foo ],
"simple ref",
);
is_deeply(
[ KiokuDB::Entry->new( data => { foo => $foo } )->references ],
[ $foo ],
"simple ref in hash",
);
is_deeply(
[ sort KiokuDB::Entry->new( data => { foo => [ $foo, $bar ] } )->references ],
[ sort $foo, $bar ],
"multiple refs",
);
is_deeply(
[ KiokuDB::Entry->new( data => { foo => KiokuDB::Entry->new( data => [ $foo ] ) } )->references ],
[ $foo ],
"intrinsic entry",
);
is_deeply(
[ KiokuDB::Entry->new( data => { foo => KiokuDB::Entry->new( data => [ $foo ] ) } )->referenced_ids ],
[ $foo->id ],
"intrinsic entry (ids)",
);
is_deeply(
[ KiokuDB::Entry->new(
data => [qw(foo bar)],
class => 'KiokuDB::Set::Stored',
id => 'the_set',
)->references ],
[ $foo, $bar ],
"set entry",
);
is_deeply(
[ KiokuDB::Entry->new(
data => [qw(foo bar)],
class => 'KiokuDB::Set::Stored',
id => 'the_set',
)->referenced_ids ],
[ $foo->id, $bar->id ],
"set entry (ids)",
);
done_testing;
|