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 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060
|
// Copyright (C) MongoDB, Inc. 2022-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
package driver
import (
"bytes"
"context"
"errors"
"math"
"testing"
"time"
"github.com/google/go-cmp/cmp"
"go.mongodb.org/mongo-driver/bson/bsontype"
"go.mongodb.org/mongo-driver/bson/primitive"
"go.mongodb.org/mongo-driver/internal/assert"
"go.mongodb.org/mongo-driver/internal/csot"
"go.mongodb.org/mongo-driver/internal/handshake"
"go.mongodb.org/mongo-driver/internal/require"
"go.mongodb.org/mongo-driver/internal/uuid"
"go.mongodb.org/mongo-driver/mongo/address"
"go.mongodb.org/mongo-driver/mongo/description"
"go.mongodb.org/mongo-driver/mongo/readconcern"
"go.mongodb.org/mongo-driver/mongo/readpref"
"go.mongodb.org/mongo-driver/mongo/writeconcern"
"go.mongodb.org/mongo-driver/tag"
"go.mongodb.org/mongo-driver/x/bsonx/bsoncore"
"go.mongodb.org/mongo-driver/x/mongo/driver/session"
"go.mongodb.org/mongo-driver/x/mongo/driver/wiremessage"
)
func noerr(t *testing.T, err error) {
t.Helper()
if err != nil {
t.Errorf("Unexpected error: %v", err)
t.FailNow()
}
}
func compareErrors(err1, err2 error) bool {
if err1 == nil && err2 == nil {
return true
}
if err1 == nil || err2 == nil {
return false
}
if err1.Error() != err2.Error() {
return false
}
return true
}
func TestOperation(t *testing.T) {
int64ToPtr := func(i64 int64) *int64 { return &i64 }
t.Run("selectServer", func(t *testing.T) {
t.Run("returns validation error", func(t *testing.T) {
op := &Operation{}
_, err := op.selectServer(context.Background(), 1, nil)
if err == nil {
t.Error("Expected a validation error from selectServer, but got <nil>")
}
})
t.Run("uses specified server selector", func(t *testing.T) {
want := new(mockServerSelector)
d := new(mockDeployment)
op := &Operation{
CommandFn: func([]byte, description.SelectedServer) ([]byte, error) { return nil, nil },
Deployment: d,
Database: "testing",
Selector: want,
}
_, err := op.selectServer(context.Background(), 1, nil)
noerr(t, err)
// Assert the selector is an operation selector wrapper.
oss, ok := d.params.selector.(*opServerSelector)
require.True(t, ok)
if !cmp.Equal(oss.selector, want) {
t.Errorf("Did not get expected server selector. got %v; want %v", oss.selector, want)
}
})
t.Run("uses a default server selector", func(t *testing.T) {
d := new(mockDeployment)
op := &Operation{
CommandFn: func([]byte, description.SelectedServer) ([]byte, error) { return nil, nil },
Deployment: d,
Database: "testing",
}
_, err := op.selectServer(context.Background(), 1, nil)
noerr(t, err)
if d.params.selector == nil {
t.Error("The selectServer method should use a default selector when not specified on Operation, but it passed <nil>.")
}
})
})
t.Run("Validate", func(t *testing.T) {
cmdFn := func([]byte, description.SelectedServer) ([]byte, error) { return nil, nil }
d := new(mockDeployment)
testCases := []struct {
name string
op *Operation
err error
}{
{"CommandFn", &Operation{}, InvalidOperationError{MissingField: "CommandFn"}},
{"Deployment", &Operation{CommandFn: cmdFn}, InvalidOperationError{MissingField: "Deployment"}},
{"Database", &Operation{CommandFn: cmdFn, Deployment: d}, errDatabaseNameEmpty},
{"<nil>", &Operation{CommandFn: cmdFn, Deployment: d, Database: "test"}, nil},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
if tc.op == nil {
t.Fatal("op cannot be <nil>")
}
want := tc.err
got := tc.op.Validate()
if !cmp.Equal(got, want, cmp.Comparer(compareErrors)) {
t.Errorf("Did not validate properly. got %v; want %v", got, want)
}
})
}
})
t.Run("retryableWrite", func(t *testing.T) {
sessPool := session.NewPool(nil)
id, err := uuid.New()
noerr(t, err)
sess, err := session.NewClientSession(sessPool, id)
noerr(t, err)
sessStartingTransaction, err := session.NewClientSession(sessPool, id)
noerr(t, err)
err = sessStartingTransaction.StartTransaction(nil)
noerr(t, err)
sessInProgressTransaction, err := session.NewClientSession(sessPool, id)
noerr(t, err)
err = sessInProgressTransaction.StartTransaction(nil)
noerr(t, err)
err = sessInProgressTransaction.ApplyCommand(description.Server{})
noerr(t, err)
wcAck := writeconcern.New(writeconcern.WMajority())
wcUnack := writeconcern.New(writeconcern.W(0))
descRetryable := description.Server{
WireVersion: &description.VersionRange{Min: 6, Max: 21},
SessionTimeoutMinutes: 1,
SessionTimeoutMinutesPtr: int64ToPtr(1),
}
descNotRetryableWireVersion := description.Server{
WireVersion: &description.VersionRange{Min: 6, Max: 21},
SessionTimeoutMinutes: 1,
SessionTimeoutMinutesPtr: int64ToPtr(1),
}
descNotRetryableStandalone := description.Server{
WireVersion: &description.VersionRange{Min: 6, Max: 21},
SessionTimeoutMinutes: 1,
SessionTimeoutMinutesPtr: int64ToPtr(1),
Kind: description.Standalone,
}
testCases := []struct {
name string
op Operation
desc description.Server
want Type
}{
{"deployment doesn't support", Operation{}, description.Server{}, Type(0)},
{"wire version too low", Operation{Client: sess, WriteConcern: wcAck}, descNotRetryableWireVersion, Type(0)},
{"standalone not supported", Operation{Client: sess, WriteConcern: wcAck}, descNotRetryableStandalone, Type(0)},
{
"transaction in progress",
Operation{Client: sessInProgressTransaction, WriteConcern: wcAck},
descRetryable, Type(0),
},
{
"transaction starting",
Operation{Client: sessStartingTransaction, WriteConcern: wcAck},
descRetryable, Type(0),
},
{"unacknowledged write concern", Operation{Client: sess, WriteConcern: wcUnack}, descRetryable, Type(0)},
{
"acknowledged write concern",
Operation{Client: sess, WriteConcern: wcAck, Type: Write},
descRetryable, Write,
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
got := tc.op.retryable(tc.desc)
if got != (tc.want != Type(0)) {
t.Errorf("Did not receive expected Type. got %v; want %v", got, tc.want)
}
})
}
})
t.Run("addReadConcern", func(t *testing.T) {
majorityRc := bsoncore.AppendDocumentElement(nil, "readConcern", bsoncore.BuildDocument(nil,
bsoncore.AppendStringElement(nil, "level", "majority"),
))
testCases := []struct {
name string
rc *readconcern.ReadConcern
want bsoncore.Document
}{
{"nil", nil, nil},
{"empty", readconcern.New(), nil},
{"non-empty", readconcern.Majority(), majorityRc},
}
for _, tc := range testCases {
got, err := Operation{ReadConcern: tc.rc}.addReadConcern(nil, description.SelectedServer{})
noerr(t, err)
if !bytes.Equal(got, tc.want) {
t.Errorf("ReadConcern elements do not match. got %v; want %v", got, tc.want)
}
}
})
t.Run("addWriteConcern", func(t *testing.T) {
want := bsoncore.AppendDocumentElement(nil, "writeConcern", bsoncore.BuildDocumentFromElements(
nil, bsoncore.AppendStringElement(nil, "w", "majority"),
))
got, err := Operation{WriteConcern: writeconcern.New(writeconcern.WMajority())}.addWriteConcern(nil, description.SelectedServer{})
noerr(t, err)
if !bytes.Equal(got, want) {
t.Errorf("WriteConcern elements do not match. got %v; want %v", got, want)
}
})
t.Run("addSession", func(t *testing.T) { t.Skip("These tests should be covered by spec tests.") })
t.Run("addClusterTime", func(t *testing.T) {
t.Run("adds max cluster time", func(t *testing.T) {
want := bsoncore.AppendDocumentElement(nil, "$clusterTime", bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendTimestampElement(nil, "clusterTime", 1234, 5678),
))
newer := bsoncore.BuildDocumentFromElements(nil, want)
older := bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendDocumentElement(nil, "$clusterTime", bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendTimestampElement(nil, "clusterTime", 1234, 5670),
)),
)
clusterClock := new(session.ClusterClock)
clusterClock.AdvanceClusterTime(newer)
sessPool := session.NewPool(nil)
id, err := uuid.New()
noerr(t, err)
sess, err := session.NewClientSession(sessPool, id)
noerr(t, err)
err = sess.AdvanceClusterTime(older)
noerr(t, err)
got := Operation{Client: sess, Clock: clusterClock}.addClusterTime(nil, description.SelectedServer{
Server: description.Server{WireVersion: &description.VersionRange{Min: 6, Max: 21}},
})
if !bytes.Equal(got, want) {
t.Errorf("ClusterTimes do not match. got %v; want %v", got, want)
}
})
})
t.Run("calculateMaxTimeMS", func(t *testing.T) {
timeout := 5 * time.Second
maxTime := 2 * time.Second
negMaxTime := -2 * time.Second
shortRTT := 50 * time.Millisecond
longRTT := 10 * time.Second
timeoutCtx, cancel := csot.MakeTimeoutContext(context.Background(), timeout)
defer cancel()
testCases := []struct {
name string
op Operation
ctx context.Context
rtt90 time.Duration
want uint64
err error
}{
{
name: "uses context deadline and rtt90 with timeout",
op: Operation{MaxTime: &maxTime},
ctx: timeoutCtx,
rtt90: shortRTT,
want: 5000,
err: nil,
},
{
name: "uses MaxTime without timeout",
op: Operation{MaxTime: &maxTime},
ctx: context.Background(),
rtt90: longRTT,
want: 2000,
err: nil,
},
{
name: "errors when remaining timeout is less than rtt90",
op: Operation{MaxTime: &maxTime},
ctx: timeoutCtx,
rtt90: timeout,
want: 0,
err: ErrDeadlineWouldBeExceeded,
},
{
name: "errors when MaxTime is negative",
op: Operation{MaxTime: &negMaxTime},
ctx: context.Background(),
rtt90: longRTT,
want: 0,
err: ErrNegativeMaxTime,
},
}
for _, tc := range testCases {
// Capture test-case for parallel sub-test.
tc := tc
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
got, err := tc.op.calculateMaxTimeMS(tc.ctx, mockRTTMonitor{p90: tc.rtt90})
// Assert that the calculated maxTimeMS is less than or equal to the expected value. A few
// milliseconds will have elapsed toward the context deadline, and (remainingTimeout
// - rtt90) will be slightly smaller than the expected value.
if got > tc.want {
t.Errorf("maxTimeMS value higher than expected. got %v; wanted at most %v", got, tc.want)
}
if !errors.Is(err, tc.err) {
t.Errorf("error values do not match. got %v; want %v", err, tc.err)
}
})
}
})
t.Run("updateClusterTimes", func(t *testing.T) {
clustertime := bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendDocumentElement(nil, "$clusterTime", bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendTimestampElement(nil, "clusterTime", 1234, 5678),
)),
)
clusterClock := new(session.ClusterClock)
sessPool := session.NewPool(nil)
id, err := uuid.New()
noerr(t, err)
sess, err := session.NewClientSession(sessPool, id)
noerr(t, err)
Operation{Client: sess, Clock: clusterClock}.updateClusterTimes(clustertime)
got := sess.ClusterTime
if !bytes.Equal(got, clustertime) {
t.Errorf("ClusterTimes do not match. got %v; want %v", got, clustertime)
}
got = clusterClock.GetClusterTime()
if !bytes.Equal(got, clustertime) {
t.Errorf("ClusterTimes do not match. got %v; want %v", got, clustertime)
}
Operation{}.updateClusterTimes(bsoncore.BuildDocumentFromElements(nil)) // should do nothing
})
t.Run("updateOperationTime", func(t *testing.T) {
want := primitive.Timestamp{T: 1234, I: 4567}
sessPool := session.NewPool(nil)
id, err := uuid.New()
noerr(t, err)
sess, err := session.NewClientSession(sessPool, id)
noerr(t, err)
if sess.OperationTime != nil {
t.Fatal("OperationTime should not be set on new session.")
}
response := bsoncore.BuildDocumentFromElements(nil, bsoncore.AppendTimestampElement(nil, "operationTime", want.T, want.I))
Operation{Client: sess}.updateOperationTime(response)
got := sess.OperationTime
if got.T != want.T || got.I != want.I {
t.Errorf("OperationTimes do not match. got %v; want %v", got, want)
}
response = bsoncore.BuildDocumentFromElements(nil)
Operation{Client: sess}.updateOperationTime(response)
got = sess.OperationTime
if got.T != want.T || got.I != want.I {
t.Errorf("OperationTimes do not match. got %v; want %v", got, want)
}
Operation{}.updateOperationTime(response) // should do nothing
})
t.Run("createReadPref", func(t *testing.T) {
rpWithTags := bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendStringElement(nil, "mode", "secondaryPreferred"),
bsoncore.BuildArrayElement(nil, "tags",
bsoncore.Value{Type: bsontype.EmbeddedDocument,
Data: bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendStringElement(nil, "disk", "ssd"),
bsoncore.AppendStringElement(nil, "use", "reporting"),
),
},
),
)
rpWithMaxStaleness := bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendStringElement(nil, "mode", "secondaryPreferred"),
bsoncore.AppendInt32Element(nil, "maxStalenessSeconds", 25),
)
// Hedged read preference: {mode: "secondaryPreferred", hedge: {enabled: true}}
rpWithHedge := bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendStringElement(nil, "mode", "secondaryPreferred"),
bsoncore.AppendDocumentElement(nil, "hedge", bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendBooleanElement(nil, "enabled", true),
)),
)
rpWithAllOptions := bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendStringElement(nil, "mode", "secondaryPreferred"),
bsoncore.BuildArrayElement(nil, "tags",
bsoncore.Value{Type: bsontype.EmbeddedDocument,
Data: bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendStringElement(nil, "disk", "ssd"),
bsoncore.AppendStringElement(nil, "use", "reporting"),
),
},
),
bsoncore.AppendInt32Element(nil, "maxStalenessSeconds", 25),
bsoncore.AppendDocumentElement(nil, "hedge", bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendBooleanElement(nil, "enabled", false),
)),
)
rpPrimaryPreferred := bsoncore.BuildDocumentFromElements(nil, bsoncore.AppendStringElement(nil, "mode", "primaryPreferred"))
rpSecondaryPreferred := bsoncore.BuildDocumentFromElements(nil, bsoncore.AppendStringElement(nil, "mode", "secondaryPreferred"))
rpSecondary := bsoncore.BuildDocumentFromElements(nil, bsoncore.AppendStringElement(nil, "mode", "secondary"))
rpNearest := bsoncore.BuildDocumentFromElements(nil, bsoncore.AppendStringElement(nil, "mode", "nearest"))
testCases := []struct {
name string
rp *readpref.ReadPref
serverKind description.ServerKind
topoKind description.TopologyKind
opQuery bool
want bsoncore.Document
}{
{"nil/single/mongos", nil, description.Mongos, description.Single, false, nil},
{"nil/single/secondary", nil, description.RSSecondary, description.Single, false, rpPrimaryPreferred},
{"primary/mongos", readpref.Primary(), description.Mongos, description.Sharded, false, nil},
{"primary/single", readpref.Primary(), description.RSPrimary, description.Single, false, rpPrimaryPreferred},
{"primary/primary", readpref.Primary(), description.RSPrimary, description.ReplicaSet, false, nil},
{"primaryPreferred", readpref.PrimaryPreferred(), description.RSSecondary, description.ReplicaSet, false, rpPrimaryPreferred},
{"secondaryPreferred/mongos/opquery", readpref.SecondaryPreferred(), description.Mongos, description.Sharded, true, nil},
{"secondaryPreferred", readpref.SecondaryPreferred(), description.RSSecondary, description.ReplicaSet, false, rpSecondaryPreferred},
{"secondary", readpref.Secondary(), description.RSSecondary, description.ReplicaSet, false, rpSecondary},
{"nearest", readpref.Nearest(), description.RSSecondary, description.ReplicaSet, false, rpNearest},
{
"secondaryPreferred/withTags",
readpref.SecondaryPreferred(readpref.WithTags("disk", "ssd", "use", "reporting")),
description.RSSecondary, description.ReplicaSet, false, rpWithTags,
},
// GODRIVER-2205: Ensure empty tag sets are written as an empty document in the read
// preference document. Empty tag sets match any server and are used as a fallback when
// no other tag sets match any servers.
{
"secondaryPreferred/withTags/emptyTagSet",
readpref.SecondaryPreferred(readpref.WithTagSets(
tag.Set{{Name: "disk", Value: "ssd"}},
tag.Set{})),
description.RSSecondary,
description.ReplicaSet,
false,
bsoncore.NewDocumentBuilder().
AppendString("mode", "secondaryPreferred").
AppendArray("tags", bsoncore.NewArrayBuilder().
AppendDocument(bsoncore.NewDocumentBuilder().AppendString("disk", "ssd").Build()).
AppendDocument(bsoncore.NewDocumentBuilder().Build()).
Build()).
Build(),
},
{
"secondaryPreferred/withMaxStaleness",
readpref.SecondaryPreferred(readpref.WithMaxStaleness(25 * time.Second)),
description.RSSecondary, description.ReplicaSet, false, rpWithMaxStaleness,
},
{
// A read preference document is generated for SecondaryPreferred if the hedge document is non-nil.
"secondaryPreferred with hedge to mongos using OP_QUERY",
readpref.SecondaryPreferred(readpref.WithHedgeEnabled(true)),
description.Mongos,
description.Sharded,
true,
rpWithHedge,
},
{
"secondaryPreferred with all options",
readpref.SecondaryPreferred(
readpref.WithTags("disk", "ssd", "use", "reporting"),
readpref.WithMaxStaleness(25*time.Second),
readpref.WithHedgeEnabled(false),
),
description.RSSecondary,
description.ReplicaSet,
false,
rpWithAllOptions,
},
}
for _, tc := range testCases {
tc := tc
t.Run(tc.name, func(t *testing.T) {
desc := description.SelectedServer{Kind: tc.topoKind, Server: description.Server{Kind: tc.serverKind}}
got, err := Operation{ReadPreference: tc.rp}.createReadPref(desc, tc.opQuery)
if err != nil {
t.Fatalf("error creating read pref: %v", err)
}
if !bytes.Equal(got, tc.want) {
t.Errorf("Returned documents do not match. got %v; want %v", got, tc.want)
}
})
}
})
t.Run("secondaryOK", func(t *testing.T) {
t.Run("description.SelectedServer", func(t *testing.T) {
want := wiremessage.SecondaryOK
desc := description.SelectedServer{
Kind: description.Single,
Server: description.Server{Kind: description.RSSecondary},
}
got := Operation{}.secondaryOK(desc)
if got != want {
t.Errorf("Did not receive expected query flags. got %v; want %v", got, want)
}
})
t.Run("readPreference", func(t *testing.T) {
want := wiremessage.SecondaryOK
got := Operation{ReadPreference: readpref.Secondary()}.secondaryOK(description.SelectedServer{})
if got != want {
t.Errorf("Did not receive expected query flags. got %v; want %v", got, want)
}
})
t.Run("not secondaryOK", func(t *testing.T) {
var want wiremessage.QueryFlag
got := Operation{}.secondaryOK(description.SelectedServer{})
if got != want {
t.Errorf("Did not receive expected query flags. got %v; want %v", got, want)
}
})
})
t.Run("ExecuteExhaust", func(t *testing.T) {
t.Run("errors if connection is not streaming", func(t *testing.T) {
conn := &mockConnection{
rStreaming: false,
}
err := Operation{}.ExecuteExhaust(context.TODO(), conn)
assert.NotNil(t, err, "expected error, got nil")
})
})
t.Run("exhaustAllowed and moreToCome", func(t *testing.T) {
// Test the interaction between exhaustAllowed and moreToCome on requests/responses when using the Execute
// and ExecuteExhaust methods.
// Create a server response wire message that has moreToCome=false.
serverResponseDoc := bsoncore.BuildDocumentFromElements(nil,
bsoncore.AppendInt32Element(nil, "ok", 1),
)
nonStreamingResponse := createExhaustServerResponse(serverResponseDoc, false)
// Create a connection that reports that it cannot stream messages.
conn := &mockConnection{
rDesc: description.Server{
WireVersion: &description.VersionRange{
Max: 6,
},
},
rReadWM: nonStreamingResponse,
rCanStream: false,
}
op := Operation{
CommandFn: func(dst []byte, _ description.SelectedServer) ([]byte, error) {
return bsoncore.AppendInt32Element(dst, handshake.LegacyHello, 1), nil
},
Database: "admin",
Deployment: SingleConnectionDeployment{conn},
}
err := op.Execute(context.TODO())
assert.Nil(t, err, "Execute error: %v", err)
// The wire message sent to the server should not have exhaustAllowed=true. After execution, the connection
// should not be in a streaming state.
assertExhaustAllowedSet(t, conn.pWriteWM, false)
assert.False(t, conn.CurrentlyStreaming(), "expected CurrentlyStreaming to be false")
// Modify the connection to report that it can stream and create a new server response with moreToCome=true.
streamingResponse := createExhaustServerResponse(serverResponseDoc, true)
conn.rReadWM = streamingResponse
conn.rCanStream = true
err = op.Execute(context.TODO())
assert.Nil(t, err, "Execute error: %v", err)
assertExhaustAllowedSet(t, conn.pWriteWM, true)
assert.True(t, conn.CurrentlyStreaming(), "expected CurrentlyStreaming to be true")
// Reset the server response and go through ExecuteExhaust to mimic streaming the next response. After
// execution, the connection should still be in a streaming state.
conn.rReadWM = streamingResponse
err = op.ExecuteExhaust(context.TODO(), conn)
assert.Nil(t, err, "ExecuteExhaust error: %v", err)
assert.True(t, conn.CurrentlyStreaming(), "expected CurrentlyStreaming to be true")
})
t.Run("context deadline exceeded not marked as TransientTransactionError", func(t *testing.T) {
conn := new(mockConnection)
// Create a context that's already timed out.
ctx, cancel := context.WithDeadline(context.Background(), time.Unix(893934480, 0))
defer cancel()
op := Operation{
Database: "foobar",
Deployment: SingleConnectionDeployment{C: conn},
CommandFn: func(dst []byte, _ description.SelectedServer) ([]byte, error) {
dst = bsoncore.AppendInt32Element(dst, "ping", 1)
return dst, nil
},
}
err := op.Execute(ctx)
assert.NotNil(t, err, "expected an error from Execute(), got nil")
// Assert that error is just context deadline exceeded and is therefore not a driver.Error marked
// with the TransientTransactionError label.
assert.Equal(t, err, context.DeadlineExceeded, "expected context.DeadlineExceeded error, got %v", err)
})
t.Run("canceled context not marked as TransientTransactionError", func(t *testing.T) {
conn := new(mockConnection)
// Create a context and cancel it immediately.
ctx, cancel := context.WithCancel(context.Background())
cancel()
op := Operation{
Database: "foobar",
Deployment: SingleConnectionDeployment{C: conn},
CommandFn: func(dst []byte, _ description.SelectedServer) ([]byte, error) {
dst = bsoncore.AppendInt32Element(dst, "ping", 1)
return dst, nil
},
}
err := op.Execute(ctx)
assert.NotNil(t, err, "expected an error from Execute(), got nil")
// Assert that error is just context canceled and is therefore not a driver.Error marked with
// the TransientTransactionError label.
assert.Equal(t, err, context.Canceled, "expected context.Canceled error, got %v", err)
})
t.Run("ErrDeadlineWouldBeExceeded wraps context.DeadlineExceeded", func(t *testing.T) {
// Create a deployment that returns a server that reports a 90th
// percentile RTT of 1 minute.
d := new(mockDeployment)
d.returns.server = mockServer{
conn: new(mockConnection),
rttMonitor: mockRTTMonitor{p90: 1 * time.Minute},
}
// Create an operation with a Timeout specified to enable CSOT behavior.
var dur time.Duration
op := Operation{
Database: "foobar",
Deployment: d,
CommandFn: func(dst []byte, _ description.SelectedServer) ([]byte, error) {
return dst, nil
},
Timeout: &dur,
}
// Call the operation with a context with a deadline less than the 90th
// percentile RTT configured above.
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
defer cancel()
err := op.Execute(ctx)
assert.ErrorIs(t, err, ErrDeadlineWouldBeExceeded)
assert.ErrorIs(t, err, context.DeadlineExceeded)
})
}
func createExhaustServerResponse(response bsoncore.Document, moreToCome bool) []byte {
const psuedoRequestID = 1
idx, wm := wiremessage.AppendHeaderStart(nil, 0, psuedoRequestID, wiremessage.OpMsg)
var flags wiremessage.MsgFlag
if moreToCome {
flags = wiremessage.MoreToCome
}
wm = wiremessage.AppendMsgFlags(wm, flags)
wm = wiremessage.AppendMsgSectionType(wm, wiremessage.SingleDocument)
wm = bsoncore.AppendDocument(wm, response)
return bsoncore.UpdateLength(wm, idx, int32(len(wm)))
}
func assertExhaustAllowedSet(t *testing.T, wm []byte, expected bool) {
t.Helper()
_, _, _, _, wm, ok := wiremessage.ReadHeader(wm)
if !ok {
t.Fatal("could not read wm header")
}
flags, wm, ok := wiremessage.ReadMsgFlags(wm)
if !ok {
t.Fatal("could not read wm flags")
}
actual := flags&wiremessage.ExhaustAllowed > 0
assert.Equal(t, expected, actual, "expected exhaustAllowed set %v, got %v", expected, actual)
}
type mockDeployment struct {
params struct {
selector description.ServerSelector
}
returns struct {
server Server
err error
retry bool
kind description.TopologyKind
}
}
func (m *mockDeployment) SelectServer(_ context.Context, desc description.ServerSelector) (Server, error) {
m.params.selector = desc
return m.returns.server, m.returns.err
}
func (m *mockDeployment) Kind() description.TopologyKind { return m.returns.kind }
type mockServerSelector struct{}
func (m *mockServerSelector) SelectServer(description.Topology, []description.Server) ([]description.Server, error) {
panic("not implemented")
}
func (m *mockServerSelector) String() string {
panic("not implemented")
}
type mockServer struct {
conn Connection
err error
rttMonitor RTTMonitor
}
func (ms mockServer) Connection(context.Context) (Connection, error) { return ms.conn, ms.err }
func (ms mockServer) RTTMonitor() RTTMonitor { return ms.rttMonitor }
type mockRTTMonitor struct {
ewma time.Duration
min time.Duration
p90 time.Duration
stats string
}
func (mrm mockRTTMonitor) EWMA() time.Duration { return mrm.ewma }
func (mrm mockRTTMonitor) Min() time.Duration { return mrm.min }
func (mrm mockRTTMonitor) P90() time.Duration { return mrm.p90 }
func (mrm mockRTTMonitor) Stats() string { return mrm.stats }
type mockConnection struct {
// parameters
pWriteWM []byte
// returns
rWriteErr error
rReadWM []byte
rReadErr error
rDesc description.Server
rCloseErr error
rID string
rServerConnID *int64
rAddr address.Address
rCanStream bool
rStreaming bool
}
func (m *mockConnection) Description() description.Server { return m.rDesc }
func (m *mockConnection) Close() error { return m.rCloseErr }
func (m *mockConnection) ID() string { return m.rID }
func (m *mockConnection) ServerConnectionID() *int64 { return m.rServerConnID }
func (m *mockConnection) Address() address.Address { return m.rAddr }
func (m *mockConnection) SupportsStreaming() bool { return m.rCanStream }
func (m *mockConnection) CurrentlyStreaming() bool { return m.rStreaming }
func (m *mockConnection) SetStreaming(streaming bool) { m.rStreaming = streaming }
func (m *mockConnection) Stale() bool { return false }
func (m *mockConnection) OIDCTokenGenID() uint64 { return 0 }
func (m *mockConnection) SetOIDCTokenGenID(uint64) {}
// TODO:(GODRIVER-2824) replace return type with int64.
func (m *mockConnection) DriverConnectionID() uint64 { return 0 }
func (m *mockConnection) WriteWireMessage(_ context.Context, wm []byte) error {
m.pWriteWM = wm
return m.rWriteErr
}
func (m *mockConnection) ReadWireMessage(_ context.Context) ([]byte, error) {
return m.rReadWM, m.rReadErr
}
type retryableError struct {
error
}
func (retryableError) Retryable() bool { return true }
var _ RetryablePoolError = retryableError{}
// mockRetryServer is used to test retry of connection checkout. Returns a retryable error from
// Connection().
type mockRetryServer struct {
numCallsToConnection int
}
// Connection records the number of calls and returns retryable errors until the provided context
// times out or is cancelled, then returns the context error.
func (ms *mockRetryServer) Connection(ctx context.Context) (Connection, error) {
ms.numCallsToConnection++
if ctx.Err() != nil {
return nil, ctx.Err()
}
time.Sleep(1 * time.Millisecond)
return nil, retryableError{error: errors.New("test error")}
}
func (ms *mockRetryServer) RTTMonitor() RTTMonitor {
return &csot.ZeroRTTMonitor{}
}
func TestRetry(t *testing.T) {
t.Run("retries multiple times with RetryContext", func(t *testing.T) {
d := new(mockDeployment)
ms := new(mockRetryServer)
d.returns.server = ms
ctx, cancel := context.WithTimeout(context.Background(), 100*time.Millisecond)
defer cancel()
retry := RetryContext
err := Operation{
CommandFn: func([]byte, description.SelectedServer) ([]byte, error) { return nil, nil },
Deployment: d,
Database: "testing",
RetryMode: &retry,
Type: Read,
}.Execute(ctx)
assert.NotNil(t, err, "expected an error from Execute()")
// Expect Connection() to be called at least 3 times. The first call is the initial attempt
// to run the operation and the second is the retry. The third indicates that we retried
// more than once, which is the behavior we want to assert.
assert.True(t,
ms.numCallsToConnection >= 3,
"expected Connection() to be called at least 3 times")
deadline, _ := ctx.Deadline()
assert.True(t,
time.Now().After(deadline),
"expected operation to complete only after the context deadline is exceeded")
})
}
func TestConvertI64PtrToI32Ptr(t *testing.T) {
t.Parallel()
newI64 := func(i64 int64) *int64 { return &i64 }
newI32 := func(i32 int32) *int32 { return &i32 }
tests := []struct {
name string
i64 *int64
want *int32
}{
{
name: "empty",
want: nil,
},
{
name: "in bounds",
i64: newI64(1),
want: newI32(1),
},
{
name: "out of bounds negative",
i64: newI64(math.MinInt32 - 1),
},
{
name: "out of bounds positive",
i64: newI64(math.MaxInt32 + 1),
},
{
name: "exact min int32",
i64: newI64(math.MinInt32),
want: newI32(math.MinInt32),
},
{
name: "exact max int32",
i64: newI64(math.MaxInt32),
want: newI32(math.MaxInt32),
},
}
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
t.Parallel()
got := convertInt64PtrToInt32Ptr(test.i64)
assert.Equal(t, test.want, got)
})
}
}
func TestDecodeOpReply(t *testing.T) {
t.Parallel()
// GODRIVER-2869: Prevent infinite loop caused by malformatted wiremessage with length of 0.
t.Run("malformatted wiremessage with length of 0", func(t *testing.T) {
t.Parallel()
var wm []byte
wm = wiremessage.AppendReplyFlags(wm, 0)
wm = wiremessage.AppendReplyCursorID(wm, int64(0))
wm = wiremessage.AppendReplyStartingFrom(wm, 0)
wm = wiremessage.AppendReplyNumberReturned(wm, 0)
idx, wm := bsoncore.ReserveLength(wm)
wm = bsoncore.UpdateLength(wm, idx, 0)
reply := Operation{}.decodeOpReply(wm)
assert.Equal(t, []bsoncore.Document(nil), reply.documents)
})
}
func TestFilterDeprioritizedServers(t *testing.T) {
t.Parallel()
tests := []struct {
name string
deprioritized []description.Server
candidates []description.Server
want []description.Server
}{
{
name: "empty",
candidates: []description.Server{},
want: []description.Server{},
},
{
name: "nil candidates",
candidates: nil,
want: []description.Server{},
},
{
name: "nil deprioritized server list",
candidates: []description.Server{
{
Addr: address.Address("mongodb://localhost:27017"),
},
},
want: []description.Server{
{
Addr: address.Address("mongodb://localhost:27017"),
},
},
},
{
name: "deprioritize single server candidate list",
candidates: []description.Server{
{
Addr: address.Address("mongodb://localhost:27017"),
},
},
deprioritized: []description.Server{
{
Addr: address.Address("mongodb://localhost:27017"),
},
},
want: []description.Server{
// Since all available servers were deprioritized, then the selector
// should return all candidates.
{
Addr: address.Address("mongodb://localhost:27017"),
},
},
},
{
name: "depriotirize one server in multi server candidate list",
candidates: []description.Server{
{
Addr: address.Address("mongodb://localhost:27017"),
},
{
Addr: address.Address("mongodb://localhost:27018"),
},
{
Addr: address.Address("mongodb://localhost:27019"),
},
},
deprioritized: []description.Server{
{
Addr: address.Address("mongodb://localhost:27017"),
},
},
want: []description.Server{
{
Addr: address.Address("mongodb://localhost:27018"),
},
{
Addr: address.Address("mongodb://localhost:27019"),
},
},
},
{
name: "depriotirize multiple servers in multi server candidate list",
deprioritized: []description.Server{
{
Addr: address.Address("mongodb://localhost:27017"),
},
{
Addr: address.Address("mongodb://localhost:27018"),
},
},
candidates: []description.Server{
{
Addr: address.Address("mongodb://localhost:27017"),
},
{
Addr: address.Address("mongodb://localhost:27018"),
},
{
Addr: address.Address("mongodb://localhost:27019"),
},
},
want: []description.Server{
{
Addr: address.Address("mongodb://localhost:27019"),
},
},
},
}
for _, tc := range tests {
tc := tc // Capture the range variable.
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
got := filterDeprioritizedServers(tc.candidates, tc.deprioritized)
assert.ElementsMatch(t, got, tc.want)
})
}
}
|