Merge branch 'master' of jules.scsys.co.uk:MooseX-Storage
[gitmo/MooseX-Storage.git] / t / 010_basic_json.t
CommitLineData
ec9c1923 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
8d8356bb 6use Test::More;
ec9c1923 7
766ab81f 8BEGIN {
8d8356bb 9 eval "use Test::JSON";
766ab81f 10 plan skip_all => "Test::JSON is required for this test" if $@;
4fa64e86 11 eval "use JSON::Any";
766ab81f 12 plan skip_all => "JSON::Any is required for this test" if $@;
8d8356bb 13 plan tests => 12;
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
8d8356bb 46 is_valid_json($json, '.. this is valid JSON');
7aac8ce9 47
cfee09ad 48
ec9c1923 49 is_json(
50 $json,
7aac8ce9 51'{"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"}',
ec9c1923 52 '... got the right JSON'
53 );
cfee09ad 54
ec9c1923 55}
56
57{
7aac8ce9 58 my $foo =
59 Foo->thaw(
60'{"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"}'
61 );
ec9c1923 62 isa_ok( $foo, 'Foo' );
63
64 is( $foo->number, 10, '... got the right number' );
65 is( $foo->string, 'foo', '... got the right string' );
66 is( $foo->float, 10.5, '... got the right float' );
67 is_deeply( $foo->array, [ 1 .. 10 ], '... got the right array' );
68 is_deeply(
69 $foo->hash,
70 { map { $_ => undef } ( 1 .. 10 ) },
71 '... got the right hash'
72 );
73
74 isa_ok( $foo->object, 'Foo' );
75 is( $foo->object->number, 2,
76 '... got the right number (in the embedded object)' );
77}
78