bump to latest version of bundle
[gitmo/MooseX-Storage.git] / t / 010_basic_json.t
CommitLineData
ec9c1923 1use strict;
2use warnings;
3
8d8356bb 4use Test::More;
619ab942 5use Test::Deep;
ec9c1923 6
0b173188 7use Test::Requires {
0b173188 8 'JSON::Any' => 0.01,
880d376a 9 'Test::Deep::JSON' => 0,
0b173188 10};
11
12BEGIN {
880d376a 13 plan tests => 11;
ec9c1923 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' );
7aac8ce9 43
ec9c1923 44 my $json = $foo->freeze;
7aac8ce9 45
880d376a 46 cmp_deeply(
ec9c1923 47 $json,
880d376a 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',
ec9c1923 61 );
62}
63
64{
7aac8ce9 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 );
ec9c1923 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' );
619ab942 74 cmp_deeply( $foo->array, [ 1 .. 10 ], '... got the right array' );
75 cmp_deeply(
ec9c1923 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