Massive cleanup of DateTime test dependencies, other interim
[dbsrgits/DBIx-Class.git] / t / storage / error.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5 use Test::Warn;
6 use Test::Exception;
7
8 use lib qw(t/lib);
9 use_ok( 'DBICTest' );
10 use_ok( 'DBICTest::Schema' );
11
12 my $schema = DBICTest->init_schema;
13
14 my $e_start = quotemeta('DBIx::Class::');
15
16 warnings_are ( sub {
17   throws_ok (
18     sub {
19       $schema->resultset('CD')->create({ title => 'vacation in antarctica' })
20     },
21     qr/$e_start.+constraint failed.+NULL/s
22   );  # as opposed to some other error
23 }, [], 'No warnings besides exception' );
24
25 my $dbh = $schema->storage->dbh;
26
27 throws_ok (
28   sub {
29     $dbh->do ('INSERT INTO nonexistent_table VALUES (1)')
30   },
31   qr/$e_start.+DBI Exception.+no such table/,
32   'DBI exceptions properly handled by dbic-installed callback'
33 );
34
35 # destruction of everything except the $dbh should use the proper
36 # exception fallback:
37
38 # FIXME
39 # These explicit disconnections on loss of $storage don't seem
40 # right... disable it here for the test anyway
41 {
42   local $dbh->{Callbacks}{disconnect} = sub { 1 };
43
44   undef ($schema);
45   throws_ok (
46     sub {
47       $dbh->do ('INSERT INTO nonexistent_table VALUES (1)')
48     },
49     qr/DBI Exception.+unhandled by DBIC.+no such table/,
50     'callback works after $schema is gone'
51   );
52 }
53
54 done_testing;