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 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
|
# frozen_string_literal: true
# rubocop:todo all
shared_context 'server selector' do
let(:max_staleness) { nil }
let(:tag_sets) { [] }
let(:hedge) { nil }
let(:tag_set) do
{ 'test' => 'tag' }
end
let(:server_tags) do
{ 'test' => 'tag', 'other' => 'tag' }
end
let(:primary) { make_server(:primary) }
let(:secondary) { make_server(:secondary) }
let(:mongos) do
make_server(:mongos).tap do |server|
expect(server.mongos?).to be true
end
end
let(:unknown) do
make_server(:unknown).tap do |server|
expect(server.unknown?).to be true
end
end
let(:server_selection_timeout_options) do
{
server_selection_timeout: 0.1,
}
end
let(:options) do
{
mode: name,
tag_sets: tag_sets,
max_staleness: max_staleness,
hedge: hedge,
}
end
let(:selector) { described_class.new(options) }
let(:monitoring) do
Mongo::Monitoring.new(monitoring: false)
end
declare_topology_double
before do
# Do not run monitors and do not attempt real TCP connections
# in server selector tests
allow_any_instance_of(Mongo::Server).to receive(:start_monitoring)
allow_any_instance_of(Mongo::Server).to receive(:disconnect!)
end
end
shared_examples 'a server selector mode' do
describe '#name' do
it 'returns the name' do
expect(selector.name).to eq(name)
end
end
describe '#secondary_ok?' do
it 'returns whether the secondary_ok bit should be set' do
expect(selector.secondary_ok?).to eq(secondary_ok)
end
end
describe '#==' do
context 'when mode is the same' do
let(:other) do
described_class.new
end
context 'tag sets are the same' do
it 'returns true' do
expect(selector).to eq(other)
end
end
end
context 'mode is different' do
let(:other) do
described_class.new.tap do |sel|
allow(sel).to receive(:name).and_return(:other_mode)
end
end
it 'returns false' do
expect(selector).not_to eq(other)
end
end
end
end
shared_examples 'a server selector accepting tag sets' do
describe '#tag_sets' do
context 'tags not provided' do
it 'returns an empty array' do
expect(selector.tag_sets).to be_empty
end
end
context 'tag sets provided' do
let(:tag_sets) do
[ tag_set ]
end
it 'returns the tag sets' do
expect(selector.tag_sets).to eq(tag_sets)
end
end
end
describe '#==' do
context 'when mode is the same' do
let(:other) { described_class.new }
context 'tag sets are different' do
let(:tag_sets) { { 'other' => 'tag' } }
it 'returns false' do
expect(selector).not_to eq(other)
end
end
end
end
end
shared_examples 'a server selector accepting hedge' do
describe '#initialize' do
context 'when hedge is not provided' do
it 'initializes successfully' do
expect do
selector
end.not_to raise_error
end
end
context 'when hedge is not a Hash' do
let(:hedge) { true }
it 'raises an exception' do
expect do
selector
end.to raise_error(Mongo::Error::InvalidServerPreference, /`hedge` value \(true\) is invalid/)
end
end
context 'when hedge is an empty Hash' do
let(:hedge) { {} }
it 'raises an exception' do
expect do
selector
end.to raise_error(Mongo::Error::InvalidServerPreference, /`hedge` value \({}\) is invalid/)
end
end
context 'when hedge is a Hash with data' do
let(:hedge) { { enabled: false } }
it 'initializes successfully' do
expect do
selector
end.not_to raise_error
end
end
end
describe '#hedge' do
context 'when hedge is not provided' do
it 'returns nil' do
expect(selector.hedge).to be_nil
end
end
context 'when hedge is a Hash with data' do
let(:hedge) { { enabled: false } }
it 'returns the same Hash' do
expect(selector.hedge).to eq({ enabled: false })
end
end
end
describe '#==' do
let(:other_selector) { described_class.new(hedge: { enabled: false }) }
context 'when hedges are the same' do
let(:hedge) { { enabled: false } }
it 'returns true' do
expect(selector).to eq(other_selector)
end
end
context 'when hedges are different' do
let(:hedge) { { enabled: true } }
it 'returns false' do
expect(selector).not_to eq(other_selector)
end
end
end
end
shared_examples 'a server selector with sensitive data in its options' do
describe '#inspect' do
context 'when there is sensitive data in the options' do
let(:options) do
Mongo::Options::Redacted.new(:mode => name, :password => 'sensitive_data')
end
it 'does not print out sensitive data' do
expect(selector.inspect).not_to match(options[:password])
end
end
end
end
|