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
|
# Copyright (c) 2008 by Ricardo Signes. All rights reserved.
# Licensed under terms of Perl itself (the "License").
# You may not use this file except in compliance with the License.
# A copy of the License was distributed with this file or you may obtain a
# copy of the License from http://dev.perl.org/licenses/
use strict;
use warnings;
use Test::More;
use Test::Exception;
use lib 't/lib';
plan tests => 12;
require_ok( 'FactSubclasses.pm' );
#--------------------------------------------------------------------------#
# fixtures
#--------------------------------------------------------------------------#
my ($obj, $err);
my $string = "Who am I?";
my $meta = {
'length' => [ '//num' => length $string ],
};
my $args = {
resource => "cpan:///distfile/JOHNDOE/Foo-Bar-1.23.tar.gz",
content => $string,
};
lives_ok{ $obj = FactThree->new( $args ) }
"new( <hashref> ) doesn't die";
isa_ok( $obj, 'Metabase::Fact::String' );
my $test_guid = "b4ac3de6-15bb-11df-b44d-0018f34ec37c";
lives_ok{ $obj = FactThree->new( %$args, guid => $test_guid ) }
"new( <list> ) doesn't die";
isa_ok( $obj, 'Metabase::Fact::String' );
is( $obj->type, "FactThree", "object type is correct" );
is( $obj->resource, $args->{resource}, "object refers to distribution" );
is_deeply( $obj->content_metadata, $meta, "object content_metadata() correct" );
is( $obj->content, $string, "object content correct" );
my $want_struct = {
content => $string,
metadata => {
core => {
type => 'FactThree' ,
schema_version => 1 ,
guid => $test_guid ,
resource => $args->{resource} ,
valid => 1 ,
},
},
};
my $have_struct = $obj->as_struct;
is( $have_struct->{metadata}{core}{update_time},
$have_struct->{metadata}{core}{creation_time},
"creation_time equals update_time"
);
my $creation_time = delete $have_struct->{metadata}{core}{creation_time};
like( $creation_time, qr/\A\d\d\d\d-\d\d-\d\dT\d\d:\d\d:\d\dZ\z/,
'creation_time is ISO 8601 Zulu',
);
delete $have_struct->{metadata}{core}{update_time};
is_deeply($have_struct, $want_struct, "object as_struct() correct");
|