e84210703401c822580b9847dd30ae10f4892891
[gitmo/MooseX-Storage.git] / t / 001_basic.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More no_plan => 1;
7
8 {
9
10     package Foo;
11     use Moose;
12     use MooseX::Storage;
13
14     with Storage( 'format' => 'JSON' );
15
16     has 'number' => ( is => 'ro', isa => 'Int' );
17     has 'string' => ( is => 'ro', isa => 'Str' );
18     has 'float'  => ( is => 'ro', isa => 'Num' );
19     has 'array'  => ( is => 'ro', isa => 'ArrayRef' );
20     has 'hash'   => ( is => 'ro', isa => 'HashRef' );
21     has 'object' => ( is => 'ro', isa => 'Object' );
22 }
23
24 SKIP: {
25     eval { require Test::JSON };
26     skip "HTML::Lint not installed", 3 if $@;
27     Test::JSON->import();
28     my $foo = Foo->new(
29         number => 10,
30         string => 'foo',
31         float  => 10.5,
32         array  => [ 1 .. 10 ],
33         hash   => { map { $_ => undef } ( 1 .. 10 ) },
34         object => Foo->new( number => 2 ),
35     );
36     isa_ok( $foo, 'Foo' );
37     my $json = $foo->freeze;
38     is_valid_json($json);
39     is_json(
40         $json,
41         '{"array":[1,2,3,4,5,6,7,8,9,10],"hash":{"6":null,"3":null,"7":null,"9":null,"2":null,"8":null,"1":null,"4":null,"10":null,"5":null},"float":10.5,"object":{"number":2,"__class__":"Foo"},"number":10,"__class__":"Foo","string":"foo"}',
42         '... got the right JSON'
43     );
44 }
45
46 {
47     my $foo = Foo->thaw(
48         '{"array":[1,2,3,4,5,6,7,8,9,10],"hash":{"6":null,"3":null,"7":null,"9":null,"2":null,"8":null,"1":null,"4":null,"10":null,"5":null},"float":10.5,"object":{"number":2,"__class__":"Foo"},"number":10,"__class__":"Foo","string":"foo"}'
49     );
50     isa_ok( $foo, 'Foo' );
51
52     is( $foo->number, 10,    '... got the right number' );
53     is( $foo->string, 'foo', '... got the right string' );
54     is( $foo->float,  10.5,  '... got the right float' );
55     is_deeply( $foo->array, [ 1 .. 10 ], '... got the right array' );
56     is_deeply(
57         $foo->hash,
58         { map { $_ => undef } ( 1 .. 10 ) },
59         '... got the right hash'
60     );
61
62     isa_ok( $foo->object, 'Foo' );
63     is( $foo->object->number, 2,
64         '... got the right number (in the embedded object)' );
65 }
66