roles
[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     package Foo;
10     use Moose;
11     use MooseX::Storage;
12     
13     with Storage('format' => 'JSON');
14     
15     has 'number' => (is => 'ro', isa => 'Int');
16     has 'string' => (is => 'ro', isa => 'Str');
17     has 'float'  => (is => 'ro', isa => 'Num');        
18     has 'array'  => (is => 'ro', isa => 'ArrayRef');
19     has 'hash'   => (is => 'ro', isa => 'HashRef');    
20         has 'object' => (is => 'ro', isa => 'Object');    
21 }
22
23 {
24     my $foo = Foo->new(
25         number => 10,
26         string => 'foo',
27         float  => 10.5,
28         array  => [ 1 .. 10 ],
29         hash   => { map { $_ => undef } (1 .. 10) },
30         object => Foo->new( number => 2 ),
31     );
32     isa_ok($foo, 'Foo');
33
34     is($foo->freeze, 
35     '{"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"}',
36     '... got the right JSON');
37 }
38
39 {
40     my $foo = Foo->thaw('{"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"}');
41     isa_ok($foo, 'Foo');
42
43     is($foo->number, 10, '... got the right number');
44     is($foo->string, 'foo', '... got the right string');
45     is($foo->float, 10.5, '... got the right float');
46     is_deeply($foo->array, [ 1 .. 10], '... got the right array');
47     is_deeply($foo->hash, { map { $_ => undef } (1 .. 10) }, '... got the right hash');
48
49     isa_ok($foo->object, 'Foo');
50     is($foo->object->number, 2, '... got the right number (in the embedded object)');
51 }
52