X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F84serialize.t;h=76e18c2258513dfcdf4a5ab43ede38b6ba2a5749;hb=8f5357074109c0b803f1565921cb13f85449d8d1;hp=c1b67dc2cd95dc2de4e057fa920a76916f9295aa;hpb=4146e3dae3771b13b83eb1ba124ba74287f83dcd;p=dbsrgits%2FDBIx-Class.git diff --git a/t/84serialize.t b/t/84serialize.t index c1b67dc..76e18c2 100644 --- a/t/84serialize.t +++ b/t/84serialize.t @@ -4,29 +4,57 @@ use warnings; use Test::More; use lib qw(t/lib); use DBICTest; -use Storable; +use Storable qw(dclone freeze thaw); my $schema = DBICTest->init_schema(); -plan tests => 6; - -my $artist = $schema->resultset('Artist')->find(1); - -{ - my $copy = $schema->dclone($artist); - is_deeply($copy, $artist, "dclone row object works"); - eval { $copy->discard_changes }; - ok( !$@, "discard_changes okay" ); - is($copy->id, $artist->id, "IDs still match "); -} - -{ - my $ice = $schema->freeze($artist); - my $copy = $schema->thaw($ice); - is_deeply($copy, $artist, 'dclone row object works'); - - eval { $copy->discard_changes }; - ok( !$@, "discard_changes okay" ); - is($copy->id, $artist->id, "IDs still okay"); +my %stores = ( + dclone_method => sub { return $schema->dclone($_[0]) }, + dclone_func => sub { return dclone($_[0]) }, + "freeze/thaw_method" => sub { + my $ice = $schema->freeze($_[0]); + return $schema->thaw($ice); + }, + "freeze/thaw_func" => sub { + thaw(freeze($_[0])); + }, +); + +plan tests => (7 * keys %stores); + +for my $name (keys %stores) { + my $store = $stores{$name}; + + my $artist = $schema->resultset('Artist')->find(1); + + # Test that the procedural versions will work if there's a registered + # schema as with CDBICompat objects and that the methods work + # without. + if( $name =~ /func/ ) { + $artist->result_source_instance->schema($schema); + DBICTest::CD->result_source_instance->schema($schema); + } + else { + $artist->result_source_instance->schema(undef); + DBICTest::CD->result_source_instance->schema(undef); + } + + my $copy = eval { $store->($artist) }; + is_deeply($copy, $artist, "serialize row object works: $name"); + + # Test that an object with a related_resultset can be serialized. + my @cds = $artist->related_resultset("cds"); + + ok $artist->{related_resultsets}, 'has key: related_resultsets'; + + $copy = eval { $store->($artist) }; + for my $key (keys %$artist) { + next if $key eq 'related_resultsets'; + next if $key eq '_inflated_column'; + is_deeply($copy->{$key}, $artist->{$key}, + qq[serialize with related_resultset "$key"]); + } + + ok eval { $copy->discard_changes; 1 } or diag $@; + is($copy->id, $artist->id, "IDs still match "); } -