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 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
|
# frozen_string_literal: true
# rubocop:todo all
require 'spec_helper'
describe Mongo::Server do
fails_on_jruby
declare_topology_double
let(:cluster) do
double('cluster').tap do |cl|
allow(cl).to receive(:topology).and_return(topology)
allow(cl).to receive(:app_metadata).and_return(app_metadata)
allow(cl).to receive(:options).and_return({})
end
end
let(:listeners) do
Mongo::Event::Listeners.new
end
let(:monitoring) do
Mongo::Monitoring.new(monitoring: false)
end
let(:address) do
default_address
end
let(:pool) do
server.pool
end
let(:server_options) do
{}
end
let(:server) do
register_server(
described_class.new(address, cluster, monitoring, listeners,
SpecConfig.instance.test_options.merge(monitoring_io: false).merge(server_options))
)
end
let(:monitor_app_metadata) do
Mongo::Server::Monitor::AppMetadata.new(
server_api: SpecConfig.instance.ruby_options[:server_api],
)
end
shared_context 'with monitoring io' do
let(:server_options) do
{monitoring_io: true}
end
before do
allow(cluster).to receive(:monitor_app_metadata).and_return(monitor_app_metadata)
allow(cluster).to receive(:push_monitor_app_metadata).and_return(monitor_app_metadata)
allow(cluster).to receive(:heartbeat_interval).and_return(1000)
end
end
describe '#==' do
context 'when the other is not a server' do
let(:other) do
false
end
it 'returns false' do
expect(server).to_not eq(other)
end
end
context 'when the other is a server' do
context 'when the addresses match' do
let(:other) do
register_server(
described_class.new(address, cluster, monitoring, listeners,
SpecConfig.instance.test_options.merge(monitoring_io: false))
)
end
it 'returns true' do
expect(server).to eq(other)
end
end
context 'when the addresses dont match' do
let(:other_address) do
Mongo::Address.new('127.0.0.1:27018')
end
let(:other) do
register_server(
described_class.new(other_address, cluster, monitoring, listeners,
SpecConfig.instance.test_options.merge(monitoring_io: false))
)
end
it 'returns false' do
expect(server).to_not eq(other)
end
end
end
end
describe '#disconnect!' do
context 'with monitoring io' do
include_context 'with monitoring io'
it 'stops the monitor instance' do
expect(server.instance_variable_get(:@monitor)).to receive(:stop!).and_call_original
server.disconnect!
end
end
context 'when server has a pool' do
before do
allow(server).to receive(:unknown?).and_return(false)
allow(cluster).to receive(:run_sdam_flow)
server.pool.ready
end
it 'pauses and clears the connection pool' do
expect(server.pool_internal).to receive(:close).once.and_call_original
RSpec::Mocks.with_temporary_scope do
# you can't disconnect from a known server, since this pauses the
# pool and we only want to pause the pools of unknown servers.
server.unknown!
allow(server).to receive(:unknown?).and_return(true)
server.close
end
end
end
context 'when server reconnects' do
before do
allow(server).to receive(:unknown?).and_return(false)
allow(cluster).to receive(:run_sdam_flow)
server.pool.ready
end
it 'keeps the same pool' do
pool = server.pool
RSpec::Mocks.with_temporary_scope do
# you can't disconnect from a known server, since this pauses the
# pool and we only want to pause the pools of unknown servers.
# server.unknown!
allow(server).to receive(:unknown?).and_return(true)
server.disconnect!
end
server.reconnect!
allow(server).to receive(:unknown?).and_return(false)
expect(server.pool).to eq(pool)
end
end
end
describe '#initialize' do
include_context 'with monitoring io'
before do
allow(cluster).to receive(:run_sdam_flow)
end
it 'sets the address host' do
expect(server.address.host).to eq(default_address.host)
end
it 'sets the address port' do
expect(server.address.port).to eq(default_address.port)
end
it 'sets the options' do
expect(server.options[:monitoring_io]).to be true
end
context 'with monitoring app metadata option' do
require_no_required_api_version
it 'creates monitor with monitoring app metadata' do
server.monitor.scan!
expect(server.monitor.connection.options[:app_metadata]).to be monitor_app_metadata
end
end
context 'monitoring_io: false' do
let(:server_options) do
{monitoring_io: false}
end
it 'does not create monitoring thread' do
expect(server.monitor.instance_variable_get('@thread')).to be nil
end
end
context 'monitoring_io: true' do
include_context 'with monitoring io'
it 'creates monitoring thread' do
expect(server.monitor.instance_variable_get('@thread')).to be_a(Thread)
end
end
end
describe '#scan!' do
clean_slate
include_context 'with monitoring io'
before do
# We are invoking scan! on the monitor manually, stop the background
# thread to avoid it interfering with our assertions.
server.monitor.stop!
end
it 'delegates scan to the monitor' do
expect(server.monitor).to receive(:scan!)
server.scan!
end
it 'invokes sdam flow eventually' do
expect(cluster).to receive(:run_sdam_flow)
server.scan!
end
end
describe '#reconnect!' do
include_context 'with monitoring io'
before do
expect(server.monitor).to receive(:restart!).and_call_original
end
it 'restarts the monitor and returns true' do
expect(server.reconnect!).to be(true)
end
end
describe 'retry_writes?' do
before do
allow(server).to receive(:features).and_return(features)
end
context 'when the server version is less than 3.6' do
let(:features) do
double('features', sessions_enabled?: false)
end
context 'when the server has a logical_session_timeout value' do
before do
allow(server).to receive(:logical_session_timeout).and_return(true)
end
it 'returns false' do
expect(server.retry_writes?).to be(false)
end
end
context 'when the server does not have a logical_session_timeout value' do
before do
allow(server).to receive(:logical_session_timeout).and_return(nil)
end
it 'returns false' do
expect(server.retry_writes?).to be(false)
end
end
end
context 'when the server version is at least 3.6' do
let(:features) do
double('features', sessions_enabled?: true)
end
context 'when the server has a logical_session_timeout value' do
before do
allow(server).to receive(:logical_session_timeout).and_return(true)
end
context 'when the server is a standalone' do
before do
allow(server).to receive(:standalone?).and_return(true)
end
it 'returns false' do
expect(server.retry_writes?).to be(false)
end
end
context 'when the server is not a standalone' do
before do
allow(server).to receive(:standalone?).and_return(true)
end
it 'returns false' do
expect(server.retry_writes?).to be(false)
end
end
end
context 'when the server does not have a logical_session_timeout value' do
before do
allow(server).to receive(:logical_session_timeout).and_return(nil)
end
it 'returns false' do
expect(server.retry_writes?).to be(false)
end
end
end
end
describe '#summary' do
context 'server is primary' do
let(:server) do
make_server(:primary)
end
before do
expect(server).to be_primary
end
it 'includes its status' do
expect(server.summary).to match(/PRIMARY/)
end
it 'includes replica set name' do
expect(server.summary).to match(/replica_set=mongodb_set/)
end
end
context 'server is secondary' do
let(:server) do
make_server(:secondary)
end
before do
expect(server).to be_secondary
end
it 'includes its status' do
expect(server.summary).to match(/SECONDARY/)
end
it 'includes replica set name' do
expect(server.summary).to match(/replica_set=mongodb_set/)
end
end
context 'server is arbiter' do
let(:server) do
make_server(:arbiter)
end
before do
expect(server).to be_arbiter
end
it 'includes its status' do
expect(server.summary).to match(/ARBITER/)
end
it 'includes replica set name' do
expect(server.summary).to match(/replica_set=mongodb_set/)
end
end
context 'server is ghost' do
let(:server) do
make_server(:ghost)
end
before do
expect(server).to be_ghost
end
it 'includes its status' do
expect(server.summary).to match(/GHOST/)
end
it 'does not include replica set name' do
expect(server.summary).not_to include('replica_set')
end
end
context 'server is other' do
let(:server) do
make_server(:other)
end
before do
expect(server).to be_other
end
it 'includes its status' do
expect(server.summary).to match(/OTHER/)
end
it 'includes replica set name' do
expect(server.summary).to match(/replica_set=mongodb_set/)
end
end
context 'server is unknown' do
let(:server_options) do
{monitoring_io: false}
end
before do
expect(server).to be_unknown
end
it 'includes unknown status' do
expect(server.summary).to match(/UNKNOWN/)
end
it 'does not include replica set name' do
expect(server.summary).not_to include('replica_set')
end
end
context 'server is a mongos' do
let(:server) do
make_server(:mongos)
end
before do
expect(server).to be_mongos
end
it 'specifies the server is a mongos' do
expect(server.summary).to match(/MONGOS/)
end
end
end
describe '#log_warn' do
it 'works' do
expect do
server.log_warn('test warning')
end.not_to raise_error
end
end
end
|