changes to replication so that if a replicant is offline when we do the initial conne...
[dbsrgits/DBIx-Class.git] / t / 93storage_replication.t
1 use strict;
2 use warnings;
3 use lib qw(t/lib);
4 use Test::More;
5 use Test::Exception;
6 use DBICTest;
7
8 BEGIN {
9     eval "use DBIx::Class::Storage::DBI::Replicated; use Test::Moose";
10     plan $@
11         ? ( skip_all => "Deps not installed: $@" )
12         : ( tests => 79 );
13 }
14
15 use_ok 'DBIx::Class::Storage::DBI::Replicated::Pool';
16 use_ok 'DBIx::Class::Storage::DBI::Replicated::Balancer';
17 use_ok 'DBIx::Class::Storage::DBI::Replicated::Replicant';
18 use_ok 'DBIx::Class::Storage::DBI::Replicated';
19
20 =head1 HOW TO USE
21
22     This is a test of the replicated storage system.  This will work in one of
23     two ways, either it was try to fake replication with a couple of SQLite DBs
24     and creative use of copy, or if you define a couple of %ENV vars correctly
25     will try to test those.  If you do that, it will assume the setup is properly
26     replicating.  Your results may vary, but I have demonstrated this to work with
27     mysql native replication.
28     
29 =cut
30
31
32 ## ----------------------------------------------------------------------------
33 ## Build a class to hold all our required testing data and methods.
34 ## ----------------------------------------------------------------------------
35
36 TESTSCHEMACLASSES: {
37
38     ## --------------------------------------------------------------------- ##
39     ## Create an object to contain your replicated stuff.
40     ## --------------------------------------------------------------------- ##
41     
42     package DBIx::Class::DBI::Replicated::TestReplication;
43    
44     use DBICTest;
45     use base qw/Class::Accessor::Fast/;
46     
47     __PACKAGE__->mk_accessors( qw/schema/ );
48
49     ## Initialize the object
50     
51         sub new {
52             my $class = shift @_;
53             my $self = $class->SUPER::new(@_);
54         
55             $self->schema( $self->init_schema );
56             return $self;
57         }
58     
59     ## Get the Schema and set the replication storage type
60     
61     sub init_schema {
62         # current SQLT SQLite producer does not handle DROP TABLE IF EXISTS, trap warnings here
63         local $SIG{__WARN__} = sub { warn @_ unless $_[0] =~ /no such table.+DROP TABLE/ };
64
65         my $class = shift @_;
66
67         my $schema = DBICTest->init_schema(
68             sqlite_use_file => 1,
69             storage_type=>{
70                 '::DBI::Replicated' => {
71                         balancer_type=>'::Random',
72                     balancer_args=>{
73                         auto_validate_every=>100,
74                     },
75                 }
76             },
77             deploy_args=>{
78                    add_drop_table => 1,
79             },
80         );
81
82         return $schema;
83     }
84     
85     sub generate_replicant_connect_info {}
86     sub replicate {}
87     sub cleanup {}
88
89   
90     ## --------------------------------------------------------------------- ##
91     ## Subclass for when you are using SQLite for testing, this provides a fake
92     ## replication support.
93     ## --------------------------------------------------------------------- ##
94         
95     package DBIx::Class::DBI::Replicated::TestReplication::SQLite;
96
97     use DBICTest;
98     use File::Copy;    
99     use base 'DBIx::Class::DBI::Replicated::TestReplication';
100     
101     __PACKAGE__->mk_accessors( qw/master_path slave_paths/ );
102     
103     ## Set the mastep path from DBICTest
104     
105         sub new {
106             my $class = shift @_;
107             my $self = $class->SUPER::new(@_);
108         
109             $self->master_path( DBICTest->_sqlite_dbfilename );
110             $self->slave_paths([
111             "t/var/DBIxClass_slave1.db",
112             "t/var/DBIxClass_slave2.db",    
113         ]);
114         
115             return $self;
116         }    
117         
118     ## Return an Array of ArrayRefs where each ArrayRef is suitable to use for
119     ## $storage->connect_info to be used for connecting replicants.
120     
121     sub generate_replicant_connect_info {
122         my $self = shift @_;
123         my @dsn = map {
124             "dbi:SQLite:${_}";
125         } @{$self->slave_paths};
126         
127         return map { [$_,'','',{AutoCommit=>1}] } @dsn;
128     }
129     
130     ## Do a 'good enough' replication by copying the master dbfile over each of
131     ## the slave dbfiles.  If the master is SQLite we do this, otherwise we
132     ## just do a one second pause to let the slaves catch up.
133     
134     sub replicate {
135         my $self = shift @_;
136         foreach my $slave (@{$self->slave_paths}) {
137             copy($self->master_path, $slave);
138         }
139     }
140     
141     ## Cleanup after ourselves.  Unlink all gthe slave paths.
142     
143     sub cleanup {
144         my $self = shift @_;
145         foreach my $slave (@{$self->slave_paths}) {
146             unlink $slave;
147         }     
148     }
149     
150     ## --------------------------------------------------------------------- ##
151     ## Subclass for when you are setting the databases via custom export vars
152     ## This is for when you have a replicating database setup that you are
153     ## going to test against.  You'll need to define the correct $ENV and have
154     ## two slave databases to test against, as well as a replication system
155     ## that will replicate in less than 1 second.
156     ## --------------------------------------------------------------------- ##
157         
158     package DBIx::Class::DBI::Replicated::TestReplication::Custom; 
159     use base 'DBIx::Class::DBI::Replicated::TestReplication';
160     
161     ## Return an Array of ArrayRefs where each ArrayRef is suitable to use for
162     ## $storage->connect_info to be used for connecting replicants.
163     
164     sub generate_replicant_connect_info { 
165         return (
166             [$ENV{"DBICTEST_SLAVE0_DSN"}, $ENV{"DBICTEST_SLAVE0_DBUSER"}, $ENV{"DBICTEST_SLAVE0_DBPASS"}, {AutoCommit => 1}],
167             [$ENV{"DBICTEST_SLAVE1_DSN"}, $ENV{"DBICTEST_SLAVE1_DBUSER"}, $ENV{"DBICTEST_SLAVE1_DBPASS"}, {AutoCommit => 1}],           
168         );
169     }
170     
171     ## pause a bit to let the replication catch up 
172     
173     sub replicate {
174         sleep 1;
175     } 
176 }
177
178 ## ----------------------------------------------------------------------------
179 ## Create an object and run some tests
180 ## ----------------------------------------------------------------------------
181
182 ## Thi first bunch of tests are basic, just make sure all the bits are behaving
183
184 my $replicated_class = DBICTest->has_custom_dsn ?
185     'DBIx::Class::DBI::Replicated::TestReplication::Custom' :
186     'DBIx::Class::DBI::Replicated::TestReplication::SQLite';
187
188 ok my $replicated = $replicated_class->new
189     => 'Created a replication object';
190     
191 isa_ok $replicated->schema
192     => 'DBIx::Class::Schema';
193     
194 isa_ok $replicated->schema->storage
195     => 'DBIx::Class::Storage::DBI::Replicated';
196
197 ok $replicated->schema->storage->meta
198     => 'has a meta object';
199     
200 isa_ok $replicated->schema->storage->master
201     => 'DBIx::Class::Storage::DBI';
202     
203 isa_ok $replicated->schema->storage->pool
204     => 'DBIx::Class::Storage::DBI::Replicated::Pool';
205     
206 does_ok $replicated->schema->storage->balancer
207     => 'DBIx::Class::Storage::DBI::Replicated::Balancer'; 
208
209 ok my @replicant_connects = $replicated->generate_replicant_connect_info
210     => 'got replication connect information';
211
212 ok my @replicated_storages = $replicated->schema->storage->connect_replicants(@replicant_connects)
213     => 'Created some storages suitable for replicants';
214     
215 isa_ok $replicated->schema->storage->balancer->current_replicant
216     => 'DBIx::Class::Storage::DBI';
217     
218 ok $replicated->schema->storage->pool->has_replicants
219     => 'does have replicants';     
220
221 is $replicated->schema->storage->pool->num_replicants => 2
222     => 'has two replicants';
223        
224 does_ok $replicated_storages[0]
225     => 'DBIx::Class::Storage::DBI::Replicated::Replicant';
226
227 does_ok $replicated_storages[1]
228     => 'DBIx::Class::Storage::DBI::Replicated::Replicant';
229     
230 my @replicant_names = keys %{$replicated->schema->storage->replicants};
231
232 does_ok $replicated->schema->storage->replicants->{$replicant_names[0]}
233     => 'DBIx::Class::Storage::DBI::Replicated::Replicant';
234
235 does_ok $replicated->schema->storage->replicants->{$replicant_names[1]}
236     => 'DBIx::Class::Storage::DBI::Replicated::Replicant';  
237
238 ## Add some info to the database
239
240 $replicated
241     ->schema
242     ->populate('Artist', [
243         [ qw/artistid name/ ],
244         [ 4, "Ozric Tentacles"],
245     ]);
246                 
247 ## Make sure all the slaves have the table definitions
248
249 $replicated->replicate;
250 $replicated->schema->storage->replicants->{$replicant_names[0]}->active(1);
251 $replicated->schema->storage->replicants->{$replicant_names[1]}->active(1);
252 $replicated->schema->storage->pool->validate_replicants;
253
254 ## Make sure we can read the data.
255
256 ok my $artist1 = $replicated->schema->resultset('Artist')->find(4)
257     => 'Created Result';
258
259 isa_ok $artist1
260     => 'DBICTest::Artist';
261     
262 is $artist1->name, 'Ozric Tentacles'
263     => 'Found expected name for first result';
264
265 ## Add some new rows that only the master will have  This is because
266 ## we overload any type of write operation so that is must hit the master
267 ## database.
268
269 $replicated
270     ->schema
271     ->populate('Artist', [
272         [ qw/artistid name/ ],
273         [ 5, "Doom's Children"],
274         [ 6, "Dead On Arrival"],
275         [ 7, "Watergate"],
276     ]);
277
278 ## Make sure all the slaves have the table definitions
279 $replicated->replicate;
280
281 ## Should find some data now
282
283 ok my $artist2 = $replicated->schema->resultset('Artist')->find(5)
284     => 'Sync succeed';
285     
286 isa_ok $artist2
287     => 'DBICTest::Artist';
288     
289 is $artist2->name, "Doom's Children"
290     => 'Found expected name for first result';
291
292 ## What happens when we disconnect all the replicants?
293
294 is $replicated->schema->storage->pool->connected_replicants => 2
295     => "both replicants are connected";
296     
297 $replicated->schema->storage->replicants->{$replicant_names[0]}->disconnect;
298 $replicated->schema->storage->replicants->{$replicant_names[1]}->disconnect;
299
300 is $replicated->schema->storage->pool->connected_replicants => 0
301     => "both replicants are now disconnected";
302
303 ## All these should pass, since the database should automatically reconnect
304
305 ok my $artist3 = $replicated->schema->resultset('Artist')->find(6)
306     => 'Still finding stuff.';
307     
308 isa_ok $artist3
309     => 'DBICTest::Artist';
310     
311 is $artist3->name, "Dead On Arrival"
312     => 'Found expected name for first result';
313
314 is $replicated->schema->storage->pool->connected_replicants => 1
315     => "One replicant reconnected to handle the job";
316     
317 ## What happens when we try to select something that doesn't exist?
318
319 ok ! $replicated->schema->resultset('Artist')->find(666)
320     => 'Correctly failed to find something.';
321     
322 ## test the reliable option
323
324 TESTRELIABLE: {
325         
326         $replicated->schema->storage->set_reliable_storage;
327         
328         ok $replicated->schema->resultset('Artist')->find(2)
329             => 'Read from master 1';
330         
331         ok $replicated->schema->resultset('Artist')->find(5)
332             => 'Read from master 2';
333             
334     $replicated->schema->storage->set_balanced_storage;     
335             
336         ok $replicated->schema->resultset('Artist')->find(3)
337         => 'Read from replicant';
338 }
339
340 ## Make sure when reliable goes out of scope, we are using replicants again
341
342 ok $replicated->schema->resultset('Artist')->find(1)
343     => 'back to replicant 1.';
344     
345 ok $replicated->schema->resultset('Artist')->find(2)
346     => 'back to replicant 2.';
347
348 ## set all the replicants to inactive, and make sure the balancer falls back to
349 ## the master.
350
351 $replicated->schema->storage->replicants->{$replicant_names[0]}->active(0);
352 $replicated->schema->storage->replicants->{$replicant_names[1]}->active(0);
353     
354 ok $replicated->schema->resultset('Artist')->find(2)
355     => 'Fallback to master';
356
357 $replicated->schema->storage->replicants->{$replicant_names[0]}->active(1);
358 $replicated->schema->storage->replicants->{$replicant_names[1]}->active(1);
359 $replicated->schema->storage->pool->validate_replicants;
360
361 ok $replicated->schema->resultset('Artist')->find(2)
362     => 'Returned to replicates';
363     
364 ## Getting slave status tests
365
366 SKIP: {
367     ## We skip this tests unless you have a custom replicants, since the default
368     ## sqlite based replication tests don't support these functions.
369     
370     skip 'Cannot Test Replicant Status on Non Replicating Database', 9
371      unless DBICTest->has_custom_dsn && $ENV{"DBICTEST_SLAVE0_DSN"};
372
373     $replicated->replicate; ## Give the slaves a chance to catchup.
374
375         ok $replicated->schema->storage->replicants->{$replicant_names[0]}->is_replicating
376             => 'Replicants are replicating';
377             
378         is $replicated->schema->storage->replicants->{$replicant_names[0]}->lag_behind_master, 0
379             => 'Replicant is zero seconds behind master';
380             
381         ## Test the validate replicants
382         
383         $replicated->schema->storage->pool->validate_replicants;
384         
385         is $replicated->schema->storage->pool->active_replicants, 2
386             => 'Still have 2 replicants after validation';
387             
388         ## Force the replicants to fail the validate test by required their lag to
389         ## be negative (ie ahead of the master!)
390         
391     $replicated->schema->storage->pool->maximum_lag(-10);
392     $replicated->schema->storage->pool->validate_replicants;
393     
394     is $replicated->schema->storage->pool->active_replicants, 0
395         => 'No way a replicant be be ahead of the master';
396         
397     ## Let's be fair to the replicants again.  Let them lag up to 5
398         
399     $replicated->schema->storage->pool->maximum_lag(5);
400     $replicated->schema->storage->pool->validate_replicants;
401     
402     is $replicated->schema->storage->pool->active_replicants, 2
403         => 'Both replicants in good standing again';    
404         
405         ## Check auto validate
406         
407         is $replicated->schema->storage->balancer->auto_validate_every, 100
408             => "Got the expected value for auto validate";
409             
410                 ## This will make sure we auto validatge everytime
411                 $replicated->schema->storage->balancer->auto_validate_every(0);
412                 
413                 ## set all the replicants to inactive, and make sure the balancer falls back to
414                 ## the master.
415                 
416                 $replicated->schema->storage->replicants->{$replicant_names[0]}->active(0);
417                 $replicated->schema->storage->replicants->{$replicant_names[1]}->active(0);
418                 
419                 ## Ok, now when we go to run a query, autovalidate SHOULD reconnect
420         
421         is $replicated->schema->storage->pool->active_replicants => 0
422             => "both replicants turned off";
423                 
424         ok $replicated->schema->resultset('Artist')->find(5)
425             => 'replicant reactivated';
426             
427         is $replicated->schema->storage->pool->active_replicants => 2
428             => "both replicants reactivated";        
429 }
430
431 ## Test the reliably callback
432
433 ok my $reliably = sub {
434         
435     ok $replicated->schema->resultset('Artist')->find(5)
436         => 'replicant reactivated';     
437         
438 } => 'created coderef properly';
439
440 $replicated->schema->storage->execute_reliably($reliably);
441
442 ## Try something with an error
443
444 ok my $unreliably = sub {
445     
446     ok $replicated->schema->resultset('ArtistXX')->find(5)
447         => 'replicant reactivated'; 
448     
449 } => 'created coderef properly';
450
451 throws_ok {$replicated->schema->storage->execute_reliably($unreliably)} 
452     qr/Can't find source for ArtistXX/
453     => 'Bad coderef throws proper error';
454     
455 ## Make sure replication came back
456
457 ok $replicated->schema->resultset('Artist')->find(3)
458     => 'replicant reactivated';
459     
460 ## make sure transactions are set to execute_reliably
461
462 ok my $transaction = sub {
463         
464         my $id = shift @_;
465         
466         $replicated
467             ->schema
468             ->populate('Artist', [
469                 [ qw/artistid name/ ],
470                 [ $id, "Children of the Grave"],
471             ]);
472             
473     ok my $result = $replicated->schema->resultset('Artist')->find($id)
474         => 'Found expected artist';
475         
476     ok my $more = $replicated->schema->resultset('Artist')->find(1)
477         => 'Found expected artist again';
478         
479    return ($result, $more);
480    
481 } => 'Created a coderef properly';
482
483 ## Test the transaction with multi return
484 {
485         ok my @return = $replicated->schema->txn_do($transaction, 666)
486             => 'did transaction';
487             
488             is $return[0]->id, 666
489                 => 'first returned value is correct';
490                 
491             is $return[1]->id, 1
492                 => 'second returned value is correct';
493 }
494
495 ## Test that asking for single return works
496 {
497         ok my $return = $replicated->schema->txn_do($transaction, 777)
498             => 'did transaction';
499             
500             is $return->id, 777
501                 => 'first returned value is correct';
502 }
503
504 ## Test transaction returning a single value
505
506 {
507         ok my $result = $replicated->schema->txn_do(sub {
508                 ok my $more = $replicated->schema->resultset('Artist')->find(1)
509                 => 'found inside a transaction';
510                 return $more;
511         }) => 'successfully processed transaction';
512         
513         is $result->id, 1
514            => 'Got expected single result from transaction';
515 }
516
517 ## Make sure replication came back
518
519 ok $replicated->schema->resultset('Artist')->find(1)
520     => 'replicant reactivated';
521     
522 ## Test Discard changes
523
524 {
525         ok my $artist = $replicated->schema->resultset('Artist')->find(2)
526             => 'got an artist to test discard changes';
527             
528         ok $artist->discard_changes
529            => 'properly discard changes';
530 }
531
532 ## Test some edge cases, like trying to do a transaction inside a transaction, etc
533
534 {
535     ok my $result = $replicated->schema->txn_do(sub {
536         return $replicated->schema->txn_do(sub {
537                 ok my $more = $replicated->schema->resultset('Artist')->find(1)
538                 => 'found inside a transaction inside a transaction';
539                 return $more;                   
540         });
541     }) => 'successfully processed transaction';
542     
543     is $result->id, 1
544        => 'Got expected single result from transaction';          
545 }
546
547 {
548     ok my $result = $replicated->schema->txn_do(sub {
549         return $replicated->schema->storage->execute_reliably(sub {
550                 return $replicated->schema->txn_do(sub {
551                         return $replicated->schema->storage->execute_reliably(sub {
552                                 ok my $more = $replicated->schema->resultset('Artist')->find(1)
553                                 => 'found inside crazy deep transactions and execute_reliably';
554                                 return $more;                           
555                         });
556                 });     
557         });
558     }) => 'successfully processed transaction';
559     
560     is $result->id, 1
561        => 'Got expected single result from transaction';          
562 }     
563
564 ## Test the force_pool resultset attribute.
565
566 {
567         ok my $artist_rs = $replicated->schema->resultset('Artist')
568         => 'got artist resultset';
569            
570         ## Turn on Forced Pool Storage
571         ok my $reliable_artist_rs = $artist_rs->search(undef, {force_pool=>'master'})
572         => 'Created a resultset using force_pool storage';
573            
574     ok my $artist = $reliable_artist_rs->find(2) 
575         => 'got an artist result via force_pool storage';
576 }
577
578 ## Delete the old database files
579 $replicated->cleanup;
580
581
582
583
584
585