Add import-time-skip support to OptDeps, switch most tests over to that
[dbsrgits/DBIx-Class.git] / t / admin / 03data.t
CommitLineData
cb551b07 1use DBIx::Class::Optional::Dependencies -skip_all_without => 'admin';
2
a1696195 3use strict;
4use warnings;
5
6use Test::More;
a1696195 7use Test::Exception;
a1696195 8
4bea1fe7 9use lib 't/lib';
10use DBICTest;
11
cb551b07 12use DBIx::Class::Admin;
a1696195 13
14{ # test data maniplulation functions
15
1edd4ca6 16 # create a DBICTest so we can steal its connect info
17 my $schema = DBICTest->init_schema(
1edd4ca6 18 sqlite_use_file => 1,
72cfa3b3 19 );
1edd4ca6 20
21 my $admin = DBIx::Class::Admin->new(
22 schema_class=> "DBICTest::Schema",
23 connect_info => $schema->storage->connect_info(),
24 quiet => 1,
25 _confirm=>1,
26 );
27 isa_ok ($admin, 'DBIx::Class::Admin', 'create the admin object');
28
29 $admin->insert('Employee', { name => 'Matt' });
30 my $employees = $schema->resultset('Employee');
31 is ($employees->count(), 1, "insert okay" );
32
33 my $employee = $employees->find(1);
34 is($employee->name(), 'Matt', "insert valid" );
35
36 $admin->update('Employee', {name => 'Trout'}, {name => 'Matt'});
37
38 $employee = $employees->find(1);
39 is($employee->name(), 'Trout', "update Matt to Trout" );
40
41 $admin->insert('Employee', {name =>'Aran'});
42
8273e845 43 my $expected_data = [
1edd4ca6 44 [$employee->result_source->columns() ],
68888c09 45 [1,1,undef,undef,undef,'Trout',undef],
46 [2,2,undef,undef,undef,'Aran',undef]
1edd4ca6 47 ];
48 my $data;
fb88ca2c 49 lives_ok { $data = $admin->select('Employee', undef, { order_by => 'employee_id' })} 'can retrive data from database';
26831042 50 is_deeply($data, $expected_data, 'DB matches whats expected');
1edd4ca6 51
52 $admin->delete('Employee', {name=>'Trout'});
53 my $del_rs = $employees->search({name => 'Trout'});
54 is($del_rs->count(), 0, "delete Trout" );
55 is ($employees->count(), 1, "left Aran" );
a1696195 56}
57
a1696195 58done_testing;