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 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785
|
require 'spec_helper'
describe Mongo::Server::Connection do
let(:address) do
default_address
end
let(:monitoring) do
Mongo::Monitoring.new(monitoring: false)
end
let(:listeners) do
Mongo::Event::Listeners.new
end
let(:app_metadata) do
Mongo::Cluster::AppMetadata.new(authorized_client.cluster)
end
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(:cluster_time).and_return(nil)
allow(cl).to receive(:update_cluster_time)
end
end
let(:topology) do
double('topology')
end
let(:server) do
Mongo::Server.new(address, cluster, monitoring, listeners, TEST_OPTIONS)
end
let(:pool) do
double('pool')
end
after do
allow(cluster).to receive(:pool).with(server).and_return(pool)
allow(pool).to receive(:disconnect!).and_return(true)
server.disconnect!
end
describe '#connectable?' do
context 'when the connection is not connectable' do
let(:bad_address) do
Mongo::Address.new('127.0.0.1:666')
end
let(:bad_server) do
Mongo::Server.new(bad_address, cluster, monitoring, listeners, TEST_OPTIONS)
end
let(:connection) do
described_class.new(bad_server)
end
it 'returns false' do
expect(connection).to_not be_connectable
end
end
end
describe '#connect!' do
context 'when no socket exists' do
let(:connection) do
described_class.new(server, server.options)
end
let!(:result) do
connection.connect!
end
let(:socket) do
connection.send(:socket)
end
it 'returns true' do
expect(result).to be true
end
it 'creates a socket' do
expect(socket).to_not be_nil
end
it 'connects the socket' do
expect(socket).to be_alive
end
end
context 'when a socket exists' do
let(:connection) do
described_class.new(server, server.options)
end
before do
connection.connect!
connection.connect!
end
let(:socket) do
connection.send(:socket)
end
it 'keeps the socket alive' do
expect(socket).to be_alive
end
end
context 'when user credentials exist' do
context 'when the user is not authorized' do
let(:connection) do
described_class.new(
server,
TEST_OPTIONS.merge(
:user => 'notauser',
:password => 'password',
:database => TEST_DB,
:heartbeat_frequency => 30)
)
end
let!(:error) do
e = begin; connection.send(:ensure_connected); rescue => ex; ex; end
end
it 'raises an error' do
expect(error).to be_a(Mongo::Auth::Unauthorized)
end
it 'disconnects the socket' do
expect(connection.send(:socket)).to be(nil)
end
it 'marks the server as unknown' do
expect(server).to be_unknown
end
end
describe 'when the user is authorized' do
let(:connection) do
described_class.new(
server,
TEST_OPTIONS.merge(
:user => TEST_USER.name,
:password => TEST_USER.password,
:database => TEST_DB )
)
end
before do
connection.connect!
end
it 'sets the connection as connected' do
expect(connection).to be_connected
end
end
end
end
describe '#disconnect!' do
context 'when a socket is not connected' do
let(:connection) do
described_class.new(server, server.options)
end
it 'does not raise an error' do
expect(connection.disconnect!).to be true
end
end
context 'when a socket is connected' do
let(:connection) do
described_class.new(server, server.options)
end
before do
connection.connect!
connection.disconnect!
end
it 'disconnects the socket' do
expect(connection.send(:socket)).to be_nil
end
end
end
describe '#dispatch' do
let!(:connection) do
described_class.new(
server,
TEST_OPTIONS.merge(
:user => TEST_USER.name,
:password => TEST_USER.password,
:database => TEST_DB )
)
end
let(:documents) do
[{ 'name' => 'testing' }]
end
let(:insert) do
Mongo::Protocol::Insert.new(TEST_DB, TEST_COLL, documents)
end
let(:query) do
Mongo::Protocol::Query.new(TEST_DB, TEST_COLL, { 'name' => 'testing' })
end
context 'when providing a single message' do
let(:reply) do
connection.dispatch([ insert, query ])
end
after do
authorized_collection.delete_many
end
it 'it dispatchs the message to the socket' do
expect(reply.documents.first['name']).to eq('testing')
end
end
context 'when providing multiple messages' do
let(:selector) do
{ :getlasterror => 1 }
end
let(:command) do
Mongo::Protocol::Query.new(TEST_DB, '$cmd', selector, :limit => -1)
end
let(:reply) do
connection.dispatch([ insert, command ])
end
after do
authorized_collection.delete_many
end
it 'it dispatchs the message to the socket' do
expect(reply.documents.first['ok']).to eq(1.0)
end
end
context 'when the response_to does not match the request_id' do
let(:documents) do
[{ 'name' => 'bob' }, { 'name' => 'alice' }]
end
let(:insert) do
Mongo::Protocol::Insert.new(TEST_DB, TEST_COLL, documents)
end
let(:query_bob) do
Mongo::Protocol::Query.new(TEST_DB, TEST_COLL, { name: 'bob' })
end
let(:query_alice) do
Mongo::Protocol::Query.new(TEST_DB, TEST_COLL, { name: 'alice' })
end
after do
authorized_collection.delete_many
end
before do
# Fake a query for which we did not read the response. See RUBY-1117
allow(query_bob).to receive(:replyable?) { false }
connection.dispatch([ insert, query_bob ])
end
it 'raises an UnexpectedResponse error' do
expect {
connection.dispatch([ query_alice ])
}.to raise_error(Mongo::Error::UnexpectedResponse,
/Got response for request ID \d+ but expected response for request ID \d+/)
end
it 'does not affect subsequent requests' do
expect {
connection.dispatch([ query_alice ])
}.to raise_error(Mongo::Error::UnexpectedResponse)
expect(connection.dispatch([ query_alice ]).documents.first['name']).to eq('alice')
end
end
context 'when a request is interrupted (Thread.kill)' do
let(:documents) do
[{ 'name' => 'bob' }, { 'name' => 'alice' }]
end
let(:insert) do
Mongo::Protocol::Insert.new(TEST_DB, TEST_COLL, documents)
end
let(:query_bob) do
Mongo::Protocol::Query.new(TEST_DB, TEST_COLL, { name: 'bob' })
end
let(:query_alice) do
Mongo::Protocol::Query.new(TEST_DB, TEST_COLL, { name: 'alice' })
end
before do
connection.dispatch([ insert ])
end
after do
authorized_collection.delete_many
end
it 'closes the socket and does not use it for subsequent requests' do
t = Thread.new {
# Kill the thread just before the reply is read
allow(Mongo::Protocol::Reply).to receive(:deserialize_header) { t.kill and t.stop? }
connection.dispatch([ query_bob ])
}
t.join
allow(Mongo::Protocol::Message).to receive(:deserialize_header).and_call_original
expect(connection.dispatch([ query_alice ]).documents.first['name']).to eq('alice')
end
end
context 'when the message exceeds the max size' do
context 'when the message is an insert' do
before do
allow(connection).to receive(:max_message_size).and_return(200)
end
let(:documents) do
[{ 'name' => 'testing' } ] * 10
end
let(:reply) do
connection.dispatch([ insert ])
end
it 'checks the size against the max message size' do
expect {
reply
}.to raise_exception(Mongo::Error::MaxMessageSize)
end
end
context 'when the message is a command' do
before do
allow(connection).to receive(:max_bson_object_size).and_return(100)
end
let(:selector) do
{ :getlasterror => '1' }
end
let(:command) do
Mongo::Protocol::Query.new(TEST_DB, '$cmd', selector, :limit => -1)
end
let(:reply) do
connection.dispatch([ command ])
end
it 'checks the size against the max bson size' do
expect {
reply
}.to raise_exception(Mongo::Error::MaxBSONSize)
end
end
end
context 'when a network or socket error occurs' do
let(:socket) do
connection.connect!
connection.instance_variable_get(:@socket)
end
before do
expect(socket).to receive(:write).and_raise(Mongo::Error::SocketError)
end
it 'disconnects and raises the exception' do
expect {
connection.dispatch([ insert ])
}.to raise_error(Mongo::Error::SocketError)
expect(connection).to_not be_connected
end
end
context 'when a socket timeout is set' do
let(:connection) do
described_class.new(server, socket_timeout: 10)
end
it 'sets the timeout' do
expect(connection.timeout).to eq(10)
end
let(:client) do
authorized_client.with(socket_timeout: 1.5)
end
before do
authorized_collection.insert_one(a: 1)
end
after do
sleep(0.5)
authorized_collection.delete_many
client.close
end
it 'raises a timeout when it expires' do
start = Time.now
begin
Timeout::timeout(1.5 + 2) do
client[authorized_collection.name].find("$where" => "sleep(2000) || true").first
end
rescue => ex
end_time = Time.now
expect(ex).to be_a(Timeout::Error)
expect(ex.message).to eq("Took more than 1.5 seconds to receive data.")
end
# Account for wait queue timeout (2s) and rescue
expect(end_time - start).to be_within(2.5).of(1.5)
end
context 'when the socket_timeout is negative' do
let(:connection) do
described_class.new(server, server.options)
end
let(:messages) do
[ insert ]
end
before do
connection.send(:write, messages)
connection.send(:socket).instance_variable_set(:@timeout, -(Time.now.to_i))
end
let(:reply) do
connection.send(:read, messages.last.request_id)
end
it 'raises a timeout error' do
expect {
reply
}.to raise_exception(Timeout::Error)
end
end
end
context 'when the process is forked' do
let(:insert) do
Mongo::Protocol::Insert.new(TEST_DB, TEST_COLL, documents)
end
before do
expect(Process).to receive(:pid).at_least(:once).and_return(1)
end
after do
authorized_collection.delete_many
end
it 'disconnects the connection' do
expect(connection).to receive(:disconnect!).and_call_original
connection.dispatch([ insert ])
end
it 'sets a new pid' do
connection.dispatch([ insert ])
expect(connection.pid).to eq(1)
end
end
end
describe '#initialize' do
context 'when host and port are provided' do
let(:connection) do
described_class.new(server, server.options)
end
it 'sets the address' do
expect(connection.address).to eq(server.address)
end
it 'sets the socket to nil' do
expect(connection.send(:socket)).to be_nil
end
it 'does not set the timeout to the default' do
expect(connection.timeout).to be_nil
end
end
context 'when timeout options are provided' do
let(:connection) do
described_class.new(server, socket_timeout: 10)
end
it 'sets the timeout' do
expect(connection.timeout).to eq(10)
end
end
context 'when ssl options are provided' do
let(:ssl_options) do
{ :ssl => true, :ssl_key => 'file', :ssl_key_pass_phrase => 'iamaphrase' }
end
let(:connection) do
described_class.new(server, ssl_options)
end
it 'sets the ssl options' do
expect(connection.send(:ssl_options)).to eq(ssl_options)
end
end
context 'when ssl is false' do
context 'when ssl options are provided' do
let(:ssl_options) do
{ :ssl => false, :ssl_key => 'file', :ssl_key_pass_phrase => 'iamaphrase' }
end
let(:connection) do
described_class.new(server, ssl_options)
end
it 'does not set the ssl options' do
expect(connection.send(:ssl_options)).to be_empty
end
end
context 'when ssl options are not provided' do
let(:ssl_options) do
{ :ssl => false }
end
let(:connection) do
described_class.new(server, ssl_options)
end
it 'does not set the ssl options' do
expect(connection.send(:ssl_options)).to be_empty
end
end
end
context 'when authentication options are provided' do
let(:connection) do
described_class.new(
server,
:user => TEST_USER.name,
:password => TEST_USER.password,
:database => TEST_DB,
:auth_mech => :mongodb_cr
)
end
let(:user) do
Mongo::Auth::User.new(
database: TEST_DB,
user: TEST_USER.name,
password: TEST_USER.password
)
end
it 'sets the auth options' do
expect(connection.options[:user]).to eq(user.name)
end
end
end
describe '#auth_mechanism' do
let(:connection) do
described_class.new(server, server.options)
end
let(:reply) do
double('reply').tap do |r|
allow(r).to receive(:documents).and_return([ ismaster ])
end
end
before do
connection.connect!
end
context 'when the ismaster response indicates the auth mechanism is :scram' do
let(:features) do
Mongo::Server::Description::Features.new(0..3)
end
context 'when the server auth mechanism is scram', if: scram_sha_1_enabled? do
it 'uses scram' do
allow(Mongo::Server::Description::Features).to receive(:new).and_return(features)
connection.send(:handshake!)
expect(connection.send(:default_mechanism)).to eq(:scram)
end
end
context 'when the server auth mechanism is the default (mongodb_cr)', unless: scram_sha_1_enabled? do
it 'uses scram' do
allow(Mongo::Server::Description::Features).to receive(:new).and_return(features)
connection.send(:handshake!)
expect(connection.send(:default_mechanism)).to eq(:scram)
end
end
end
context 'when the ismaster response indicates the auth mechanism is :mongodb_cr' do
let(:features) do
Mongo::Server::Description::Features.new(0..2)
end
context 'when the server auth mechanism is scram', if: scram_sha_1_enabled? do
it 'uses scram' do
allow(Mongo::Server::Description::Features).to receive(:new).and_return(features)
connection.send(:handshake!)
expect(connection.send(:default_mechanism)).to eq(:scram)
end
end
context 'when the server auth mechanism is the default (mongodb_cr)', unless: scram_sha_1_enabled? do
it 'uses mongodb_cr' do
allow(Mongo::Server::Description::Features).to receive(:new).and_return(features)
connection.send(:handshake!)
expect(connection.send(:default_mechanism)).to eq(:mongodb_cr)
end
end
end
end
context 'when different timeout options are set' do
let(:client) do
authorized_client.with(options)
end
let(:server) do
client.cluster.next_primary
end
let(:address) do
server.address
end
let(:connection) do
described_class.new(server, server.options)
end
after do
client.close
end
context 'when a connect_timeout is in the options' do
context 'when a socket_timeout is in the options' do
let(:options) do
TEST_OPTIONS.merge(connect_timeout: 3, socket_timeout: 5)
end
before do
connection.connect!
end
it 'uses the connect_timeout for the address' do
expect(connection.address.send(:connect_timeout)).to eq(3)
end
it 'uses the socket_timeout as the socket_timeout' do
expect(connection.send(:socket).timeout).to eq(5)
end
end
context 'when a socket_timeout is not in the options' do
let(:options) do
TEST_OPTIONS.merge(connect_timeout: 3, socket_timeout: nil)
end
before do
connection.connect!
end
it 'uses the connect_timeout for the address' do
expect(connection.address.send(:connect_timeout)).to eq(3)
end
it 'does not use a socket_timeout' do
expect(connection.send(:socket).timeout).to be(nil)
end
end
end
context 'when a connect_timeout is not in the options' do
context 'when a socket_timeout is in the options' do
let(:options) do
TEST_OPTIONS.merge(connect_timeout: nil, socket_timeout: 5)
end
before do
connection.connect!
end
it 'uses the default connect_timeout for the address' do
expect(connection.address.send(:connect_timeout)).to eq(10)
end
it 'uses the socket_timeout' do
expect(connection.send(:socket).timeout).to eq(5)
end
end
context 'when a socket_timeout is not in the options' do
let(:options) do
TEST_OPTIONS.merge(connect_timeout: nil, socket_timeout: nil)
end
before do
connection.connect!
end
it 'uses the default connect_timeout for the address' do
expect(connection.address.send(:connect_timeout)).to eq(10)
end
it 'does not use a socket_timeout' do
expect(connection.send(:socket).timeout).to be(nil)
end
end
end
end
end
|