Patch to use JSON::Any and Test::JSON
[gitmo/MooseX-Storage.git] / t / 001_basic.t
CommitLineData
e59193fb 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use Test::More no_plan => 1;
7
8{
b5384d08 9
e59193fb 10 package Foo;
11 use Moose;
12 use MooseX::Storage;
b5384d08 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' );
e59193fb 22}
23
b5384d08 24SKIP: {
25 eval { require Test::JSON };
26 skip "HTML::Lint not installed", 3 if $@;
27 Test::JSON->import();
a23e18d7 28 my $foo = Foo->new(
29 number => 10,
30 string => 'foo',
31 float => 10.5,
32 array => [ 1 .. 10 ],
b5384d08 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'
a23e18d7 43 );
a23e18d7 44}
45
46{
b5384d08 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' );
a23e18d7 51
b5384d08 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 );
a23e18d7 61
b5384d08 62 isa_ok( $foo->object, 'Foo' );
63 is( $foo->object->number, 2,
64 '... got the right number (in the embedded object)' );
a23e18d7 65}
66