Institute a central "load this first in testing" package
[dbsrgits/DBIx-Class-Historic.git] / t / storage / reconnect.t
CommitLineData
c0329273 1BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2
4ffbc1d6 3use strict;
f54428ab 4use warnings;
4ffbc1d6 5
e7827df0 6use FindBin;
729656c5 7use B::Deparse;
463c56d2 8use File::Copy 'move';
729656c5 9use Scalar::Util 'weaken';
4ffbc1d6 10use Test::More;
463c56d2 11use Test::Exception;
c0329273 12
4ffbc1d6 13use DBICTest;
14
8d6b1478 15my $db_orig = DBICTest->_sqlite_dbfilename;
e7827df0 16my $db_tmp = "$db_orig.tmp";
4ffbc1d6 17
18# Set up the "usual" sqlite for DBICTest
fcf741b1 19my $schema = DBICTest->init_schema( sqlite_use_file => 1 );
4ffbc1d6 20
ddcc02d1 21my $exception_action_count;
22$schema->exception_action(sub {
23 $exception_action_count++;
24 die @_;
25});
26
4ffbc1d6 27# Make sure we're connected by doing something
9fca7eda 28my @art = $schema->resultset("Artist")->search({ }, { order_by => { -desc => 'name' }});
4ffbc1d6 29cmp_ok(@art, '==', 3, "Three artists returned");
30
31# Disconnect the dbh, and be sneaky about it
b5bf138f 32# Also test if DBD::SQLite finaly knows how to ->disconnect properly
f9dc732b 33{
34 my $w;
35 local $SIG{__WARN__} = sub { $w = shift };
36 $schema->storage->_dbh->disconnect;
37 ok ($w !~ /active statement handles/, 'SQLite can disconnect properly');
b5bf138f 38}
4ffbc1d6 39
40# Try the operation again - What should happen here is:
41# 1. S::DBI blindly attempts the SELECT, which throws an exception
42# 2. It catches the exception, checks ->{Active}/->ping, sees the disconnected state...
43# 3. Reconnects, and retries the operation
44# 4. Success!
9fca7eda 45my @art_two = $schema->resultset("Artist")->search({ }, { order_by => { -desc => 'name' }});
4ffbc1d6 46cmp_ok(@art_two, '==', 3, "Three artists returned");
e7827df0 47
48### Now, disconnect the dbh, and move the db file;
8d1fb3e2 49# create a new one full of garbage, prevent SQLite from connecting.
e7827df0 50$schema->storage->_dbh->disconnect;
463c56d2 51move( $db_orig, $db_tmp )
52 or die "failed to move $db_orig to $db_tmp: $!";
8d1fb3e2 53open my $db_file, '>', $db_orig;
54print $db_file 'THIS IS NOT A REAL DATABASE';
55close $db_file;
e7827df0 56
8d1fb3e2 57### Try the operation again... it should fail, since there's no valid db
b5bf138f 58{
8d1fb3e2 59 # Catch the DBI connection error
60 local $SIG{__WARN__} = sub {};
61 throws_ok {
b74b15b0 62 $schema->resultset("Artist")->create({ name => 'not gonna happen' });
8d1fb3e2 63 } qr/not a database/, 'The operation failed';
b5bf138f 64}
e7827df0 65
8d1fb3e2 66ok (! $schema->storage->connected, 'We are not connected' );
463c56d2 67
e7827df0 68### Now, move the db file back to the correct name
463c56d2 69unlink($db_orig) or die "could not delete $db_orig: $!";
70move( $db_tmp, $db_orig )
71 or die "could not move $db_tmp to $db_orig: $!";
72
73### Try the operation again... this time, it should succeed
74my @art_four;
75lives_ok {
9fca7eda 76 @art_four = $schema->resultset("Artist")->search( {}, { order_by => { -desc => 'name' } } );
463c56d2 77} 'The operation succeeded';
78cmp_ok( @art_four, '==', 3, "Three artists returned" );
9345b14c 79
80# check that reconnection contexts are preserved in txn_do / dbh_do
81
82my $args = [1, 2, 3];
83
84my $ctx_map = {
85 VOID => {
86 invoke => sub { shift->(); 1 },
87 wa => undef,
88 },
89 SCALAR => {
90 invoke => sub { my $foo = shift->() },
91 wa => '',
92 },
93 LIST => {
94 invoke => sub { my @foo = shift->() },
95 wa => 1,
96 },
97};
98
65d35121 99for my $ctx (keys %$ctx_map) {
9345b14c 100
101 # start disconnected and then connected
102 $schema->storage->disconnect;
ddcc02d1 103 $exception_action_count = 0;
104
9345b14c 105 for (1, 2) {
106 my $disarmed;
107
108 $ctx_map->{$ctx}{invoke}->(sub { $schema->txn_do(sub {
109 is_deeply (\@_, $args, 'Args propagated correctly' );
110
111 is (wantarray(), $ctx_map->{$ctx}{wa}, "Correct $ctx context");
112
113 # this will cause a retry
114 $schema->storage->_dbh->disconnect unless $disarmed++;
115
116 isa_ok ($schema->resultset('Artist')->next, 'DBICTest::Artist');
117 }, @$args) });
118 }
ddcc02d1 119
120 is( $exception_action_count, 0, 'exception_action never called' );
9345b14c 121};
122
729656c5 123# make sure RT#110429 does not recur on manual DBI-side disconnect
124for my $cref (
125 sub {
126 my $schema = shift;
127
128 my $g = $schema->txn_scope_guard;
129
130 is( $schema->storage->transaction_depth, 1, "Expected txn depth" );
131
132 $schema->storage->_dbh->disconnect;
133
134 $schema->storage->dbh_do(sub { $_[1]->do('SELECT 1') } );
135 },
136 sub {
137 my $schema = shift;
138 $schema->txn_do(sub {
139 $schema->storage->_dbh->disconnect
140 } );
141 },
142 sub {
143 my $schema = shift;
144 $schema->txn_do(sub {
145 $schema->storage->disconnect;
146 die "VIOLENCE";
147 } );
148 },
149) {
150
151 note( "Testing with " . B::Deparse->new->coderef2text($cref) );
152
153 $schema->storage->disconnect;
ddcc02d1 154 $exception_action_count = 0;
729656c5 155
156 ok( !$schema->storage->connected, 'Not connected' );
157
158 is( $schema->storage->transaction_depth, undef, "Start with unknown txn depth" );
159
160 # messages vary depending on version and whether txn or do, whatever
161 dies_ok {
162 $cref->($schema)
163 } 'Threw *something*';
164
165 ok( !$schema->storage->connected, 'Not connected as a result of failed rollback' );
166
167 is( $schema->storage->transaction_depth, undef, "Depth expectedly unknown after failed rollbacks" );
ddcc02d1 168
169 is( $exception_action_count, 1, "exception_action called only once" );
170}
171
172# check exception_action under tenacious disconnect
173{
174 $schema->storage->disconnect;
175 $exception_action_count = 0;
176
177 throws_ok { $schema->txn_do(sub {
178 $schema->storage->_dbh->disconnect;
179
180 $schema->resultset('Artist')->next;
181 })} qr/prepare on inactive database handle/;
182
183 is( $exception_action_count, 1, "exception_action called only once" );
729656c5 184}
185
186# check that things aren't crazy with a non-violent disconnect
187{
188 my $schema = DBICTest->init_schema( sqlite_use_file => 0, no_deploy => 1 );
189 weaken( my $ws = $schema );
190
191 $schema->is_executed_sql_bind( sub {
192 $ws->txn_do(sub { $ws->storage->disconnect } );
193 }, [ [ 'BEGIN' ] ], 'Only one BEGIN statement' );
194
195 $schema->is_executed_sql_bind( sub {
196 my $g = $ws->txn_scope_guard;
197 $ws->storage->disconnect;
198 }, [ [ 'BEGIN' ] ], 'Only one BEGIN statement' );
199}
200
9345b14c 201done_testing;