Fix incorrect exception propagation in ::Replicated::execute_reliably
[dbsrgits/DBIx-Class.git] / t / storage / replicated.t
CommitLineData
e4dc89b3 1use strict;
2use warnings;
68de9438 3
e4dc89b3 4use Test::More;
68de9438 5
4bea1fe7 6use lib qw(t/lib);
7use DBICTest;
8
68de9438 9BEGIN {
10 require DBIx::Class;
11 plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('test_replicated')
12 unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_replicated');
68de9438 13
617474ab 14 if (DBICTest::RunMode->is_smoker) {
15 my $mver = Moose->VERSION;
16 plan skip_all => "A trial version $mver of Moose detected known to break replication - skipping test known to fail"
17 if ($mver >= 1.99 and $mver <= 1.9902);
18 }
e4ee5861 19
e4ee5861 20}
21
68de9438 22use Test::Moose;
c4d3fae2 23use Test::Exception;
9901aad7 24use List::Util 'first';
b2e4d522 25use Scalar::Util 'reftype';
3da4f736 26use File::Spec;
68de9438 27use Moose();
28use MooseX::Types();
29note "Using Moose version $Moose::VERSION and MooseX::Types version $MooseX::Types::VERSION";
8f7986d6 30
7672675a 31my $var_dir = quotemeta ( File::Spec->catdir(qw/t var/) );
32
6287275c 33## Add a connect_info option to test option merging.
617474ab 34use DBIx::Class::Storage::DBI::Replicated;
6287275c 35{
36 package DBIx::Class::Storage::DBI::Replicated;
37
38 use Moose;
39
40 __PACKAGE__->meta->make_mutable;
41
42 around connect_info => sub {
43 my ($next, $self, $info) = @_;
44 $info->[3]{master_option} = 1;
45 $self->$next($info);
46 };
47
48 __PACKAGE__->meta->make_immutable;
49
50 no Moose;
51}
52
0f83441a 53
6a151f58 54
89cf6a70 55=head1 HOW TO USE
56
57 This is a test of the replicated storage system. This will work in one of
58 two ways, either it was try to fake replication with a couple of SQLite DBs
59 and creative use of copy, or if you define a couple of %ENV vars correctly
60 will try to test those. If you do that, it will assume the setup is properly
61 replicating. Your results may vary, but I have demonstrated this to work with
62 mysql native replication.
d59cf2f2 63
89cf6a70 64=cut
65
66
0f83441a 67## ----------------------------------------------------------------------------
68## Build a class to hold all our required testing data and methods.
69## ----------------------------------------------------------------------------
70
857d66ca 71TESTSCHEMACLASSES: {
2bf79155 72
857d66ca 73 ## --------------------------------------------------------------------- ##
74 ## Create an object to contain your replicated stuff.
75 ## --------------------------------------------------------------------- ##
d59cf2f2 76
2bf79155 77 package DBIx::Class::DBI::Replicated::TestReplication;
d59cf2f2 78
2bf79155 79 use DBICTest;
80 use base qw/Class::Accessor::Fast/;
d59cf2f2 81
857d66ca 82 __PACKAGE__->mk_accessors( qw/schema/ );
2bf79155 83
84 ## Initialize the object
d59cf2f2 85
86 sub new {
87 my ($class, $schema_method) = (shift, shift);
88 my $self = $class->SUPER::new(@_);
89
90 $self->schema( $self->init_schema($schema_method) );
91 return $self;
92 }
93
26ab719a 94 ## Get the Schema and set the replication storage type
d59cf2f2 95
2bf79155 96 sub init_schema {
7536c92b 97 #my ($class, $schema_getter) = @_;
98 shift->${\ ( 'get_schema_' . shift ) };
2bf79155 99 }
dcdf7b2c 100
101 sub get_schema_by_storage_type {
102 DBICTest->init_schema(
103 sqlite_use_file => 1,
104 storage_type=>{
105 '::DBI::Replicated' => {
106 balancer_type=>'::Random',
107 balancer_args=>{
108 auto_validate_every=>100,
64ae1667 109 master_read_weight => 1
dcdf7b2c 110 },
111 }
112 },
113 deploy_args=>{
114 add_drop_table => 1,
115 },
116 );
117 }
118
119 sub get_schema_by_connect_info {
120 DBICTest->init_schema(
121 sqlite_use_file => 1,
122 storage_type=> '::DBI::Replicated',
123 balancer_type=>'::Random',
124 balancer_args=> {
64ae1667 125 auto_validate_every=>100,
126 master_read_weight => 1
127 },
128 pool_args=>{
129 maximum_lag=>1,
dcdf7b2c 130 },
131 deploy_args=>{
132 add_drop_table => 1,
133 },
134 );
135 }
136
857d66ca 137 sub generate_replicant_connect_info {}
138 sub replicate {}
139 sub cleanup {}
140
b2e4d522 141 ## --------------------------------------------------------------------- ##
857d66ca 142 ## Subclass for when you are using SQLite for testing, this provides a fake
143 ## replication support.
144 ## --------------------------------------------------------------------- ##
d59cf2f2 145
857d66ca 146 package DBIx::Class::DBI::Replicated::TestReplication::SQLite;
147
148 use DBICTest;
d59cf2f2 149 use File::Copy;
857d66ca 150 use base 'DBIx::Class::DBI::Replicated::TestReplication';
d59cf2f2 151
3da4f736 152 __PACKAGE__->mk_accessors(qw/master_path slave_paths/);
d59cf2f2 153
3da4f736 154 ## Set the master path from DBICTest
d59cf2f2 155
156 sub new {
157 my $class = shift @_;
158 my $self = $class->SUPER::new(@_);
159
160 $self->master_path( DBICTest->_sqlite_dbfilename );
161 $self->slave_paths([
162 File::Spec->catfile(qw/t var DBIxClass_slave1.db/),
163 File::Spec->catfile(qw/t var DBIxClass_slave2.db/),
164 ]);
165
166 return $self;
167 }
168
26ab719a 169 ## Return an Array of ArrayRefs where each ArrayRef is suitable to use for
170 ## $storage->connect_info to be used for connecting replicants.
d59cf2f2 171
26ab719a 172 sub generate_replicant_connect_info {
857d66ca 173 my $self = shift @_;
26ab719a 174 my @dsn = map {
175 "dbi:SQLite:${_}";
176 } @{$self->slave_paths};
d59cf2f2 177
9901aad7 178 my @connect_infos = map { [$_,'','',{AutoCommit=>1}] } @dsn;
179
d59cf2f2 180 ## Make sure nothing is left over from a failed test
181 $self->cleanup;
3da4f736 182
d59cf2f2 183 ## try a hashref too
9901aad7 184 my $c = $connect_infos[0];
185 $connect_infos[0] = {
186 dsn => $c->[0],
187 user => $c->[1],
188 password => $c->[2],
189 %{ $c->[3] }
190 };
191
192 @connect_infos
26ab719a 193 }
9901aad7 194
26ab719a 195 ## Do a 'good enough' replication by copying the master dbfile over each of
50336325 196 ## the slave dbfiles. If the master is SQLite we do this, otherwise we
197 ## just do a one second pause to let the slaves catch up.
d59cf2f2 198
26ab719a 199 sub replicate {
200 my $self = shift @_;
201 foreach my $slave (@{$self->slave_paths}) {
202 copy($self->master_path, $slave);
203 }
204 }
d59cf2f2 205
9e75be92 206 ## Cleanup after ourselves. Unlink all the slave paths.
d59cf2f2 207
26ab719a 208 sub cleanup {
209 my $self = shift @_;
e1ff35c4 210 $_->disconnect for values %{ $self->schema->storage->replicants };
26ab719a 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)
7672675a 381 if first { $_ =~ /$var_dir/ } @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)
7672675a 429 if first { $_ =~ /$var_dir/ } @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/
9450f312 601 => 'emits falling back to master debug';
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)
7672675a 612 if first { $_ =~ /$var_dir/ } @replicant_names;
d59cf2f2 613
f15afa13 614$replicated->schema->storage->pool->validate_replicants;
de5dc9ef 615
9901aad7 616$replicated->schema->storage->debugobj->silence(0);
617
9450f312 618{
619 ## catch the fallback to master warning
620 open my $debugfh, '>', \my $return_warning;
621 my $oldfh = $replicated->schema->storage->debugfh;
622 $replicated->schema->storage->debugfh($debugfh);
623
624 ok $replicated->schema->resultset('Artist')->find(2)
625 => 'Return to replicants';
626
627 is $debug{storage_type}, 'REPLICANT',
628 "got last query from a replicant: $debug{dsn}";
071bbccb 629
9450f312 630 like $return_warning, qr/Moved back to slave/
631 => 'emits returning to slave debug';
632
633 $replicated->schema->storage->debugfh($oldfh);
634}
d59cf2f2 635
de5dc9ef 636## Getting slave status tests
637
f797e89e 638SKIP: {
639 ## We skip this tests unless you have a custom replicants, since the default
640 ## sqlite based replication tests don't support these functions.
d59cf2f2 641
642 skip 'Cannot Test Replicant Status on Non Replicating Database', 10
f797e89e 643 unless DBICTest->has_custom_dsn && $ENV{"DBICTEST_SLAVE0_DSN"};
644
645 $replicated->replicate; ## Give the slaves a chance to catchup.
646
d59cf2f2 647 ok $replicated->schema->storage->replicants->{$replicant_names[0]}->is_replicating
648 => 'Replicants are replicating';
649
650 is $replicated->schema->storage->replicants->{$replicant_names[0]}->lag_behind_master, 0
651 => 'Replicant is zero seconds behind master';
652
653 ## Test the validate replicants
654
655 $replicated->schema->storage->pool->validate_replicants;
656
657 is $replicated->schema->storage->pool->active_replicants, 2
658 => 'Still have 2 replicants after validation';
659
660 ## Force the replicants to fail the validate test by required their lag to
661 ## be negative (ie ahead of the master!)
662
7edf5f1c 663 $replicated->schema->storage->pool->maximum_lag(-10);
664 $replicated->schema->storage->pool->validate_replicants;
d59cf2f2 665
7edf5f1c 666 is $replicated->schema->storage->pool->active_replicants, 0
667 => 'No way a replicant be be ahead of the master';
d59cf2f2 668
7edf5f1c 669 ## Let's be fair to the replicants again. Let them lag up to 5
d59cf2f2 670
7edf5f1c 671 $replicated->schema->storage->pool->maximum_lag(5);
672 $replicated->schema->storage->pool->validate_replicants;
d59cf2f2 673
7edf5f1c 674 is $replicated->schema->storage->pool->active_replicants, 2
d59cf2f2 675 => 'Both replicants in good standing again';
676
677 ## Check auto validate
678
679 is $replicated->schema->storage->balancer->auto_validate_every, 100
680 => "Got the expected value for auto validate";
681
682 ## This will make sure we auto validatge everytime
683 $replicated->schema->storage->balancer->auto_validate_every(0);
684
685 ## set all the replicants to inactive, and make sure the balancer falls back to
686 ## the master.
687
688 $replicated->schema->storage->replicants->{$replicant_names[0]}->active(0);
689 $replicated->schema->storage->replicants->{$replicant_names[1]}->active(0);
690
691 ## Ok, now when we go to run a query, autovalidate SHOULD reconnect
692
693 is $replicated->schema->storage->pool->active_replicants => 0
694 => "both replicants turned off";
695
696 ok $replicated->schema->resultset('Artist')->find(5)
697 => 'replicant reactivated';
698
699 is $debug{storage_type}, 'REPLICANT',
700 "got last query from a replicant: $debug{dsn}";
701
702 is $replicated->schema->storage->pool->active_replicants => 2
703 => "both replicants reactivated";
f797e89e 704}
705
c4d3fae2 706## Test the reliably callback
707
708ok my $reliably = sub {
d59cf2f2 709
c4d3fae2 710 ok $replicated->schema->resultset('Artist')->find(5)
071bbccb 711 => 'replicant reactivated';
712
d59cf2f2 713 is $debug{storage_type}, 'MASTER',
714 "got last query from a master: $debug{dsn}";
715
294c6f29 716 $_[1] = 9;
717
c4d3fae2 718} => 'created coderef properly';
719
294c6f29 720my @list_to_mangle = (1, 2, 3);
721
722$replicated->schema->storage->execute_reliably($reliably, @list_to_mangle);
723
724is_deeply
725 \@list_to_mangle,
726 [ 1, 9, 3],
727 'Aliasing of values passed to execute_reliably works'
728;
c4d3fae2 729
730## Try something with an error
731
732ok my $unreliably = sub {
d59cf2f2 733
c4d3fae2 734 ok $replicated->schema->resultset('ArtistXX')->find(5)
d59cf2f2 735 => 'replicant reactivated';
736
c4d3fae2 737} => 'created coderef properly';
738
d59cf2f2 739throws_ok {$replicated->schema->storage->execute_reliably($unreliably)}
ed213e85 740 qr/Can't find source for ArtistXX/
c4d3fae2 741 => 'Bad coderef throws proper error';
d59cf2f2 742
294c6f29 743throws_ok {
744 $replicated->schema->storage->execute_reliably(sub{
745 die bless [], 'SomeExceptionThing';
746 });
747} 'SomeExceptionThing', "Blessed exception kept intact";
748
ed213e85 749## Make sure replication came back
750
751ok $replicated->schema->resultset('Artist')->find(3)
752 => 'replicant reactivated';
071bbccb 753
754is $debug{storage_type}, 'REPLICANT', "got last query from a replicant: $debug{dsn}";
d59cf2f2 755
c4d3fae2 756## make sure transactions are set to execute_reliably
757
758ok my $transaction = sub {
d59cf2f2 759
760 my $id = shift @_;
761
762 $replicated
763 ->schema
764 ->populate('Artist', [
765 [ qw/artistid name/ ],
84f7e8a1 766 [ $id, "Children of the Grave $id"],
d59cf2f2 767 ]);
768
64cdad22 769 ok my $result = $replicated->schema->resultset('Artist')->find($id)
bd5da369 770 => "Found expected artist for $id";
071bbccb 771
d59cf2f2 772 is $debug{storage_type}, 'MASTER',
773 "got last query from a master: $debug{dsn}";
774
64cdad22 775 ok my $more = $replicated->schema->resultset('Artist')->find(1)
bd5da369 776 => 'Found expected artist again for 1';
071bbccb 777
d59cf2f2 778 is $debug{storage_type}, 'MASTER',
779 "got last query from a master: $debug{dsn}";
780
ed213e85 781 return ($result, $more);
d59cf2f2 782
64cdad22 783} => 'Created a coderef properly';
c4d3fae2 784
ed213e85 785## Test the transaction with multi return
786{
d59cf2f2 787 ok my @return = $replicated->schema->txn_do($transaction, 666)
788 => 'did transaction';
789
790 is $return[0]->id, 666
791 => 'first returned value is correct';
071bbccb 792
d59cf2f2 793 is $debug{storage_type}, 'MASTER',
794 "got last query from a master: $debug{dsn}";
071bbccb 795
d59cf2f2 796 is $return[1]->id, 1
797 => 'second returned value is correct';
798
799 is $debug{storage_type}, 'MASTER',
800 "got last query from a master: $debug{dsn}";
071bbccb 801
ed213e85 802}
803
804## Test that asking for single return works
805{
d59cf2f2 806 ok my @return = $replicated->schema->txn_do($transaction, 777)
807 => 'did transaction';
808
809 is $return[0]->id, 777
810 => 'first returned value is correct';
811
812 is $return[1]->id, 1
813 => 'second returned value is correct';
ed213e85 814}
815
816## Test transaction returning a single value
817
818{
d59cf2f2 819 ok my $result = $replicated->schema->txn_do(sub {
820 ok my $more = $replicated->schema->resultset('Artist')->find(1)
821 => 'found inside a transaction';
822 is $debug{storage_type}, 'MASTER', "got last query from a master: $debug{dsn}";
823 return $more;
824 }) => 'successfully processed transaction';
825
826 is $result->id, 1
827 => 'Got expected single result from transaction';
ed213e85 828}
c4d3fae2 829
830## Make sure replication came back
831
ed213e85 832ok $replicated->schema->resultset('Artist')->find(1)
c4d3fae2 833 => 'replicant reactivated';
071bbccb 834
835is $debug{storage_type}, 'REPLICANT', "got last query from a replicant: $debug{dsn}";
d59cf2f2 836
ed213e85 837## Test Discard changes
838
839{
d59cf2f2 840 ok my $artist = $replicated->schema->resultset('Artist')->find(2)
841 => 'got an artist to test discard changes';
071bbccb 842
d59cf2f2 843 is $debug{storage_type}, 'REPLICANT', "got last query from a replicant: $debug{dsn}";
071bbccb 844
d59cf2f2 845 ok $artist->get_from_storage({force_pool=>'master'})
846 => 'properly discard changes';
071bbccb 847
d59cf2f2 848 is $debug{storage_type}, 'MASTER', "got last query from a master: $debug{dsn}";
071bbccb 849
3a443bb0 850 ok $artist->discard_changes({force_pool=>'master'})
851 => 'properly called discard_changes against master (manual attrs)';
9c169362 852
3a443bb0 853 is $debug{storage_type}, 'MASTER', "got last query from a master: $debug{dsn}";
9c169362 854
3a443bb0 855 ok $artist->discard_changes()
856 => 'properly called discard_changes against master (default attrs)';
9c169362 857
3a443bb0 858 is $debug{storage_type}, 'MASTER', "got last query from a master: $debug{dsn}";
8287e9f8 859
3a443bb0 860 ok $artist->discard_changes({force_pool=>$replicant_names[0]})
861 => 'properly able to override the default attributes';
8287e9f8 862
3a443bb0 863 is $debug{storage_type}, 'REPLICANT', "got last query from a replicant: $debug{dsn}"
ed213e85 864}
64cdad22 865
866## Test some edge cases, like trying to do a transaction inside a transaction, etc
867
868{
869 ok my $result = $replicated->schema->txn_do(sub {
d59cf2f2 870 return $replicated->schema->txn_do(sub {
871 ok my $more = $replicated->schema->resultset('Artist')->find(1)
872 => 'found inside a transaction inside a transaction';
873 is $debug{storage_type}, 'MASTER', "got last query from a master: $debug{dsn}";
874 return $more;
875 });
64cdad22 876 }) => 'successfully processed transaction';
d59cf2f2 877
64cdad22 878 is $result->id, 1
d59cf2f2 879 => 'Got expected single result from transaction';
64cdad22 880}
881
882{
883 ok my $result = $replicated->schema->txn_do(sub {
d59cf2f2 884 return $replicated->schema->storage->execute_reliably(sub {
885 return $replicated->schema->txn_do(sub {
886 return $replicated->schema->storage->execute_reliably(sub {
887 ok my $more = $replicated->schema->resultset('Artist')->find(1)
888 => 'found inside crazy deep transactions and execute_reliably';
889 is $debug{storage_type}, 'MASTER', "got last query from a master: $debug{dsn}";
890 return $more;
891 });
892 });
893 });
64cdad22 894 }) => 'successfully processed transaction';
d59cf2f2 895
64cdad22 896 is $result->id, 1
d59cf2f2 897 => 'Got expected single result from transaction';
898}
2ce6e9a6 899
7e38d850 900## Test the force_pool resultset attribute.
bbafcf26 901
902{
d59cf2f2 903 ok my $artist_rs = $replicated->schema->resultset('Artist')
bbafcf26 904 => 'got artist resultset';
d59cf2f2 905
906 ## Turn on Forced Pool Storage
907 ok my $reliable_artist_rs = $artist_rs->search(undef, {force_pool=>'master'})
7e38d850 908 => 'Created a resultset using force_pool storage';
d59cf2f2 909
910 ok my $artist = $reliable_artist_rs->find(2)
7e38d850 911 => 'got an artist result via force_pool storage';
071bbccb 912
d59cf2f2 913 is $debug{storage_type}, 'MASTER', "got last query from a master: $debug{dsn}";
bbafcf26 914}
915
bd5da369 916## Test the force_pool resultset attribute part two.
917
918{
d59cf2f2 919 ok my $artist_rs = $replicated->schema->resultset('Artist')
bd5da369 920 => 'got artist resultset';
d59cf2f2 921
922 ## Turn on Forced Pool Storage
923 ok my $reliable_artist_rs = $artist_rs->search(undef, {force_pool=>$replicant_names[0]})
bd5da369 924 => 'Created a resultset using force_pool storage';
d59cf2f2 925
926 ok my $artist = $reliable_artist_rs->find(2)
bd5da369 927 => 'got an artist result via force_pool storage';
071bbccb 928
d59cf2f2 929 is $debug{storage_type}, 'REPLICANT', "got last query from a replicant: $debug{dsn}";
bd5da369 930}
9e75be92 931
0f83441a 932## Delete the old database files
50336325 933$replicated->cleanup;
ee356d00 934
6988233d 935done_testing;
936
ee356d00 937# vim: sw=4 sts=4 :