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
|
use strict;
use warnings;
use Test::More;
use lib qw(t/lib);
use DBICTest;
my $schema = DBICTest->init_schema();
use Data::Dumper;
my @serializers = (
{ module => 'YAML.pm',
inflater => sub { YAML::Load (shift) },
deflater => sub { die "Expecting a reference" unless (ref $_[0]); YAML::Dump (shift) },
},
{ module => 'Storable.pm',
inflater => sub { Storable::thaw (shift) },
deflater => sub { die "Expecting a reference" unless (ref $_[0]); Storable::nfreeze (shift) },
},
);
my $selected;
foreach my $serializer (@serializers) {
eval { require $serializer->{module} };
unless ($@) {
$selected = $serializer;
last;
}
}
plan (skip_all => "No suitable serializer found") unless $selected;
plan (tests => 6);
DBICTest::Schema::Serialized->inflate_column( 'serialized',
{ inflate => $selected->{inflater},
deflate => $selected->{deflater},
},
);
Class::C3->reinitialize;
my $complex1 = {
id => 1,
serialized => {
a => 1,
b => [
{ c => 2 },
],
d => 3,
},
};
my $complex2 = {
id => 1,
serialized => [
'a',
{ b => 1, c => 2},
'd',
],
};
my $rs = $schema->resultset('Serialized');
my $entry = $rs->create({ id => 1, serialized => ''});
my $inflated;
ok($entry->update ({ %{$complex1} }), 'hashref deflation ok');
ok($inflated = $entry->serialized, 'hashref inflation ok');
is_deeply($inflated, $complex1->{serialized}, 'inflated hash matches original');
ok($entry->update ({ %{$complex2} }), 'arrayref deflation ok');
ok($inflated = $entry->serialized, 'arrayref inflation ok');
is_deeply($inflated, $complex2->{serialized}, 'inflated array matches original');
|