convert all uses of Test::Exception to Test::Fatal.
[gitmo/MooseX-Storage.git] / t / 100_io.t
CommitLineData
ec9c1923 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
4fa64e86 6use Test::More;
08d0f48e 7use File::Temp qw(tempdir);
5e5d4e28 8use File::Spec::Functions;
cfd008fa 9my $dir = tempdir;
ec9c1923 10
0b173188 11use Test::Requires {
12 'JSON::Any' => 0.01, # skip all if not installed
13};
14
15BEGIN {
16 plan tests => 10;
ec9c1923 17 use_ok('MooseX::Storage');
18}
19
20{
21 package Foo;
22 use Moose;
23 use MooseX::Storage;
b5f363ac 24
ec9c1923 25 with Storage(format => 'JSON', io => 'File');
b5f363ac 26
ec9c1923 27 has 'number' => (is => 'ro', isa => 'Int');
28 has 'string' => (is => 'ro', isa => 'Str');
b5f363ac 29 has 'float' => (is => 'ro', isa => 'Num');
ec9c1923 30 has 'array' => (is => 'ro', isa => 'ArrayRef');
b5f363ac 31 has 'hash' => (is => 'ro', isa => 'HashRef');
32 has 'object' => (is => 'ro', isa => 'Object');
ec9c1923 33}
34
5e5d4e28 35my $file = catfile( $dir, 'temp.json' );
ec9c1923 36
37{
38 my $foo = Foo->new(
39 number => 10,
40 string => 'foo',
41 float => 10.5,
42 array => [ 1 .. 10 ],
43 hash => { map { $_ => undef } (1 .. 10) },
44 object => Foo->new( number => 2 ),
45 );
46 isa_ok($foo, 'Foo');
47
48 $foo->store($file);
49}
50
51{
52 my $foo = Foo->load($file);
53 isa_ok($foo, 'Foo');
54
55 is($foo->number, 10, '... got the right number');
56 is($foo->string, 'foo', '... got the right string');
57 is($foo->float, 10.5, '... got the right float');
58 is_deeply($foo->array, [ 1 .. 10], '... got the right array');
59 is_deeply($foo->hash, { map { $_ => undef } (1 .. 10) }, '... got the right hash');
60
61 isa_ok($foo->object, 'Foo');
62 is($foo->object->number, 2, '... got the right number (in the embedded object)');
63}
64