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
|
# frozen_string_literal: true
# rubocop:todo all
require 'spec_helper'
describe Mongo::Server::Monitor do
before(:all) do
ClientRegistry.instance.close_all_clients
end
let(:address) do
default_address
end
let(:listeners) do
Mongo::Event::Listeners.new
end
let(:monitor_options) do
{}
end
let(:monitor_app_metadata) do
Mongo::Server::Monitor::AppMetadata.new(
server_api: SpecConfig.instance.ruby_options[:server_api],
)
end
let(:cluster) do
double('cluster').tap do |cluster|
allow(cluster).to receive(:run_sdam_flow)
allow(cluster).to receive(:heartbeat_interval).and_return(1000)
end
end
let(:server) do
Mongo::Server.new(address, cluster, Mongo::Monitoring.new, listeners,
monitoring_io: false)
end
let(:monitor) do
register_background_thread_object(
described_class.new(server, listeners, Mongo::Monitoring.new,
SpecConfig.instance.test_options.merge(cluster: cluster).merge(monitor_options).update(
app_metadata: monitor_app_metadata,
push_monitor_app_metadata: monitor_app_metadata))
)
end
describe '#scan!' do
context 'when calling multiple times in succession' do
it 'throttles the scans to minimum 500ms' do
start = Mongo::Utils.monotonic_time
monitor.scan!
monitor.scan!
expect(Mongo::Utils.monotonic_time - start).to be >= 0.5
end
end
context 'when the hello fails the first time' do
let(:monitor_options) do
{monitoring_io: false}
end
it 'runs sdam flow on unknown description' do
expect(monitor).to receive(:check).once.and_raise(Mongo::Error::SocketError)
expect(cluster).to receive(:run_sdam_flow)
monitor.scan!
end
end
context 'when the hello command succeeds' do
it 'invokes sdam flow' do
server.unknown!
expect(server.description).to be_unknown
updated_desc = nil
expect(cluster).to receive(:run_sdam_flow) do |prev_desc, _updated_desc|
updated_desc = _updated_desc
end
monitor.scan!
expect(updated_desc).not_to be_unknown
end
end
context 'when the hello command fails' do
context 'when no server is running on the address' do
let(:address) do
Mongo::Address.new('127.0.0.1:27050')
end
before do
server.unknown!
expect(server.description).to be_unknown
monitor.scan!
end
it 'keeps the server unknown' do
expect(server.description).to be_unknown
end
end
context 'when the socket gets an exception' do
let(:address) do
default_address
end
before do
server.unknown!
expect(server.description).to be_unknown
expect(monitor).to receive(:check).and_raise(Mongo::Error::SocketError)
monitor.scan!
end
it 'keeps the server unknown' do
expect(server.description).to be_unknown
end
it 'disconnects the connection' do
expect(monitor.connection).to be nil
end
end
end
end
=begin heartbeat interval is now taken out of cluster, monitor has no useful options
describe '#heartbeat_frequency' do
context 'when an option is provided' do
let(:monitor_options) do
{:heartbeat_frequency => 5}
end
it 'returns the option' do
expect(monitor.heartbeat_frequency).to eq(5)
end
end
context 'when no option is provided' do
let(:monitor_options) do
{:heartbeat_frequency => nil}
end
it 'defaults to 10' do
expect(monitor.heartbeat_frequency).to eq(10)
end
end
end
=end
describe '#run!' do
let!(:thread) do
monitor.run!
end
context 'when the monitor is already running' do
it 'does not create a new thread' do
expect(monitor.restart!).to be(thread)
end
end
context 'when the monitor is not already running' do
before do
monitor.stop!
sleep(1)
end
it 'creates a new thread' do
expect(monitor.restart!).not_to be(thread)
end
end
context 'when running after a stop' do
it 'starts the thread' do
ClientRegistry.instance.close_all_clients
sleep 1
thread
sleep 1
RSpec::Mocks.with_temporary_scope do
expect(monitor.connection).to receive(:disconnect!).and_call_original
monitor.stop!
sleep 1
expect(thread.alive?).to be false
new_thread = monitor.run!
sleep 1
expect(new_thread.alive?).to be(true)
end
end
end
end
describe '#stop' do
let(:thread) do
monitor.run!
end
it 'kills the monitor thread' do
ClientRegistry.instance.close_all_clients
thread
sleep 0.5
RSpec::Mocks.with_temporary_scope do
expect(monitor.connection).to receive(:disconnect!).and_call_original
monitor.stop!
expect(thread.alive?).to be(false)
end
end
end
describe '#connection' do
context 'when there is a connect_timeout option set' do
let(:connect_timeout) do
1
end
let(:monitor_options) do
{connect_timeout: connect_timeout}
end
it 'sets the value as the timeout on the connection' do
monitor.scan!
expect(monitor.connection.socket_timeout).to eq(connect_timeout)
end
it 'set the value as the timeout on the socket' do
monitor.scan!
expect(monitor.connection.send(:socket).timeout).to eq(connect_timeout)
end
end
end
describe '#log_warn' do
it 'works' do
expect do
monitor.log_warn('test warning')
end.not_to raise_error
end
end
describe '#do_scan' do
let(:result) { monitor.send(:do_scan) }
it 'returns a hash' do
expect(result).to be_a(Hash)
end
it 'is successful' do
expect(result['ok']).to eq(1.0)
end
context 'network error during check' do
let(:result) do
expect(monitor).to receive(:check).and_raise(IOError)
# The retry is done on a new socket instance.
#expect(socket).to receive(:write).and_call_original
monitor.send(:do_scan)
end
it 'adds server diagnostics' do
expect(Mongo::Logger.logger).to receive(:warn) do |msg|
# The "on <address>" and "for <address>" bits are in different parts
# of the message.
expect(msg).to match(/#{server.address}/)
end
expect do
result
end.to raise_error(IOError)
end
end
context 'network error during connection' do
let(:options) { SpecConfig.instance.test_options }
let(:expected_message) { "MONGODB | Failed to handshake with #{address}: Mongo::Error::SocketError: test error" }
before do
monitor.connection.should be nil
end
it 'logs a warning' do
# Note: the mock call below could mock do_write and raise IOError.
# It is correct in raising Error::SocketError if mocking write
# which performs exception mapping.
expect_any_instance_of(Mongo::Socket).to receive(:write).and_raise(Mongo::Error::SocketError, 'test error')
messages = []
expect(Mongo::Logger.logger).to receive(:warn).at_least(:once) do |msg|
messages << msg
end
monitor.scan!.should be_unknown
messages.any? { |msg| msg.include?(expected_message) }.should be true
end
it 'adds server diagnostics' do
# Note: the mock call below could mock do_write and raise IOError.
# It is correct in raising Error::SocketError if mocking write
# which performs exception mapping.
expect_any_instance_of(Mongo::Socket).to receive(:write).and_raise(Mongo::Error::SocketError, 'test error')
expect do
monitor.send(:check)
end.to raise_error(Mongo::Error::SocketError, /#{server.address}/)
end
end
end
end
|