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 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924
|
// Copyright (C) MongoDB, Inc. 2017-present.
//
// 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
// +build go1.13
package topology
import (
"context"
"errors"
"net"
"runtime"
"sync"
"sync/atomic"
"testing"
"time"
"github.com/google/go-cmp/cmp"
"github.com/stretchr/testify/require"
"go.mongodb.org/mongo-driver/bson/primitive"
"go.mongodb.org/mongo-driver/event"
"go.mongodb.org/mongo-driver/internal/testutil/assert"
"go.mongodb.org/mongo-driver/mongo/address"
"go.mongodb.org/mongo-driver/mongo/description"
"go.mongodb.org/mongo-driver/x/bsonx/bsoncore"
"go.mongodb.org/mongo-driver/x/mongo/driver"
"go.mongodb.org/mongo-driver/x/mongo/driver/auth"
"go.mongodb.org/mongo-driver/x/mongo/driver/drivertest"
"go.mongodb.org/mongo-driver/x/mongo/driver/wiremessage"
)
type channelNetConnDialer struct{}
func (cncd *channelNetConnDialer) DialContext(_ context.Context, _, _ string) (net.Conn, error) {
cnc := &drivertest.ChannelNetConn{
Written: make(chan []byte, 1),
ReadResp: make(chan []byte, 2),
ReadErr: make(chan error, 1),
}
if err := cnc.AddResponse(makeHelloReply()); err != nil {
return nil, err
}
return cnc, nil
}
// TestServerConnectionTimeout tests how different timeout errors are handled during connection
// creation and server handshake.
func TestServerConnectionTimeout(t *testing.T) {
testCases := []struct {
desc string
dialer func(Dialer) Dialer
handshaker func(Handshaker) Handshaker
operationTimeout time.Duration
connectTimeout time.Duration
expectErr bool
expectPoolCleared bool
}{
{
desc: "successful connection should not clear the pool",
expectErr: false,
expectPoolCleared: false,
},
{
desc: "timeout error during dialing should clear the pool",
dialer: func(Dialer) Dialer {
var d net.Dialer
return DialerFunc(func(ctx context.Context, network, addr string) (net.Conn, error) {
// Wait for the passed in context to time out. Expect the error returned by
// DialContext() to be treated as a timeout caused by reaching connectTimeoutMS.
<-ctx.Done()
return d.DialContext(ctx, network, addr)
})
},
operationTimeout: 1 * time.Minute,
connectTimeout: 100 * time.Millisecond,
expectErr: true,
expectPoolCleared: true,
},
{
desc: "timeout error during dialing with no operation timeout should clear the pool",
dialer: func(Dialer) Dialer {
var d net.Dialer
return DialerFunc(func(ctx context.Context, network, addr string) (net.Conn, error) {
// Wait for the passed in context to time out. Expect the error returned by
// DialContext() to be treated as a timeout caused by reaching connectTimeoutMS.
<-ctx.Done()
return d.DialContext(ctx, network, addr)
})
},
operationTimeout: 0, // Uses a context.Background() with no timeout.
connectTimeout: 100 * time.Millisecond,
expectErr: true,
expectPoolCleared: true,
},
{
desc: "dial errors unrelated to context timeouts should clear the pool",
dialer: func(Dialer) Dialer {
var d net.Dialer
return DialerFunc(func(ctx context.Context, _, _ string) (net.Conn, error) {
// Try to dial an invalid TCP address and expect an error.
return d.DialContext(ctx, "tcp", "300.0.0.0:nope")
})
},
expectErr: true,
expectPoolCleared: true,
},
{
desc: "operation context timeout with unrelated dial errors should clear the pool",
dialer: func(Dialer) Dialer {
var d net.Dialer
return DialerFunc(func(ctx context.Context, _, _ string) (net.Conn, error) {
// Try to dial an invalid TCP address and expect an error.
c, err := d.DialContext(ctx, "tcp", "300.0.0.0:nope")
// Wait for the passed in context to time out. Expect that the context error is
// ignored because the dial error is not a timeout.
<-ctx.Done()
return c, err
})
},
operationTimeout: 100 * time.Millisecond,
connectTimeout: 1 * time.Second,
expectErr: true,
expectPoolCleared: true,
},
}
for _, tc := range testCases {
tc := tc
t.Run(tc.desc, func(t *testing.T) {
t.Parallel()
// Start a goroutine that pulls events from the events channel and inserts them into the
// events slice. Use a sync.WaitGroup to allow the test code to block until the events
// channel loop exits, guaranteeing that all events were copied from the channel.
// TODO(GODRIVER-2068): Consider using the "testPoolMonitor" from the "mongo/integration"
// package. Requires moving "testPoolMonitor" into a test utilities package.
events := make([]*event.PoolEvent, 0)
eventsCh := make(chan *event.PoolEvent)
var eventsWg sync.WaitGroup
eventsWg.Add(1)
go func() {
defer eventsWg.Done()
for evt := range eventsCh {
events = append(events, evt)
}
}()
// Create a TCP listener on a random port. The listener will accept connections but not
// read or write to them.
l, err := net.Listen("tcp", "127.0.0.1:0")
require.NoError(t, err)
defer func() {
_ = l.Close()
}()
server, err := NewServer(
address.Address(l.Addr().String()),
primitive.NewObjectID(),
// Create a connection pool event monitor that sends all events to an events channel
// so we can assert on the connection pool events later.
WithConnectionPoolMonitor(func(_ *event.PoolMonitor) *event.PoolMonitor {
return &event.PoolMonitor{
Event: func(event *event.PoolEvent) {
eventsCh <- event
},
}
}),
// Replace the default dialer and handshaker with the test dialer and handshaker, if
// present.
WithConnectionOptions(func(opts ...ConnectionOption) []ConnectionOption {
if tc.connectTimeout > 0 {
opts = append(opts, WithConnectTimeout(func(time.Duration) time.Duration { return tc.connectTimeout }))
}
if tc.dialer != nil {
opts = append(opts, WithDialer(tc.dialer))
}
if tc.handshaker != nil {
opts = append(opts, WithHandshaker(tc.handshaker))
}
return opts
}),
// Disable monitoring to prevent unrelated failures from the RTT monitor and
// heartbeats from unexpectedly clearing the connection pool.
withMonitoringDisabled(func(bool) bool { return true }),
)
require.NoError(t, err)
require.NoError(t, server.Connect(nil))
// Create a context with the operation timeout if one is specified in the test case.
ctx := context.Background()
if tc.operationTimeout > 0 {
var cancel context.CancelFunc
ctx, cancel = context.WithTimeout(ctx, tc.operationTimeout)
defer cancel()
}
_, err = server.Connection(ctx)
if tc.expectErr {
assert.NotNil(t, err, "expected an error but got nil")
} else {
assert.Nil(t, err, "expected no error but got %s", err)
}
// Disconnect the server then close the events channel and expect that no more events
// are sent on the channel. Then wait for the events channel loop to return before
// inspecting the events slice.
_ = server.Disconnect(context.Background())
close(eventsCh)
eventsWg.Wait()
require.NotEmpty(t, events, "expected more than 0 connection pool monitor events")
// Look for any "ConnectionPoolCleared" events in the events slice so we can assert that
// the Server connection pool was or wasn't cleared, depending on the test expectations.
poolCleared := false
for _, evt := range events {
if evt.Type == event.PoolCleared {
poolCleared = true
}
}
assert.Equal(
t,
tc.expectPoolCleared,
poolCleared,
"want pool cleared: %t, actual pool cleared: %t",
tc.expectPoolCleared,
poolCleared)
})
}
}
func TestServer(t *testing.T) {
var serverTestTable = []struct {
name string
connectionError bool
networkError bool
hasDesc bool
}{
{"auth_error", true, false, false},
{"no_error", false, false, false},
{"network_error_no_desc", false, true, false},
{"network_error_desc", false, true, true},
}
authErr := ConnectionError{Wrapped: &auth.Error{}, init: true}
netErr := ConnectionError{Wrapped: &net.AddrError{}, init: true}
for _, tt := range serverTestTable {
t.Run(tt.name, func(t *testing.T) {
var returnConnectionError bool
s, err := NewServer(
address.Address("localhost"),
primitive.NewObjectID(),
WithConnectionOptions(func(connOpts ...ConnectionOption) []ConnectionOption {
return append(connOpts,
WithHandshaker(func(Handshaker) Handshaker {
return &testHandshaker{
finishHandshake: func(context.Context, driver.Connection) error {
var err error
if tt.connectionError && returnConnectionError {
err = authErr.Wrapped
}
return err
},
}
}),
WithDialer(func(Dialer) Dialer {
return DialerFunc(func(context.Context, string, string) (net.Conn, error) {
var err error
if tt.networkError && returnConnectionError {
err = netErr.Wrapped
}
return &net.TCPConn{}, err
})
}),
)
}),
)
require.NoError(t, err)
var desc *description.Server
descript := s.Description()
if tt.hasDesc {
desc = &descript
require.Nil(t, desc.LastError)
}
err = s.pool.connect()
require.NoError(t, err, "unable to connect to pool")
defer func() {
_ = s.pool.disconnect(context.Background())
}()
s.connectionstate = connected
// The internal connection pool resets the generation number once the number of connections in a generation
// reaches zero, which will cause some of these tests to fail because they assert that the generation
// number after a connection failure is 1. To workaround this, we call Connection() twice: once to
// successfully establish a connection and once to actually do the behavior described in the test case.
_, err = s.Connection(context.Background())
assert.Nil(t, err, "error getting initial connection: %v", err)
returnConnectionError = true
_, err = s.Connection(context.Background())
switch {
case tt.connectionError && !cmp.Equal(err, authErr, cmp.Comparer(compareErrors)):
t.Errorf("Expected connection error. got %v; want %v", err, authErr)
case tt.networkError && !cmp.Equal(err, netErr, cmp.Comparer(compareErrors)):
t.Errorf("Expected network error. got %v; want %v", err, netErr)
case !tt.connectionError && !tt.networkError && err != nil:
t.Errorf("Expected error to be nil. got %v; want %v", err, "<nil>")
}
if tt.hasDesc {
require.Equal(t, s.Description().Kind, (description.ServerKind)(description.Unknown))
require.NotNil(t, s.Description().LastError)
}
generation := s.pool.generation.getGeneration(nil)
if (tt.connectionError || tt.networkError) && generation != 1 {
t.Errorf("Expected pool to be drained once on connection or network error. got %d; want %d", generation, 1)
}
})
}
t.Run("multiple connection initialization errors are processed correctly", func(t *testing.T) {
assertGenerationStats := func(t *testing.T, server *Server, serviceID primitive.ObjectID, generation, numConns uint64) {
t.Helper()
stats, ok := server.pool.generation.generationMap[serviceID]
assert.True(t, ok, "entry for serviceID not found")
assert.Equal(t, generation, stats.generation, "expected generation number %d, got %d", generation, stats.generation)
assert.Equal(t, numConns, stats.numConns, "expected connection count %d, got %d", numConns, stats.numConns)
}
testCases := []struct {
name string
loadBalanced bool
dialErr error
getInfoErr error
finishHandshakeErr error
finalGeneration uint64
numNewConns uint64
}{
// For LB clusters, errors for dialing and the initial handshake are ignored.
{"dial errors are ignored for load balancers", true, netErr.Wrapped, nil, nil, 0, 0},
{"initial handshake errors are ignored for load balancers", true, nil, netErr.Wrapped, nil, 0, 0},
{"post-handshake errors are not ignored for load balancers", true, nil, nil, netErr.Wrapped, 2, 0},
// For non-LB clusters, all errors are processed.
{"dial errors are not ignored for non-lb clusters", false, netErr.Wrapped, nil, nil, 2, 0},
{"initial handshake errors are not ignored for non-lb clusters", false, nil, netErr.Wrapped, nil, 2, 0},
{"post-handshake errors are not ignored for non-lb clusters", false, nil, nil, netErr.Wrapped, 2, 0},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
var returnConnectionError bool
var serviceID primitive.ObjectID
if tc.loadBalanced {
serviceID = primitive.NewObjectID()
}
handshaker := &testHandshaker{
getHandshakeInformation: func(_ context.Context, addr address.Address, _ driver.Connection) (driver.HandshakeInformation, error) {
if tc.getInfoErr != nil && returnConnectionError {
return driver.HandshakeInformation{}, tc.getInfoErr
}
desc := description.NewDefaultServer(addr)
if tc.loadBalanced {
desc.ServiceID = &serviceID
}
return driver.HandshakeInformation{Description: desc}, nil
},
finishHandshake: func(context.Context, driver.Connection) error {
if tc.finishHandshakeErr != nil && returnConnectionError {
return tc.finishHandshakeErr
}
return nil
},
}
connOpts := []ConnectionOption{
WithDialer(func(Dialer) Dialer {
return DialerFunc(func(context.Context, string, string) (net.Conn, error) {
var err error
if returnConnectionError && tc.dialErr != nil {
err = tc.dialErr
}
return &net.TCPConn{}, err
})
}),
WithHandshaker(func(Handshaker) Handshaker {
return handshaker
}),
WithConnectionLoadBalanced(func(bool) bool {
return tc.loadBalanced
}),
}
serverOpts := []ServerOption{
WithServerLoadBalanced(func(bool) bool {
return tc.loadBalanced
}),
WithConnectionOptions(func(...ConnectionOption) []ConnectionOption {
return connOpts
}),
// Disable the monitoring routine because we're only testing pooled connections and we don't want
// errors in monitoring to clear the pool and make this test flaky.
withMonitoringDisabled(func(bool) bool {
return true
}),
}
server, err := ConnectServer(address.Address("localhost:27017"), nil, primitive.NewObjectID(), serverOpts...)
assert.Nil(t, err, "ConnectServer error: %v", err)
_, err = server.Connection(context.Background())
assert.Nil(t, err, "Connection error: %v", err)
assertGenerationStats(t, server, serviceID, 0, 1)
returnConnectionError = true
for i := 0; i < 2; i++ {
_, err = server.Connection(context.Background())
switch {
case tc.dialErr != nil || tc.getInfoErr != nil || tc.finishHandshakeErr != nil:
assert.NotNil(t, err, "expected Connection error at iteration %d, got nil", i)
default:
assert.Nil(t, err, "Connection error at iteration %d: %v", i, err)
}
}
// The final number of connections should be numNewConns+1 to account for the extra one we create above.
assertGenerationStats(t, server, serviceID, tc.finalGeneration, tc.numNewConns+1)
})
}
})
t.Run("Cannot starve connection request", func(t *testing.T) {
cleanup := make(chan struct{})
addr := bootstrapConnections(t, 3, func(nc net.Conn) {
<-cleanup
_ = nc.Close()
})
d := newdialer(&net.Dialer{})
s, err := NewServer(address.Address(addr.String()),
primitive.NewObjectID(),
WithConnectionOptions(func(option ...ConnectionOption) []ConnectionOption {
return []ConnectionOption{WithDialer(func(_ Dialer) Dialer { return d })}
}),
WithMaxConnections(func(u uint64) uint64 {
return 1
}))
noerr(t, err)
s.connectionstate = connected
err = s.pool.connect()
noerr(t, err)
defer func() {
_ = s.pool.disconnect(context.Background())
}()
conn, err := s.Connection(context.Background())
noerr(t, err)
if d.lenopened() != 1 {
t.Errorf("Should have opened 1 connections, but didn't. got %d; want %d", d.lenopened(), 1)
}
var wg sync.WaitGroup
wg.Add(1)
ch := make(chan struct{})
go func() {
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
defer cancel()
ch <- struct{}{}
_, err := s.Connection(ctx)
if err != nil {
t.Errorf("Should not be able to starve connection request, but got error: %v", err)
}
wg.Done()
}()
<-ch
runtime.Gosched()
err = conn.Close()
noerr(t, err)
wg.Wait()
close(cleanup)
})
t.Run("ProcessError", func(t *testing.T) {
processID := primitive.NewObjectID()
// Declare "old" and "new" topology versions and a connection that reports the new version from its
// Description() method. This connection can be used to test that errors containing a stale topology version
// do not affect the state of the server.
oldTV := &description.TopologyVersion{
ProcessID: processID,
Counter: 0,
}
newTV := &description.TopologyVersion{
ProcessID: processID,
Counter: 1,
}
oldTVConn := newProcessErrorTestConn(oldTV)
newTVConn := newProcessErrorTestConn(newTV)
staleNotPrimaryError := driver.Error{
Code: 10107, // NotPrimary
TopologyVersion: oldTV,
}
newNotPrimaryError := driver.Error{
Code: 10107,
}
newShutdownError := driver.Error{
Code: 11600, // InterruptedAtShutdown
}
staleNotPrimaryWCError := driver.WriteCommandError{
WriteConcernError: &driver.WriteConcernError{
Code: 10107,
TopologyVersion: oldTV,
},
}
newNotPrimaryWCError := driver.WriteCommandError{
WriteConcernError: &driver.WriteConcernError{
Code: 10107,
},
}
newShutdownWCError := driver.WriteCommandError{
WriteConcernError: &driver.WriteConcernError{
Code: 11600,
},
}
nonStateChangeError := driver.Error{
Code: 1,
}
networkTimeoutError := driver.Error{
Labels: []string{driver.NetworkError},
Wrapped: ConnectionError{
// Use a net.Error implementation that can return true from its Timeout() function.
Wrapped: &net.DNSError{
IsTimeout: true,
},
},
}
contextCanceledError := driver.Error{
Labels: []string{driver.NetworkError},
Wrapped: ConnectionError{
Wrapped: context.Canceled,
},
}
nonTimeoutNetworkError := driver.Error{
Labels: []string{driver.NetworkError},
Wrapped: ConnectionError{
// Use a net.Error implementation that always returns false from its Timeout() function.
Wrapped: &net.AddrError{},
},
}
testCases := []struct {
name string
err error
conn driver.Connection
result driver.ProcessErrorResult
}{
// One-off tests for errors that should have no effect.
{"nil error", nil, oldTVConn, driver.NoChange},
{"stale connection", errors.New("foo"), newStaleProcessErrorTestConn(), driver.NoChange},
{"non state change error", nonStateChangeError, oldTVConn, driver.NoChange},
// Tests for top-level (ok: 0) errors. We test a NotPrimary error and a Shutdown error because the former
// only causes the server to be marked Unknown and the latter causes the pool to be cleared.
{"stale not primary error", staleNotPrimaryError, newTVConn, driver.NoChange},
{"new not primary error", newNotPrimaryError, oldTVConn, driver.ServerMarkedUnknown},
{"new shutdown error", newShutdownError, oldTVConn, driver.ConnectionPoolCleared},
// Repeat ok:0 tests for write concern errors.
{"stale not primary write concern error", staleNotPrimaryWCError, newTVConn, driver.NoChange},
{"new not primary write concern error", newNotPrimaryWCError, oldTVConn, driver.ServerMarkedUnknown},
{"new shutdown write concern error", newShutdownWCError, oldTVConn, driver.ConnectionPoolCleared},
// Network/timeout error tests.
{"network timeout error", networkTimeoutError, oldTVConn, driver.NoChange},
{"context canceled error", contextCanceledError, oldTVConn, driver.NoChange},
{"non-timeout network error", nonTimeoutNetworkError, oldTVConn, driver.ConnectionPoolCleared},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
server, err := NewServer(address.Address("localhost"), primitive.NewObjectID())
assert.Nil(t, err, "NewServer error: %v", err)
server.connectionstate = connected
server.pool.connected = connected
originalDesc := description.Server{
// The actual Kind value does not matter as long as it's not Unknown so we can detect that it is
// properly changed to Unknown during the ProcessError call if needed.
Kind: description.RSPrimary,
}
server.desc.Store(originalDesc)
result := server.ProcessError(tc.err, tc.conn)
assert.Equal(t, tc.result, result,
"expected ProcessError result %v, got %v", tc.result, result)
// Test the ServerChanged() function.
expectedServerChanged := tc.result != driver.NoChange
serverChanged := result.ServerChanged()
assert.Equal(t, expectedServerChanged, serverChanged, "expected ServerChanged() to return %v, got %v",
expectedServerChanged, serverChanged)
// Test that the server description fields have been updated to match the ProcessError result.
expectedKind := originalDesc.Kind
var expectedError error
var expectedPoolGeneration uint64
switch tc.result {
case driver.ConnectionPoolCleared:
expectedPoolGeneration = 1
// This case also implies ServerMarkedUnknown, so any logic in the following case applies as well.
fallthrough
case driver.ServerMarkedUnknown:
expectedKind = description.Unknown
expectedError = tc.err
case driver.NoChange:
default:
t.Fatalf("unrecognized ProcessErrorResult value %v", tc.result)
}
desc := server.Description()
assert.Equal(t, expectedKind, desc.Kind,
"expected server kind %q, got %q", expectedKind, desc.Kind)
assert.Equal(t, expectedError, desc.LastError,
"expected last error %v, got %v", expectedError, desc.LastError)
generation := server.pool.generation.getGeneration(nil)
assert.Equal(t, expectedPoolGeneration, generation,
"expected pool generation %d, got %d", expectedPoolGeneration, generation)
})
}
})
t.Run("update topology", func(t *testing.T) {
var updated atomic.Value // bool
updated.Store(false)
updateCallback := func(desc description.Server) description.Server {
updated.Store(true)
return desc
}
s, err := ConnectServer(address.Address("localhost"), updateCallback, primitive.NewObjectID())
require.NoError(t, err)
s.updateDescription(description.Server{Addr: s.address})
require.True(t, updated.Load().(bool))
})
t.Run("heartbeat", func(t *testing.T) {
// test that client metadata is sent on handshakes but not heartbeats
dialer := &channelNetConnDialer{}
dialerOpt := WithDialer(func(Dialer) Dialer {
return dialer
})
serverOpt := WithConnectionOptions(func(connOpts ...ConnectionOption) []ConnectionOption {
return append(connOpts, dialerOpt)
})
s, err := NewServer(address.Address("localhost:27017"), primitive.NewObjectID(), serverOpt)
if err != nil {
t.Fatalf("error from NewServer: %v", err)
}
// do a heartbeat with a nil connection so a new one will be dialed
_, err = s.check()
assert.Nil(t, err, "check error: %v", err)
assert.NotNil(t, s.conn, "no connection dialed in check")
channelConn := s.conn.nc.(*drivertest.ChannelNetConn)
wm := channelConn.GetWrittenMessage()
if wm == nil {
t.Fatal("no wire message written for handshake")
}
if !includesMetadata(t, wm) {
t.Fatal("client metadata expected in handshake but not found")
}
// do a heartbeat with a non-nil connection
if err = channelConn.AddResponse(makeHelloReply()); err != nil {
t.Fatalf("error adding response: %v", err)
}
_, err = s.check()
assert.Nil(t, err, "check error: %v", err)
wm = channelConn.GetWrittenMessage()
if wm == nil {
t.Fatal("no wire message written for heartbeat")
}
if includesMetadata(t, wm) {
t.Fatal("client metadata not expected in heartbeat but found")
}
})
t.Run("heartbeat monitoring", func(t *testing.T) {
var publishedEvents []interface{}
serverHeartbeatStarted := func(e *event.ServerHeartbeatStartedEvent) {
publishedEvents = append(publishedEvents, *e)
}
serverHeartbeatSucceeded := func(e *event.ServerHeartbeatSucceededEvent) {
publishedEvents = append(publishedEvents, *e)
}
serverHeartbeatFailed := func(e *event.ServerHeartbeatFailedEvent) {
publishedEvents = append(publishedEvents, *e)
}
sdam := &event.ServerMonitor{
ServerHeartbeatStarted: serverHeartbeatStarted,
ServerHeartbeatSucceeded: serverHeartbeatSucceeded,
ServerHeartbeatFailed: serverHeartbeatFailed,
}
dialer := &channelNetConnDialer{}
dialerOpt := WithDialer(func(Dialer) Dialer {
return dialer
})
serverOpts := []ServerOption{
WithConnectionOptions(func(connOpts ...ConnectionOption) []ConnectionOption {
return append(connOpts, dialerOpt)
}),
withMonitoringDisabled(func(bool) bool { return true }),
WithServerMonitor(func(*event.ServerMonitor) *event.ServerMonitor { return sdam }),
}
s, err := NewServer(address.Address("localhost:27017"), primitive.NewObjectID(), serverOpts...)
if err != nil {
t.Fatalf("error from NewServer: %v", err)
}
// set up heartbeat connection, which doesn't send events
_, err = s.check()
assert.Nil(t, err, "check error: %v", err)
channelConn := s.conn.nc.(*drivertest.ChannelNetConn)
_ = channelConn.GetWrittenMessage()
t.Run("success", func(t *testing.T) {
publishedEvents = nil
// do a heartbeat with a non-nil connection
if err = channelConn.AddResponse(makeHelloReply()); err != nil {
t.Fatalf("error adding response: %v", err)
}
_, err = s.check()
_ = channelConn.GetWrittenMessage()
assert.Nil(t, err, "check error: %v", err)
assert.Equal(t, len(publishedEvents), 2, "expected %v events, got %v", 2, len(publishedEvents))
started, ok := publishedEvents[0].(event.ServerHeartbeatStartedEvent)
assert.True(t, ok, "expected type %T, got %T", event.ServerHeartbeatStartedEvent{}, publishedEvents[0])
assert.Equal(t, started.ConnectionID, s.conn.ID(), "expected connectionID to match")
assert.False(t, started.Awaited, "expected awaited to be false")
succeeded, ok := publishedEvents[1].(event.ServerHeartbeatSucceededEvent)
assert.True(t, ok, "expected type %T, got %T", event.ServerHeartbeatSucceededEvent{}, publishedEvents[1])
assert.Equal(t, succeeded.ConnectionID, s.conn.ID(), "expected connectionID to match")
assert.Equal(t, succeeded.Reply.Addr, s.address, "expected address %v, got %v", s.address, succeeded.Reply.Addr)
assert.False(t, succeeded.Awaited, "expected awaited to be false")
})
t.Run("failure", func(t *testing.T) {
publishedEvents = nil
// do a heartbeat with a non-nil connection
readErr := errors.New("error")
channelConn.ReadErr <- readErr
_, err = s.check()
_ = channelConn.GetWrittenMessage()
assert.Nil(t, err, "check error: %v", err)
assert.Equal(t, len(publishedEvents), 2, "expected %v events, got %v", 2, len(publishedEvents))
started, ok := publishedEvents[0].(event.ServerHeartbeatStartedEvent)
assert.True(t, ok, "expected type %T, got %T", event.ServerHeartbeatStartedEvent{}, publishedEvents[0])
assert.Equal(t, started.ConnectionID, s.conn.ID(), "expected connectionID to match")
assert.False(t, started.Awaited, "expected awaited to be false")
failed, ok := publishedEvents[1].(event.ServerHeartbeatFailedEvent)
assert.True(t, ok, "expected type %T, got %T", event.ServerHeartbeatFailedEvent{}, publishedEvents[1])
assert.Equal(t, failed.ConnectionID, s.conn.ID(), "expected connectionID to match")
assert.False(t, failed.Awaited, "expected awaited to be false")
assert.True(t, errors.Is(failed.Failure, readErr), "expected Failure to be %v, got: %v", readErr, failed.Failure)
})
})
t.Run("WithServerAppName", func(t *testing.T) {
name := "test"
s, err := NewServer(address.Address("localhost"),
primitive.NewObjectID(),
WithServerAppName(func(string) string { return name }))
require.Nil(t, err, "error from NewServer: %v", err)
require.Equal(t, name, s.cfg.appname, "expected appname to be: %v, got: %v", name, s.cfg.appname)
})
t.Run("createConnection overwrites WithSocketTimeout", func(t *testing.T) {
socketTimeout := 40 * time.Second
s, err := NewServer(
address.Address("localhost"),
primitive.NewObjectID(),
WithConnectionOptions(func(connOpts ...ConnectionOption) []ConnectionOption {
return append(
connOpts,
WithReadTimeout(func(time.Duration) time.Duration { return socketTimeout }),
WithWriteTimeout(func(time.Duration) time.Duration { return socketTimeout }),
)
}),
)
assert.Nil(t, err, "NewServer error: %v", err)
conn, err := s.createConnection()
assert.Nil(t, err, "createConnection error: %v", err)
assert.Equal(t, s.cfg.heartbeatTimeout, 10*time.Second, "expected heartbeatTimeout to be: %v, got: %v", 10*time.Second, s.cfg.heartbeatTimeout)
assert.Equal(t, s.cfg.heartbeatTimeout, conn.readTimeout, "expected readTimeout to be: %v, got: %v", s.cfg.heartbeatTimeout, conn.readTimeout)
assert.Equal(t, s.cfg.heartbeatTimeout, conn.writeTimeout, "expected writeTimeout to be: %v, got: %v", s.cfg.heartbeatTimeout, conn.writeTimeout)
})
t.Run("heartbeat contexts are not leaked", func(t *testing.T) {
// The context created for heartbeats should be cancelled when it is no longer needed to avoid leaks.
server, err := ConnectServer(
address.Address("invalid"),
nil,
primitive.NewObjectID(),
withMonitoringDisabled(func(bool) bool {
return true
}),
)
assert.Nil(t, err, "ConnectServer error: %v", err)
// Expect check to return an error in the server description because the server address doesn't exist. This is
// OK because we just want to ensure the heartbeat context is created.
desc, err := server.check()
assert.Nil(t, err, "check error: %v", err)
assert.NotNil(t, desc.LastError, "expected server description to contain an error, got nil")
assert.NotNil(t, server.heartbeatCtx, "expected heartbeatCtx to be non-nil, got nil")
assert.Nil(t, server.heartbeatCtx.Err(), "expected heartbeatCtx error to be nil, got %v", server.heartbeatCtx.Err())
// Override heartbeatCtxCancel with a wrapper that records whether or not it was called.
oldCancelFn := server.heartbeatCtxCancel
var previousCtxCancelled bool
server.heartbeatCtxCancel = func() {
previousCtxCancelled = true
oldCancelFn()
}
// The second check call should attempt to create a new heartbeat connection and should cancel the previous
// heartbeatCtx during the process.
desc, err = server.check()
assert.Nil(t, err, "check error: %v", err)
assert.NotNil(t, desc.LastError, "expected server description to contain an error, got nil")
assert.True(t, previousCtxCancelled, "expected check to cancel previous context but did not")
})
}
func includesMetadata(t *testing.T, wm []byte) bool {
var ok bool
_, _, _, _, wm, ok = wiremessage.ReadHeader(wm)
if !ok {
t.Fatal("could not read header")
}
_, wm, ok = wiremessage.ReadQueryFlags(wm)
if !ok {
t.Fatal("could not read flags")
}
_, wm, ok = wiremessage.ReadQueryFullCollectionName(wm)
if !ok {
t.Fatal("could not read fullCollectionName")
}
_, wm, ok = wiremessage.ReadQueryNumberToSkip(wm)
if !ok {
t.Fatal("could not read numberToSkip")
}
_, wm, ok = wiremessage.ReadQueryNumberToReturn(wm)
if !ok {
t.Fatal("could not read numberToReturn")
}
var query bsoncore.Document
query, wm, ok = wiremessage.ReadQueryQuery(wm)
if !ok {
t.Fatal("could not read query")
}
if _, err := query.LookupErr("client"); err == nil {
return true
}
if _, err := query.LookupErr("$query", "client"); err == nil {
return true
}
return false
}
// processErrorTestConn is a driver.Connection implementation used by tests
// for Server.ProcessError. This type should not be used for other tests
// because it does not implement all of the functions of the interface.
type processErrorTestConn struct {
// Embed a driver.Connection to quickly implement the interface without
// implementing all methods.
driver.Connection
stale bool
tv *description.TopologyVersion
}
func newProcessErrorTestConn(tv *description.TopologyVersion) *processErrorTestConn {
return &processErrorTestConn{
tv: tv,
}
}
func newStaleProcessErrorTestConn() *processErrorTestConn {
return &processErrorTestConn{
stale: true,
}
}
func (p *processErrorTestConn) Stale() bool {
return p.stale
}
func (p *processErrorTestConn) Description() description.Server {
return description.Server{
WireVersion: &description.VersionRange{
Max: SupportedWireVersions.Max,
},
TopologyVersion: p.tv,
}
}
|