Port ::Admin from Moose to Moo+Type::Tiny
[dbsrgits/DBIx-Class.git] / t / admin / 03data.t
1 use DBIx::Class::Optional::Dependencies -skip_all_without => 'admin';
2
3 use strict;
4 use warnings;
5
6 use Test::More;
7 use Test::Exception;
8
9 use lib 't/lib';
10 use DBICTest;
11
12 use DBIx::Class::Admin;
13 BEGIN {
14   no warnings 'redefine';
15   # no questions asked
16   sub DBIx::Class::Admin::_confirm { 1 };
17 }
18
19 { # test data maniplulation functions
20
21   # create a DBICTest so we can steal its connect info
22   my $schema = DBICTest->init_schema(
23     sqlite_use_file => 1,
24   );
25
26   my $admin = DBIx::Class::Admin->new(
27     schema_class=> "DBICTest::Schema",
28     connect_info => $schema->storage->connect_info(),
29     quiet  => 1,
30     _confirm=>1,
31   );
32   isa_ok ($admin, 'DBIx::Class::Admin', 'create the admin object');
33
34   $admin->insert('Employee', { name => 'Matt' });
35   my $employees = $schema->resultset('Employee');
36   is ($employees->count(), 1, "insert okay" );
37
38   my $employee = $employees->find(1);
39   is($employee->name(),  'Matt', "insert valid" );
40
41   $admin->update('Employee', {name => 'Trout'}, {name => 'Matt'});
42
43   $employee = $employees->find(1);
44   is($employee->name(),  'Trout', "update Matt to Trout" );
45
46   $admin->insert('Employee', {name =>'Aran'});
47
48   my $expected_data = [
49     [$employee->result_source->columns() ],
50     [1,1,undef,undef,undef,'Trout',undef],
51     [2,2,undef,undef,undef,'Aran',undef]
52   ];
53   my $data;
54   lives_ok { $data = $admin->select('Employee', undef, { order_by => 'employee_id' })} 'can retrive data from database';
55   is_deeply($data, $expected_data, 'DB matches whats expected');
56
57   $admin->delete('Employee', {name=>'Trout'});
58   my $del_rs  = $employees->search({name => 'Trout'});
59   is($del_rs->count(), 0, "delete Trout" );
60   is ($employees->count(), 1, "left Aran" );
61 }
62
63 done_testing;