use Test::Deep::JSON rather than Test::JSON
[gitmo/MooseX-Storage.git] / t / 010_basic_json.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5 use Test::Deep;
6
7 use Test::Requires {
8     'JSON::Any' => 0.01,
9     'Test::Deep::JSON' => 0,
10 };
11
12 BEGIN {
13     plan tests => 11;
14     use_ok('MooseX::Storage');
15 }
16
17 {
18
19     package Foo;
20     use Moose;
21     use MooseX::Storage;
22
23     with Storage( 'format' => 'JSON' );
24
25     has 'number' => ( is => 'ro', isa => 'Int' );
26     has 'string' => ( is => 'ro', isa => 'Str' );
27     has 'float'  => ( is => 'ro', isa => 'Num' );
28     has 'array'  => ( is => 'ro', isa => 'ArrayRef' );
29     has 'hash'   => ( is => 'ro', isa => 'HashRef' );
30     has 'object' => ( is => 'ro', isa => 'Object' );
31 }
32
33 {
34     my $foo = Foo->new(
35         number => 10,
36         string => 'foo',
37         float  => 10.5,
38         array  => [ 1 .. 10 ],
39         hash   => { map { $_ => undef } ( 1 .. 10 ) },
40         object => Foo->new( number => 2 ),
41     );
42     isa_ok( $foo, 'Foo' );
43
44     my $json = $foo->freeze;
45
46     cmp_deeply(
47         $json,
48         json({
49             number => 10,
50             string => 'foo',
51             float => 10.5,
52             array => [ 1 .. 10 ],
53             hash => { map { $_ => undef } (1 .. 10) },
54             __CLASS__ => 'Foo',
55             object => {
56                 number => 2,
57                 __CLASS__ => 'Foo'
58             },
59         }),
60         'is valid JSON and content matches',
61     );
62 }
63
64 {
65     my $foo =
66       Foo->thaw(
67 '{"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"}'
68       );
69     isa_ok( $foo, 'Foo' );
70
71     is( $foo->number, 10,    '... got the right number' );
72     is( $foo->string, 'foo', '... got the right string' );
73     is( $foo->float,  10.5,  '... got the right float' );
74     cmp_deeply( $foo->array, [ 1 .. 10 ], '... got the right array' );
75     cmp_deeply(
76         $foo->hash,
77         { map { $_ => undef } ( 1 .. 10 ) },
78         '... got the right hash'
79     );
80
81     isa_ok( $foo->object, 'Foo' );
82     is( $foo->object->number, 2,
83         '... got the right number (in the embedded object)' );
84 }
85