Run author side tests always
[gitmo/MooseX-Storage.git] / t / 101_io_atomic.t
CommitLineData
e64b7302 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
8d8356bb 6use Test::More;
5e5d4e28 7use File::Temp qw(tempdir);
8use File::Spec::Functions;
9my $dir = tempdir( CLEANUP => 1 );
e64b7302 10
11BEGIN {
8d8356bb 12 eval "use IO::AtomicFile";
766ab81f 13 plan skip_all => "IO::AtomicFile is required for this test" if $@;
4fa64e86 14 eval "use JSON::Any";
766ab81f 15 plan skip_all => "JSON::Any is required for this test" if $@;
8d8356bb 16 plan tests => 10;
e64b7302 17 use_ok('MooseX::Storage');
18}
19
20{
21 package Foo;
22 use Moose;
23 use MooseX::Storage;
766ab81f 24
e64b7302 25 with Storage(format => 'JSON', io => 'AtomicFile');
766ab81f 26
e64b7302 27 has 'number' => (is => 'ro', isa => 'Int');
28 has 'string' => (is => 'ro', isa => 'Str');
766ab81f 29 has 'float' => (is => 'ro', isa => 'Num');
e64b7302 30 has 'array' => (is => 'ro', isa => 'ArrayRef');
766ab81f 31 has 'hash' => (is => 'ro', isa => 'HashRef');
32 has 'object' => (is => 'ro', isa => 'Object');
e64b7302 33}
34
5e5d4e28 35my $file = catfile($dir,'temp.json');
e64b7302 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