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
|
// 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
package unified
import (
"context"
"fmt"
"strings"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/internal/testutil"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/integration/mtest"
"go.mongodb.org/mongo-driver/mongo/options"
)
var (
ignoredKillAllSessionsErrors = []int{
11601, // Interrupted, for SERVER-38335 on server versions below 4.2
13, // Unauthorized, for SERVER-54216 on atlas
}
)
// terminateOpenSessions executes a killAllSessions command to ensure that sesssions left open on the server by a test
// do not cause future tests to hang.
func terminateOpenSessions(ctx context.Context) error {
if mtest.CompareServerVersions(mtest.ServerVersion(), "3.6") < 0 {
return nil
}
commandFn := func(ctx context.Context, client *mongo.Client) error {
cmd := bson.D{
{"killAllSessions", bson.A{}},
}
err := client.Database("admin").RunCommand(ctx, cmd).Err()
if se, ok := err.(mongo.ServerError); ok {
for _, code := range ignoredKillAllSessionsErrors {
if se.HasErrorCode(code) {
err = nil
break
}
}
}
// for SERVER-54216 on atlas
if err != nil && strings.Contains(err.Error(), "(AtlasError) (Unauthorized)") {
err = nil
}
return err
}
// For sharded clusters, this has to run against all mongos nodes. Otherwise, it can just against on the primary.
if mtest.ClusterTopologyKind() != mtest.Sharded {
return commandFn(ctx, mtest.GlobalClient())
}
return runAgainstAllMongoses(ctx, commandFn)
}
// performDistinctWorkaround executes a non-transactional "distinct" command against each mongos in a sharded cluster.
func performDistinctWorkaround(ctx context.Context) error {
commandFn := func(ctx context.Context, client *mongo.Client) error {
for _, coll := range entities(ctx).collections() {
newColl := client.Database(coll.Database().Name()).Collection(coll.Name())
_, err := newColl.Distinct(ctx, "x", bson.D{})
if err != nil {
ns := fmt.Sprintf("%s.%s", coll.Database().Name(), coll.Name())
return fmt.Errorf("error running distinct for collection %q: %v", ns, err)
}
}
return nil
}
return runAgainstAllMongoses(ctx, commandFn)
}
func runCommandOnHost(ctx context.Context, host string, commandFn func(context.Context, *mongo.Client) error) error {
clientOpts := options.Client().
ApplyURI(mtest.ClusterURI()).
SetHosts([]string{host})
testutil.AddTestServerAPIVersion(clientOpts)
client, err := mongo.Connect(ctx, clientOpts)
if err != nil {
return fmt.Errorf("error creating client to host %q: %v", host, err)
}
defer client.Disconnect(ctx)
return commandFn(ctx, client)
}
func runAgainstAllMongoses(ctx context.Context, commandFn func(context.Context, *mongo.Client) error) error {
for _, host := range mtest.ClusterConnString().Hosts {
if err := runCommandOnHost(ctx, host, commandFn); err != nil {
return fmt.Errorf("error executing callback against host %q: %v", host, err)
}
}
return nil
}
|