General cleanup of error messages - quote identifiers/names where sensible
[dbsrgits/DBIx-Class.git] / t / storage / txn_scope_guard.t
CommitLineData
471a5fdd 1use strict;
2use warnings;
3
4use Test::More;
5use Test::Warn;
6use Test::Exception;
7use lib qw(t/lib);
8use DBICTest;
9
10# Test txn_scope_guard
11{
12 my $schema = DBICTest->init_schema();
13
14 is($schema->storage->transaction_depth, 0, "Correct transaction depth");
15 my $artist_rs = $schema->resultset('Artist');
16
17 my $fn = __FILE__;
18 throws_ok {
19 my $guard = $schema->txn_scope_guard;
20
21 $artist_rs->create({
22 name => 'Death Cab for Cutie',
23 made_up_column => 1,
24 });
25
26 $guard->commit;
e705f529 27 } qr/No such column 'made_up_column' .*? at .*?\Q$fn\E line \d+/s, "Error propogated okay";
471a5fdd 28
29 ok(!$artist_rs->find({name => 'Death Cab for Cutie'}), "Artist not created");
30
31 my $inner_exception = ''; # set in inner() below
32 throws_ok (sub {
33 outer($schema, 1);
34 }, qr/$inner_exception/, "Nested exceptions propogated");
35
36 ok(!$artist_rs->find({name => 'Death Cab for Cutie'}), "Artist not created");
37
38 lives_ok (sub {
39
40 # this weird assignment is to stop perl <= 5.8.9 leaking $schema on nested sub{}s
41 my $s = $schema;
42
43 warnings_exist ( sub {
44 # The 0 arg says don't die, just let the scope guard go out of scope
45 # forcing a txn_rollback to happen
46 outer($s, 0);
47 }, qr/A DBIx::Class::Storage::TxnScopeGuard went out of scope without explicit commit or error. Rolling back./, 'Out of scope warning detected');
48
49 ok(!$artist_rs->find({name => 'Death Cab for Cutie'}), "Artist not created");
50
51 }, 'rollback successful withot exception');
52
53 sub outer {
54 my ($schema, $fatal) = @_;
55
56 my $guard = $schema->txn_scope_guard;
57 $schema->resultset('Artist')->create({
58 name => 'Death Cab for Cutie',
59 });
60 inner($schema, $fatal);
61 }
62
63 sub inner {
64 my ($schema, $fatal) = @_;
65
66 my $inner_guard = $schema->txn_scope_guard;
67 is($schema->storage->transaction_depth, 2, "Correct transaction depth");
68
69 my $artist = $schema->resultset('Artist')->find({ name => 'Death Cab for Cutie' });
70
71 eval {
72 $artist->cds->create({
73 title => 'Plans',
74 year => 2005,
75 $fatal ? ( foo => 'bar' ) : ()
76 });
77 };
78 if ($@) {
79 # Record what got thrown so we can test it propgates out properly.
80 $inner_exception = $@;
81 die $@;
82 }
83
84 # inner guard should commit without consequences
85 $inner_guard->commit;
86 }
87}
88
89# make sure the guard does not eat exceptions
90{
91 my $schema = DBICTest->init_schema;
92
93 no strict 'refs';
94 no warnings 'redefine';
87bf71d5 95
471a5fdd 96 local *{DBIx::Class::Storage::DBI::txn_rollback} = sub { die 'die die my darling' };
87bf71d5 97 Class::C3->reinitialize() if DBIx::Class::_ENV_::OLD_MRO;
471a5fdd 98
99 throws_ok (sub {
100 my $guard = $schema->txn_scope_guard;
101 $schema->resultset ('Artist')->create ({ name => 'bohhoo'});
102
103 # this should freak out the guard rollback
104 # but it won't work because DBD::SQLite is buggy
105 # instead just install a toxic rollback above
106 #$schema->storage->_dbh( $schema->storage->_dbh->clone );
107
108 die 'Deliberate exception';
e69b5335 109 }, ($] >= 5.013008 )
110 ? qr/Deliberate exception/s # temporary until we get the generic exception wrapper rolling
111 : qr/Deliberate exception.+Rollback failed/s
112 );
471a5fdd 113
114 # just to mask off warning since we could not disconnect above
115 $schema->storage->_dbh->disconnect;
116}
117
118# make sure it warns *big* on failed rollbacks
f62c5724 119# test with and without a poisoned $@
120for my $poison (0,1) {
121
471a5fdd 122 my $schema = DBICTest->init_schema();
123
124 no strict 'refs';
125 no warnings 'redefine';
126 local *{DBIx::Class::Storage::DBI::txn_rollback} = sub { die 'die die my darling' };
87bf71d5 127 Class::C3->reinitialize() if DBIx::Class::_ENV_::OLD_MRO;
471a5fdd 128
129#The warn from within a DESTROY callback freaks out Test::Warn, do it old-school
130=begin
131 warnings_exist (
132 sub {
133 my $guard = $schema->txn_scope_guard;
134 $schema->resultset ('Artist')->create ({ name => 'bohhoo'});
135
136 # this should freak out the guard rollback
137 # but it won't work because DBD::SQLite is buggy
138 # instead just install a toxic rollback above
139 #$schema->storage->_dbh( $schema->storage->_dbh->clone );
140 },
141 [
142 qr/A DBIx::Class::Storage::TxnScopeGuard went out of scope without explicit commit or error. Rolling back./,
143 qr/\*+ ROLLBACK FAILED\!\!\! \*+/,
144 ],
145 'proper warnings generated on out-of-scope+rollback failure'
146 );
147=cut
148
149# delete this once the above works properly (same test)
150 my @want = (
151 qr/A DBIx::Class::Storage::TxnScopeGuard went out of scope without explicit commit or error. Rolling back./,
152 qr/\*+ ROLLBACK FAILED\!\!\! \*+/,
153 );
154
155 my @w;
156 local $SIG{__WARN__} = sub {
157 if (grep {$_[0] =~ $_} (@want)) {
158 push @w, $_[0];
159 }
160 else {
161 warn $_[0];
162 }
163 };
164 {
f62c5724 165 eval { die 'GIFT!' if $poison };
471a5fdd 166 my $guard = $schema->txn_scope_guard;
167 $schema->resultset ('Artist')->create ({ name => 'bohhoo'});
168 }
169
f62c5724 170 is (@w, 2, 'Both expected warnings found' . ($poison ? ' (after $@ poisoning)' : '') );
471a5fdd 171
172 # just to mask off warning since we could not disconnect above
173 $schema->storage->_dbh->disconnect;
174}
175
176done_testing;