dump functionality added
[dbsrgits/DBIx-Class-Fixtures.git] / t / 02-dump-basic.t
CommitLineData
c1a04675 1#!perl
2
3use DBIx::Class::Fixtures;
4use Test::More tests => 3;
5use DBICTest;
6use Path::Class;
7use Data::Dumper;
8
9# set up and populate schema
10ok(my $schema = DBICTest->init_schema(), 'got schema');
11
12my $config_dir = 't/var/configs';
13
14# do dump
15ok(my $fixtures = DBIx::Class::Fixtures->new({ config_dir => $config_dir, debug => 0 }), 'object created with correct config dir');
16ok($fixtures->dump({ config => 'simple.json', schema => $schema, directory => 't/var/fixtures' }), 'simple dump executed okay');
17
18# check dump is okay
19my $dir = dir('t/var/fixtures/artist');
20ok(-e 't/var/fixtures/artist', 'artist directory created');
21
22my @children = $dir->children;
23is(scalar(@children), 1, 'right number of fixtures created');
24
25my $fix_file = $children[0];
26my $HASH1; eval($fix_file->slurp());
27is(ref $HASH1, 'HASH', 'fixture evals into hash');
28
29is_deeply([sort $schema->source('Artist')->columns], [sort keys %{$HASH1}], 'fixture has correct keys');
30
31my $artist = $schema->resultset('Artist')->find($HASH1->{artistid});
32is_deeply({$artist->get_columns}, $HASH1, 'dumped fixture is equivalent to artist row');
33
34$schema->resultset('Artist')->delete; # so we can create the row again on the next line
35ok($schema->resultset('Artist')->create($HASH1), 'new dbic row created from fixture');