1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
#
# Copyright 2009-2013 MongoDB, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
use strict;
use warnings;
use Test::More 0.96;
use Test::Fatal;
use MongoDB;
use Tie::IxHash;
use lib "t/lib";
use MongoDBTest qw/skip_unless_mongod build_client get_test_db server_type/;
skip_unless_mongod();
my $conn = build_client();
my $testdb = get_test_db($conn);
my $server_type = server_type($conn);
my $coll = $testdb->get_collection("test_coll");
my @modes = qw/primary secondary primaryPreferred secondaryPreferred nearest/;
subtest "read preference connection string" => sub {
my $conn2 = build_client(
host =>
"mongodb://localhost/?readPreference=primaryPreferred&readPreferenceTags=dc:ny,rack:1&readPreferenceTags=dc:ny&readPreferenceTags=",
);
my $rp = $conn2->read_preference;
is( $rp->mode, 'primaryPreferred', "mode from" );
is_deeply(
$rp->tag_sets,
[ { dc => 'ny', rack => 1 }, { dc => 'ny'}, {} ],
"tag set list"
);
};
subtest "read preference propagation" => sub {
for my $m (@modes) {
my $conn2 = build_client( read_pref_mode => $m );
my $db2 = $conn2->get_database( $testdb->name );
my $coll2 = $db2->get_collection("test_coll");
my $cur = $coll2->find( {} );
for my $thing ( $conn2, $db2, $coll2 ) {
is( $thing->read_preference->mode, $m, "$m set on " . ref($thing) );
}
is( $cur->query->read_preference->mode, $m, "$m set on " . ref($cur) );
}
};
subtest "read preference on cursor" => sub {
for my $m ( @modes ) {
my $cur = $coll->find()->read_preference($m);
is( $cur->query->read_preference->mode, $m, "$m set on " . ref($cur) );
}
};
subtest "error cases" => sub {
like(
exception { $conn->read_preference( MongoDB::ReadPreference->new ) },
qr/read-only/,
"read_preference on client is read-only"
);
like(
exception {
build_client(
read_pref_mode => 'primary',
read_pref_tag_sets => [ { use => 'production' } ],
)
},
qr/A tag set list is not allowed with read preference mode 'primary'/,
'primary cannot be combined with a tag set list'
);
};
subtest 'commands' => sub {
ok( my $conn2 = build_client( read_preference => 'secondary' ),
"read pref set to secondary without error" );
my $admin = $conn2->get_database('admin');
my $testdb_name = $testdb->name;
my $db = $conn2->get_database( $testdb_name );
my $temp_coll = $db->get_collection("foo");
$temp_coll->insert_one({});
is(
exception {
$admin->run_command(
[ renameCollection => "$testdb_name\.foo", to => "$testdb_name\.foofoo" ] );
},
undef,
"generic helper ran with primary read pref"
);
};
subtest "direct connection" => sub {
my $N = 20;
$coll->drop;
$coll->insert({'a' => $_}) for 1..$N;
for my $s ( $conn->_topology->all_servers ) {
next unless $s->is_readable;
my $addr = $s->address;
my $type = $s->type;
my $conn2 = build_client( host => $addr );
my $coll2 = $conn2->get_database( $testdb->name )->get_collection( $coll->name );
my $count;
is( exception { $count = $coll2->count }, undef, "count on $addr ($type) succeeds" )
or diag explain $s;
}
};
done_testing;
|