Switch t/relationship/core.t $@ checks to Test::Exception
[dbsrgits/DBIx-Class.git] / t / storage / replicated.t
CommitLineData
e4dc89b3 1use strict;
2use warnings;
68de9438 3
e4dc89b3 4use Test::More;
68de9438 5
6BEGIN {
7 require DBIx::Class;
8 plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('test_replicated')
9 unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_replicated');
10}
11
12use Test::Moose;
c4d3fae2 13use Test::Exception;
9901aad7 14use List::Util 'first';
b2e4d522 15use Scalar::Util 'reftype';
3da4f736 16use File::Spec;
f404f53c 17use IO::Handle;
68de9438 18use Moose();
19use MooseX::Types();
20note "Using Moose version $Moose::VERSION and MooseX::Types version $MooseX::Types::VERSION";
8f7986d6 21
68de9438 22use lib qw(t/lib);
23use DBICTest;
26ab719a 24
25use_ok 'DBIx::Class::Storage::DBI::Replicated::Pool';
26use_ok 'DBIx::Class::Storage::DBI::Replicated::Balancer';
27use_ok 'DBIx::Class::Storage::DBI::Replicated::Replicant';
28use_ok 'DBIx::Class::Storage::DBI::Replicated';
0f83441a 29
6a151f58 30
89cf6a70 31=head1 HOW TO USE
32
33 This is a test of the replicated storage system. This will work in one of
34 two ways, either it was try to fake replication with a couple of SQLite DBs
35 and creative use of copy, or if you define a couple of %ENV vars correctly
36 will try to test those. If you do that, it will assume the setup is properly
37 replicating. Your results may vary, but I have demonstrated this to work with
38 mysql native replication.
d59cf2f2 39
89cf6a70 40=cut
41
42
0f83441a 43## ----------------------------------------------------------------------------
44## Build a class to hold all our required testing data and methods.
45## ----------------------------------------------------------------------------
46
857d66ca 47TESTSCHEMACLASSES: {
2bf79155 48
857d66ca 49 ## --------------------------------------------------------------------- ##
50 ## Create an object to contain your replicated stuff.
51 ## --------------------------------------------------------------------- ##
d59cf2f2 52
2bf79155 53 package DBIx::Class::DBI::Replicated::TestReplication;
d59cf2f2 54
2bf79155 55 use DBICTest;
56 use base qw/Class::Accessor::Fast/;
d59cf2f2 57
857d66ca 58 __PACKAGE__->mk_accessors( qw/schema/ );
2bf79155 59
60 ## Initialize the object
d59cf2f2 61
62 sub new {
63 my ($class, $schema_method) = (shift, shift);
64 my $self = $class->SUPER::new(@_);
65
66 $self->schema( $self->init_schema($schema_method) );
67 return $self;
68 }
69
26ab719a 70 ## Get the Schema and set the replication storage type
d59cf2f2 71
2bf79155 72 sub init_schema {
f6ace689 73 # current SQLT SQLite producer does not handle DROP TABLE IF EXISTS, trap warnings here
2361982d 74 local $SIG{__WARN__} = sub { warn @_ unless $_[0] =~ /no such table.+DROP TABLE/s };
f6ace689 75
dcdf7b2c 76 my ($class, $schema_method) = @_;
77
78 my $method = "get_schema_$schema_method";
79 my $schema = $class->$method;
cb6ec758 80
2bf79155 81 return $schema;
82 }
dcdf7b2c 83
84 sub get_schema_by_storage_type {
85 DBICTest->init_schema(
86 sqlite_use_file => 1,
87 storage_type=>{
88 '::DBI::Replicated' => {
89 balancer_type=>'::Random',
90 balancer_args=>{
91 auto_validate_every=>100,
d59cf2f2 92 master_read_weight => 1
dcdf7b2c 93 },
94 }
95 },
96 deploy_args=>{
97 add_drop_table => 1,
98 },
99 );
100 }
101
102 sub get_schema_by_connect_info {
103 DBICTest->init_schema(
104 sqlite_use_file => 1,
105 storage_type=> '::DBI::Replicated',
106 balancer_type=>'::Random',
107 balancer_args=> {
108 auto_validate_every=>100,
d59cf2f2 109 master_read_weight => 1
dcdf7b2c 110 },
111 deploy_args=>{
112 add_drop_table => 1,
113 },
114 );
115 }
116
857d66ca 117 sub generate_replicant_connect_info {}
118 sub replicate {}
119 sub cleanup {}
120
b2e4d522 121 ## --------------------------------------------------------------------- ##
122 ## Add a connect_info option to test option merging.
123 ## --------------------------------------------------------------------- ##
124 {
125 package DBIx::Class::Storage::DBI::Replicated;
126
127 use Moose;
128
129 __PACKAGE__->meta->make_mutable;
130
131 around connect_info => sub {
132 my ($next, $self, $info) = @_;
133 $info->[3]{master_option} = 1;
134 $self->$next($info);
135 };
136
137 __PACKAGE__->meta->make_immutable;
138
139 no Moose;
140 }
d59cf2f2 141
857d66ca 142 ## --------------------------------------------------------------------- ##
143 ## Subclass for when you are using SQLite for testing, this provides a fake
144 ## replication support.
145 ## --------------------------------------------------------------------- ##
d59cf2f2 146
857d66ca 147 package DBIx::Class::DBI::Replicated::TestReplication::SQLite;
148
149 use DBICTest;
d59cf2f2 150 use File::Copy;
857d66ca 151 use base 'DBIx::Class::DBI::Replicated::TestReplication';
d59cf2f2 152
3da4f736 153 __PACKAGE__->mk_accessors(qw/master_path slave_paths/);
d59cf2f2 154
3da4f736 155 ## Set the master path from DBICTest
d59cf2f2 156
157 sub new {
158 my $class = shift @_;
159 my $self = $class->SUPER::new(@_);
160
161 $self->master_path( DBICTest->_sqlite_dbfilename );
162 $self->slave_paths([
163 File::Spec->catfile(qw/t var DBIxClass_slave1.db/),
164 File::Spec->catfile(qw/t var DBIxClass_slave2.db/),
165 ]);
166
167 return $self;
168 }
169
26ab719a 170 ## Return an Array of ArrayRefs where each ArrayRef is suitable to use for
171 ## $storage->connect_info to be used for connecting replicants.
d59cf2f2 172
26ab719a 173 sub generate_replicant_connect_info {
857d66ca 174 my $self = shift @_;
26ab719a 175 my @dsn = map {
176 "dbi:SQLite:${_}";
177 } @{$self->slave_paths};
d59cf2f2 178
9901aad7 179 my @connect_infos = map { [$_,'','',{AutoCommit=>1}] } @dsn;
180
d59cf2f2 181 ## Make sure nothing is left over from a failed test
182 $self->cleanup;
3da4f736 183
d59cf2f2 184 ## try a hashref too
9901aad7 185 my $c = $connect_infos[0];
186 $connect_infos[0] = {
187 dsn => $c->[0],
188 user => $c->[1],
189 password => $c->[2],
190 %{ $c->[3] }
191 };
192
193 @connect_infos
26ab719a 194 }
9901aad7 195
26ab719a 196 ## Do a 'good enough' replication by copying the master dbfile over each of
50336325 197 ## the slave dbfiles. If the master is SQLite we do this, otherwise we
198 ## just do a one second pause to let the slaves catch up.
d59cf2f2 199
26ab719a 200 sub replicate {
201 my $self = shift @_;
202 foreach my $slave (@{$self->slave_paths}) {
203 copy($self->master_path, $slave);
204 }
205 }
d59cf2f2 206
26ab719a 207 ## Cleanup after ourselves. Unlink all gthe slave paths.
d59cf2f2 208
26ab719a 209 sub cleanup {
210 my $self = shift @_;
211 foreach my $slave (@{$self->slave_paths}) {
d59cf2f2 212 if(-e $slave) {
213 unlink $slave;
214 }
215 }
26ab719a 216 }
d59cf2f2 217
857d66ca 218 ## --------------------------------------------------------------------- ##
219 ## Subclass for when you are setting the databases via custom export vars
220 ## This is for when you have a replicating database setup that you are
221 ## going to test against. You'll need to define the correct $ENV and have
222 ## two slave databases to test against, as well as a replication system
223 ## that will replicate in less than 1 second.
224 ## --------------------------------------------------------------------- ##
d59cf2f2 225
226 package DBIx::Class::DBI::Replicated::TestReplication::Custom;
857d66ca 227 use base 'DBIx::Class::DBI::Replicated::TestReplication';
d59cf2f2 228
857d66ca 229 ## Return an Array of ArrayRefs where each ArrayRef is suitable to use for
230 ## $storage->connect_info to be used for connecting replicants.
d59cf2f2 231
232 sub generate_replicant_connect_info {
857d66ca 233 return (
234 [$ENV{"DBICTEST_SLAVE0_DSN"}, $ENV{"DBICTEST_SLAVE0_DBUSER"}, $ENV{"DBICTEST_SLAVE0_DBPASS"}, {AutoCommit => 1}],
d59cf2f2 235 [$ENV{"DBICTEST_SLAVE1_DSN"}, $ENV{"DBICTEST_SLAVE1_DBUSER"}, $ENV{"DBICTEST_SLAVE1_DBPASS"}, {AutoCommit => 1}],
857d66ca 236 );
237 }
d59cf2f2 238
239 ## pause a bit to let the replication catch up
240
857d66ca 241 sub replicate {
d59cf2f2 242 sleep 1;
243 }
2bf79155 244}
245
246## ----------------------------------------------------------------------------
247## Create an object and run some tests
248## ----------------------------------------------------------------------------
249
26ab719a 250## Thi first bunch of tests are basic, just make sure all the bits are behaving
2bf79155 251
857d66ca 252my $replicated_class = DBICTest->has_custom_dsn ?
253 'DBIx::Class::DBI::Replicated::TestReplication::Custom' :
254 'DBIx::Class::DBI::Replicated::TestReplication::SQLite';
255
dcdf7b2c 256my $replicated;
257
258for my $method (qw/by_connect_info by_storage_type/) {
a3df35f8 259 undef $replicated;
dcdf7b2c 260 ok $replicated = $replicated_class->new($method)
261 => "Created a replication object $method";
d59cf2f2 262
dcdf7b2c 263 isa_ok $replicated->schema
264 => 'DBIx::Class::Schema';
d59cf2f2 265
dcdf7b2c 266 isa_ok $replicated->schema->storage
267 => 'DBIx::Class::Storage::DBI::Replicated';
268
269 isa_ok $replicated->schema->storage->balancer
270 => 'DBIx::Class::Storage::DBI::Replicated::Balancer::Random'
271 => 'configured balancer_type';
272}
26ab719a 273
f29315ed 274### check that all Storage::DBI methods are handled by ::Replicated
275{
b75235fe 276 my @storage_dbi_methods = Class::MOP::Class
277 ->initialize('DBIx::Class::Storage::DBI')->get_all_method_names;
f29315ed 278
b75235fe 279 my @replicated_methods = DBIx::Class::Storage::DBI::Replicated->meta
280 ->get_all_method_names;
f29315ed 281
b75235fe 282# remove constants and OTHER_CRAP
f29315ed 283 @storage_dbi_methods = grep !/^[A-Z_]+\z/, @storage_dbi_methods;
284
285# remove CAG accessors
286 @storage_dbi_methods = grep !/_accessor\z/, @storage_dbi_methods;
287
288# remove DBIx::Class (the root parent, with CAG and stuff) methods
b75235fe 289 my @root_methods = Class::MOP::Class->initialize('DBIx::Class')
f29315ed 290 ->get_all_method_names;
291 my %count;
b75235fe 292 $count{$_}++ for (@storage_dbi_methods, @root_methods);
f29315ed 293
294 @storage_dbi_methods = grep $count{$_} != 2, @storage_dbi_methods;
295
296# make hashes
297 my %storage_dbi_methods;
298 @storage_dbi_methods{@storage_dbi_methods} = ();
299 my %replicated_methods;
300 @replicated_methods{@replicated_methods} = ();
301
302# remove ::Replicated-specific methods
303 for my $method (@replicated_methods) {
304 delete $replicated_methods{$method}
305 unless exists $storage_dbi_methods{$method};
306 }
e4c5abce 307 @replicated_methods = keys %replicated_methods;
f29315ed 308
309# check that what's left is implemented
310 %count = ();
311 $count{$_}++ for (@storage_dbi_methods, @replicated_methods);
312
313 if ((grep $count{$_} == 2, @storage_dbi_methods) == @storage_dbi_methods) {
314 pass 'all DBIx::Class::Storage::DBI methods implemented';
315 }
316 else {
317 my @unimplemented = grep $count{$_} == 1, @storage_dbi_methods;
318
319 fail 'the following DBIx::Class::Storage::DBI methods are unimplemented: '
320 . "@unimplemented";
321 }
322}
323
26ab719a 324ok $replicated->schema->storage->meta
325 => 'has a meta object';
d59cf2f2 326
26ab719a 327isa_ok $replicated->schema->storage->master
328 => 'DBIx::Class::Storage::DBI';
d59cf2f2 329
26ab719a 330isa_ok $replicated->schema->storage->pool
331 => 'DBIx::Class::Storage::DBI::Replicated::Pool';
d59cf2f2 332
17b05c13 333does_ok $replicated->schema->storage->balancer
d59cf2f2 334 => 'DBIx::Class::Storage::DBI::Replicated::Balancer';
26ab719a 335
336ok my @replicant_connects = $replicated->generate_replicant_connect_info
337 => 'got replication connect information';
338
955a6df6 339ok my @replicated_storages = $replicated->schema->storage->connect_replicants(@replicant_connects)
26ab719a 340 => 'Created some storages suitable for replicants';
6412a592 341
071bbccb 342our %debug;
343$replicated->schema->storage->debug(1);
344$replicated->schema->storage->debugcb(sub {
d59cf2f2 345 my ($op, $info) = @_;
346 ##warn "\n$op, $info\n";
347 %debug = (
348 op => $op,
349 info => $info,
350 dsn => ($info=~m/\[(.+)\]/)[0],
351 storage_type => $info=~m/REPLICANT/ ? 'REPLICANT' : 'MASTER',
352 );
071bbccb 353});
354
6412a592 355ok my @all_storages = $replicated->schema->storage->all_storages
356 => '->all_storages';
357
dcdf7b2c 358is scalar @all_storages,
359 3
6412a592 360 => 'correct number of ->all_storages';
361
dcdf7b2c 362is ((grep $_->isa('DBIx::Class::Storage::DBI'), @all_storages),
363 3
6412a592 364 => '->all_storages are correct type');
b2e4d522 365
dcdf7b2c 366my @all_storage_opts =
367 grep { (reftype($_)||'') eq 'HASH' }
368 map @{ $_->_connect_info }, @all_storages;
369
370is ((grep $_->{master_option}, @all_storage_opts),
371 3
b2e4d522 372 => 'connect_info was merged from master to replicants');
d59cf2f2 373
9901aad7 374my @replicant_names = keys %{ $replicated->schema->storage->replicants };
375
bd5da369 376ok @replicant_names, "found replicant names @replicant_names";
377
9901aad7 378## Silence warning about not supporting the is_replicating method if using the
379## sqlite dbs.
380$replicated->schema->storage->debugobj->silence(1)
381 if first { m{^t/} } @replicant_names;
d59cf2f2 382
cb6ec758 383isa_ok $replicated->schema->storage->balancer->current_replicant
d59cf2f2 384 => 'DBIx::Class::Storage::DBI';
9901aad7 385
386$replicated->schema->storage->debugobj->silence(0);
387
26ab719a 388ok $replicated->schema->storage->pool->has_replicants
d59cf2f2 389 => 'does have replicants';
26ab719a 390
17b05c13 391is $replicated->schema->storage->pool->num_replicants => 2
26ab719a 392 => 'has two replicants';
d59cf2f2 393
de5dc9ef 394does_ok $replicated_storages[0]
26ab719a 395 => 'DBIx::Class::Storage::DBI::Replicated::Replicant';
396
de5dc9ef 397does_ok $replicated_storages[1]
26ab719a 398 => 'DBIx::Class::Storage::DBI::Replicated::Replicant';
d59cf2f2 399
de5dc9ef 400does_ok $replicated->schema->storage->replicants->{$replicant_names[0]}
26ab719a 401 => 'DBIx::Class::Storage::DBI::Replicated::Replicant';
402
de5dc9ef 403does_ok $replicated->schema->storage->replicants->{$replicant_names[1]}
d59cf2f2 404 => 'DBIx::Class::Storage::DBI::Replicated::Replicant';
26ab719a 405
406## Add some info to the database
407
408$replicated
409 ->schema
410 ->populate('Artist', [
411 [ qw/artistid name/ ],
412 [ 4, "Ozric Tentacles"],
413 ]);
071bbccb 414
d59cf2f2 415 is $debug{storage_type}, 'MASTER',
416 "got last query from a master: $debug{dsn}";
417
418 like $debug{info}, qr/INSERT/, 'Last was an insert';
419
26ab719a 420## Make sure all the slaves have the table definitions
421
422$replicated->replicate;
5c1d82d2 423$replicated->schema->storage->replicants->{$replicant_names[0]}->active(1);
424$replicated->schema->storage->replicants->{$replicant_names[1]}->active(1);
9901aad7 425
426## Silence warning about not supporting the is_replicating method if using the
427## sqlite dbs.
428$replicated->schema->storage->debugobj->silence(1)
429 if first { m{^t/} } @replicant_names;
d59cf2f2 430
f15afa13 431$replicated->schema->storage->pool->validate_replicants;
26ab719a 432
9901aad7 433$replicated->schema->storage->debugobj->silence(0);
434
26ab719a 435## Make sure we can read the data.
436
437ok my $artist1 = $replicated->schema->resultset('Artist')->find(4)
438 => 'Created Result';
439
071bbccb 440## We removed testing here since master read weight is on, so we can't tell in
441## advance what storage to expect. We turn master read weight off a bit lower
d59cf2f2 442## is $debug{storage_type}, 'REPLICANT'
443## => "got last query from a replicant: $debug{dsn}, $debug{info}";
071bbccb 444
26ab719a 445isa_ok $artist1
446 => 'DBICTest::Artist';
d59cf2f2 447
26ab719a 448is $artist1->name, 'Ozric Tentacles'
449 => 'Found expected name for first result';
450
ee356d00 451## Check that master_read_weight is honored
452{
87974600 453 no warnings qw/once redefine/;
ee356d00 454
455 local
f404f53c 456 *DBIx::Class::Storage::DBI::Replicated::Balancer::Random::_random_number =
d59cf2f2 457 sub { 999 };
ee356d00 458
459 $replicated->schema->storage->balancer->increment_storage;
460
461 is $replicated->schema->storage->balancer->current_replicant,
462 $replicated->schema->storage->master
463 => 'master_read_weight is honored';
464
465 ## turn it off for the duration of the test
466 $replicated->schema->storage->balancer->master_read_weight(0);
467 $replicated->schema->storage->balancer->increment_storage;
468}
469
26ab719a 470## Add some new rows that only the master will have This is because
471## we overload any type of write operation so that is must hit the master
472## database.
473
474$replicated
475 ->schema
476 ->populate('Artist', [
477 [ qw/artistid name/ ],
478 [ 5, "Doom's Children"],
479 [ 6, "Dead On Arrival"],
480 [ 7, "Watergate"],
481 ]);
482
d59cf2f2 483 is $debug{storage_type}, 'MASTER',
484 "got last query from a master: $debug{dsn}";
485
486 like $debug{info}, qr/INSERT/, 'Last was an insert';
071bbccb 487
26ab719a 488## Make sure all the slaves have the table definitions
489$replicated->replicate;
490
491## Should find some data now
492
493ok my $artist2 = $replicated->schema->resultset('Artist')->find(5)
494 => 'Sync succeed';
071bbccb 495
d59cf2f2 496is $debug{storage_type}, 'REPLICANT'
497 => "got last query from a replicant: $debug{dsn}";
498
26ab719a 499isa_ok $artist2
500 => 'DBICTest::Artist';
d59cf2f2 501
26ab719a 502is $artist2->name, "Doom's Children"
503 => 'Found expected name for first result';
504
505## What happens when we disconnect all the replicants?
506
50336325 507is $replicated->schema->storage->pool->connected_replicants => 2
508 => "both replicants are connected";
d59cf2f2 509
89cf6a70 510$replicated->schema->storage->replicants->{$replicant_names[0]}->disconnect;
511$replicated->schema->storage->replicants->{$replicant_names[1]}->disconnect;
26ab719a 512
50336325 513is $replicated->schema->storage->pool->connected_replicants => 0
514 => "both replicants are now disconnected";
515
516## All these should pass, since the database should automatically reconnect
517
26ab719a 518ok my $artist3 = $replicated->schema->resultset('Artist')->find(6)
519 => 'Still finding stuff.';
071bbccb 520
d59cf2f2 521is $debug{storage_type}, 'REPLICANT'
522 => "got last query from a replicant: $debug{dsn}";
523
26ab719a 524isa_ok $artist3
525 => 'DBICTest::Artist';
d59cf2f2 526
26ab719a 527is $artist3->name, "Dead On Arrival"
528 => 'Found expected name for first result';
2bf79155 529
50336325 530is $replicated->schema->storage->pool->connected_replicants => 1
13b9e828 531 => "At Least One replicant reconnected to handle the job";
d59cf2f2 532
6f6fb437 533## What happens when we try to select something that doesn't exist?
534
535ok ! $replicated->schema->resultset('Artist')->find(666)
536 => 'Correctly failed to find something.';
071bbccb 537
d59cf2f2 538is $debug{storage_type}, 'REPLICANT'
539 => "got last query from a replicant: $debug{dsn}";
540
cb6ec758 541## test the reliable option
542
543TESTRELIABLE: {
d59cf2f2 544
545 $replicated->schema->storage->set_reliable_storage;
546
547 ok $replicated->schema->resultset('Artist')->find(2)
548 => 'Read from master 1';
549
550 is $debug{storage_type}, 'MASTER',
551 "got last query from a master: $debug{dsn}";
552
553 ok $replicated->schema->resultset('Artist')->find(5)
554 => 'Read from master 2';
555
556 is $debug{storage_type}, 'MASTER',
557 "got last query from a master: $debug{dsn}";
558
559 $replicated->schema->storage->set_balanced_storage;
560
561 ok $replicated->schema->resultset('Artist')->find(3)
9c748388 562 => 'Read from replicant';
071bbccb 563
d59cf2f2 564 is $debug{storage_type}, 'REPLICANT',
565 "got last query from a replicant: $debug{dsn}";
cb6ec758 566}
567
9c748388 568## Make sure when reliable goes out of scope, we are using replicants again
cb6ec758 569
570ok $replicated->schema->resultset('Artist')->find(1)
571 => 'back to replicant 1.';
071bbccb 572
d59cf2f2 573 is $debug{storage_type}, 'REPLICANT',
574 "got last query from a replicant: $debug{dsn}";
575
cb6ec758 576ok $replicated->schema->resultset('Artist')->find(2)
577 => 'back to replicant 2.';
2156bbdd 578
d59cf2f2 579 is $debug{storage_type}, 'REPLICANT',
580 "got last query from a replicant: $debug{dsn}";
071bbccb 581
106d5f3b 582## set all the replicants to inactive, and make sure the balancer falls back to
583## the master.
584
89cf6a70 585$replicated->schema->storage->replicants->{$replicant_names[0]}->active(0);
586$replicated->schema->storage->replicants->{$replicant_names[1]}->active(0);
9901aad7 587
f404f53c 588{
589 ## catch the fallback to master warning
590 open my $debugfh, '>', \my $fallback_warning;
591 my $oldfh = $replicated->schema->storage->debugfh;
592 $replicated->schema->storage->debugfh($debugfh);
de5dc9ef 593
f404f53c 594 ok $replicated->schema->resultset('Artist')->find(2)
d59cf2f2 595 => 'Fallback to master';
071bbccb 596
d59cf2f2 597 is $debug{storage_type}, 'MASTER',
598 "got last query from a master: $debug{dsn}";
f404f53c 599
600 like $fallback_warning, qr/falling back to master/
d59cf2f2 601 => 'emits falling back to master warning';
f404f53c 602
603 $replicated->schema->storage->debugfh($oldfh);
604}
9901aad7 605
de5dc9ef 606$replicated->schema->storage->replicants->{$replicant_names[0]}->active(1);
607$replicated->schema->storage->replicants->{$replicant_names[1]}->active(1);
9901aad7 608
609## Silence warning about not supporting the is_replicating method if using the
610## sqlite dbs.
611$replicated->schema->storage->debugobj->silence(1)
612 if first { m{^t/} } @replicant_names;
d59cf2f2 613
f15afa13 614$replicated->schema->storage->pool->validate_replicants;
de5dc9ef 615
9901aad7 616$replicated->schema->storage->debugobj->silence(0);
617
de5dc9ef 618ok $replicated->schema->resultset('Artist')->find(2)
619 => 'Returned to replicates';
071bbccb 620
d59cf2f2 621is $debug{storage_type}, 'REPLICANT',
622 "got last query from a replicant: $debug{dsn}";
623
de5dc9ef 624## Getting slave status tests
625
f797e89e 626SKIP: {
627 ## We skip this tests unless you have a custom replicants, since the default
628 ## sqlite based replication tests don't support these functions.
d59cf2f2 629
630 skip 'Cannot Test Replicant Status on Non Replicating Database', 10
f797e89e 631 unless DBICTest->has_custom_dsn && $ENV{"DBICTEST_SLAVE0_DSN"};
632
633 $replicated->replicate; ## Give the slaves a chance to catchup.
634
d59cf2f2 635 ok $replicated->schema->storage->replicants->{$replicant_names[0]}->is_replicating
636 => 'Replicants are replicating';
637
638 is $replicated->schema->storage->replicants->{$replicant_names[0]}->lag_behind_master, 0
639 => 'Replicant is zero seconds behind master';
640
641 ## Test the validate replicants
642
643 $replicated->schema->storage->pool->validate_replicants;
644
645 is $replicated->schema->storage->pool->active_replicants, 2
646 => 'Still have 2 replicants after validation';
647
648 ## Force the replicants to fail the validate test by required their lag to
649 ## be negative (ie ahead of the master!)
650
7edf5f1c 651 $replicated->schema->storage->pool->maximum_lag(-10);
652 $replicated->schema->storage->pool->validate_replicants;
d59cf2f2 653
7edf5f1c 654 is $replicated->schema->storage->pool->active_replicants, 0
655 => 'No way a replicant be be ahead of the master';
d59cf2f2 656
7edf5f1c 657 ## Let's be fair to the replicants again. Let them lag up to 5
d59cf2f2 658
7edf5f1c 659 $replicated->schema->storage->pool->maximum_lag(5);
660 $replicated->schema->storage->pool->validate_replicants;
d59cf2f2 661
7edf5f1c 662 is $replicated->schema->storage->pool->active_replicants, 2
d59cf2f2 663 => 'Both replicants in good standing again';
664
665 ## Check auto validate
666
667 is $replicated->schema->storage->balancer->auto_validate_every, 100
668 => "Got the expected value for auto validate";
669
670 ## This will make sure we auto validatge everytime
671 $replicated->schema->storage->balancer->auto_validate_every(0);
672
673 ## set all the replicants to inactive, and make sure the balancer falls back to
674 ## the master.
675
676 $replicated->schema->storage->replicants->{$replicant_names[0]}->active(0);
677 $replicated->schema->storage->replicants->{$replicant_names[1]}->active(0);
678
679 ## Ok, now when we go to run a query, autovalidate SHOULD reconnect
680
681 is $replicated->schema->storage->pool->active_replicants => 0
682 => "both replicants turned off";
683
684 ok $replicated->schema->resultset('Artist')->find(5)
685 => 'replicant reactivated';
686
687 is $debug{storage_type}, 'REPLICANT',
688 "got last query from a replicant: $debug{dsn}";
689
690 is $replicated->schema->storage->pool->active_replicants => 2
691 => "both replicants reactivated";
f797e89e 692}
693
c4d3fae2 694## Test the reliably callback
695
696ok my $reliably = sub {
d59cf2f2 697
c4d3fae2 698 ok $replicated->schema->resultset('Artist')->find(5)
071bbccb 699 => 'replicant reactivated';
700
d59cf2f2 701 is $debug{storage_type}, 'MASTER',
702 "got last query from a master: $debug{dsn}";
703
c4d3fae2 704} => 'created coderef properly';
705
706$replicated->schema->storage->execute_reliably($reliably);
707
708## Try something with an error
709
710ok my $unreliably = sub {
d59cf2f2 711
c4d3fae2 712 ok $replicated->schema->resultset('ArtistXX')->find(5)
d59cf2f2 713 => 'replicant reactivated';
714
c4d3fae2 715} => 'created coderef properly';
716
d59cf2f2 717throws_ok {$replicated->schema->storage->execute_reliably($unreliably)}
ed213e85 718 qr/Can't find source for ArtistXX/
c4d3fae2 719 => 'Bad coderef throws proper error';
d59cf2f2 720
ed213e85 721## Make sure replication came back
722
723ok $replicated->schema->resultset('Artist')->find(3)
724 => 'replicant reactivated';
071bbccb 725
726is $debug{storage_type}, 'REPLICANT', "got last query from a replicant: $debug{dsn}";
d59cf2f2 727
c4d3fae2 728## make sure transactions are set to execute_reliably
729
730ok my $transaction = sub {
d59cf2f2 731
732 my $id = shift @_;
733
734 $replicated
735 ->schema
736 ->populate('Artist', [
737 [ qw/artistid name/ ],
738 [ $id, "Children of the Grave"],
739 ]);
740
64cdad22 741 ok my $result = $replicated->schema->resultset('Artist')->find($id)
bd5da369 742 => "Found expected artist for $id";
071bbccb 743
d59cf2f2 744 is $debug{storage_type}, 'MASTER',
745 "got last query from a master: $debug{dsn}";
746
64cdad22 747 ok my $more = $replicated->schema->resultset('Artist')->find(1)
bd5da369 748 => 'Found expected artist again for 1';
071bbccb 749
d59cf2f2 750 is $debug{storage_type}, 'MASTER',
751 "got last query from a master: $debug{dsn}";
752
ed213e85 753 return ($result, $more);
d59cf2f2 754
64cdad22 755} => 'Created a coderef properly';
c4d3fae2 756
ed213e85 757## Test the transaction with multi return
758{
d59cf2f2 759 ok my @return = $replicated->schema->txn_do($transaction, 666)
760 => 'did transaction';
761
762 is $return[0]->id, 666
763 => 'first returned value is correct';
071bbccb 764
d59cf2f2 765 is $debug{storage_type}, 'MASTER',
766 "got last query from a master: $debug{dsn}";
071bbccb 767
d59cf2f2 768 is $return[1]->id, 1
769 => 'second returned value is correct';
770
771 is $debug{storage_type}, 'MASTER',
772 "got last query from a master: $debug{dsn}";
071bbccb 773
ed213e85 774}
775
776## Test that asking for single return works
777{
d59cf2f2 778 ok my @return = $replicated->schema->txn_do($transaction, 777)
779 => 'did transaction';
780
781 is $return[0]->id, 777
782 => 'first returned value is correct';
783
784 is $return[1]->id, 1
785 => 'second returned value is correct';
ed213e85 786}
787
788## Test transaction returning a single value
789
790{
d59cf2f2 791 ok my $result = $replicated->schema->txn_do(sub {
792 ok my $more = $replicated->schema->resultset('Artist')->find(1)
793 => 'found inside a transaction';
794 is $debug{storage_type}, 'MASTER', "got last query from a master: $debug{dsn}";
795 return $more;
796 }) => 'successfully processed transaction';
797
798 is $result->id, 1
799 => 'Got expected single result from transaction';
ed213e85 800}
c4d3fae2 801
802## Make sure replication came back
803
ed213e85 804ok $replicated->schema->resultset('Artist')->find(1)
c4d3fae2 805 => 'replicant reactivated';
071bbccb 806
807is $debug{storage_type}, 'REPLICANT', "got last query from a replicant: $debug{dsn}";
d59cf2f2 808
ed213e85 809## Test Discard changes
810
811{
d59cf2f2 812 ok my $artist = $replicated->schema->resultset('Artist')->find(2)
813 => 'got an artist to test discard changes';
071bbccb 814
d59cf2f2 815 is $debug{storage_type}, 'REPLICANT', "got last query from a replicant: $debug{dsn}";
071bbccb 816
d59cf2f2 817 ok $artist->get_from_storage({force_pool=>'master'})
818 => 'properly discard changes';
071bbccb 819
d59cf2f2 820 is $debug{storage_type}, 'MASTER', "got last query from a master: $debug{dsn}";
071bbccb 821
3a443bb0 822 ok $artist->discard_changes({force_pool=>'master'})
823 => 'properly called discard_changes against master (manual attrs)';
9c169362 824
3a443bb0 825 is $debug{storage_type}, 'MASTER', "got last query from a master: $debug{dsn}";
9c169362 826
3a443bb0 827 ok $artist->discard_changes()
828 => 'properly called discard_changes against master (default attrs)';
9c169362 829
3a443bb0 830 is $debug{storage_type}, 'MASTER', "got last query from a master: $debug{dsn}";
8287e9f8 831
3a443bb0 832 ok $artist->discard_changes({force_pool=>$replicant_names[0]})
833 => 'properly able to override the default attributes';
8287e9f8 834
3a443bb0 835 is $debug{storage_type}, 'REPLICANT', "got last query from a replicant: $debug{dsn}"
ed213e85 836}
64cdad22 837
838## Test some edge cases, like trying to do a transaction inside a transaction, etc
839
840{
841 ok my $result = $replicated->schema->txn_do(sub {
d59cf2f2 842 return $replicated->schema->txn_do(sub {
843 ok my $more = $replicated->schema->resultset('Artist')->find(1)
844 => 'found inside a transaction inside a transaction';
845 is $debug{storage_type}, 'MASTER', "got last query from a master: $debug{dsn}";
846 return $more;
847 });
64cdad22 848 }) => 'successfully processed transaction';
d59cf2f2 849
64cdad22 850 is $result->id, 1
d59cf2f2 851 => 'Got expected single result from transaction';
64cdad22 852}
853
854{
855 ok my $result = $replicated->schema->txn_do(sub {
d59cf2f2 856 return $replicated->schema->storage->execute_reliably(sub {
857 return $replicated->schema->txn_do(sub {
858 return $replicated->schema->storage->execute_reliably(sub {
859 ok my $more = $replicated->schema->resultset('Artist')->find(1)
860 => 'found inside crazy deep transactions and execute_reliably';
861 is $debug{storage_type}, 'MASTER', "got last query from a master: $debug{dsn}";
862 return $more;
863 });
864 });
865 });
64cdad22 866 }) => 'successfully processed transaction';
d59cf2f2 867
64cdad22 868 is $result->id, 1
d59cf2f2 869 => 'Got expected single result from transaction';
870}
2ce6e9a6 871
7e38d850 872## Test the force_pool resultset attribute.
bbafcf26 873
874{
d59cf2f2 875 ok my $artist_rs = $replicated->schema->resultset('Artist')
bbafcf26 876 => 'got artist resultset';
d59cf2f2 877
878 ## Turn on Forced Pool Storage
879 ok my $reliable_artist_rs = $artist_rs->search(undef, {force_pool=>'master'})
7e38d850 880 => 'Created a resultset using force_pool storage';
d59cf2f2 881
882 ok my $artist = $reliable_artist_rs->find(2)
7e38d850 883 => 'got an artist result via force_pool storage';
071bbccb 884
d59cf2f2 885 is $debug{storage_type}, 'MASTER', "got last query from a master: $debug{dsn}";
bbafcf26 886}
887
bd5da369 888## Test the force_pool resultset attribute part two.
889
890{
d59cf2f2 891 ok my $artist_rs = $replicated->schema->resultset('Artist')
bd5da369 892 => 'got artist resultset';
d59cf2f2 893
894 ## Turn on Forced Pool Storage
895 ok my $reliable_artist_rs = $artist_rs->search(undef, {force_pool=>$replicant_names[0]})
bd5da369 896 => 'Created a resultset using force_pool storage';
d59cf2f2 897
898 ok my $artist = $reliable_artist_rs->find(2)
bd5da369 899 => 'got an artist result via force_pool storage';
071bbccb 900
d59cf2f2 901 is $debug{storage_type}, 'REPLICANT', "got last query from a replicant: $debug{dsn}";
bd5da369 902}
0f83441a 903## Delete the old database files
50336325 904$replicated->cleanup;
ee356d00 905
6988233d 906done_testing;
907
ee356d00 908# vim: sw=4 sts=4 :