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
|
// 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 mtest
import (
"context"
"time"
"github.com/pkg/errors"
"go.mongodb.org/mongo-driver/bson"
"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/topology"
"go.mongodb.org/mongo-driver/x/mongo/driver/wiremessage"
)
const (
serverAddress = address.Address("localhost:27017")
maxDocumentSize uint32 = 16777216
maxMessageSize uint32 = 48000000
maxBatchCount uint32 = 100000
sessionTimeoutMinutes uint32 = 30
)
var (
// MockDescription is the server description used for the mock deployment. Each mocked connection returns this
// value from its Description method.
MockDescription = description.Server{
CanonicalAddr: serverAddress,
MaxDocumentSize: maxDocumentSize,
MaxMessageSize: maxMessageSize,
MaxBatchCount: maxBatchCount,
SessionTimeoutMinutes: sessionTimeoutMinutes,
Kind: description.RSPrimary,
WireVersion: &description.VersionRange{
Max: topology.SupportedWireVersions.Max,
},
}
)
// connection implements the driver.Connection interface and responds to wire messages with pre-configured responses.
type connection struct {
responses []bson.D // responses to send when ReadWireMessage is called
}
var _ driver.Connection = &connection{}
// WriteWireMessage is a no-op operation.
func (c *connection) WriteWireMessage(_ context.Context, wm []byte) error {
return nil
}
// ReadWireMessage returns the next response in the connection's list of responses.
func (c *connection) ReadWireMessage(_ context.Context, dst []byte) ([]byte, error) {
if len(c.responses) == 0 {
return dst, errors.New("no responses remaining")
}
nextRes := c.responses[0]
c.responses = c.responses[1:]
var wmindex int32
wmindex, dst = wiremessage.AppendHeaderStart(dst, wiremessage.NextRequestID(), 0, wiremessage.OpMsg)
dst = wiremessage.AppendMsgFlags(dst, 0)
dst = wiremessage.AppendMsgSectionType(dst, wiremessage.SingleDocument)
resBytes, _ := bson.Marshal(nextRes)
dst = append(dst, resBytes...)
dst = bsoncore.UpdateLength(dst, wmindex, int32(len(dst[wmindex:])))
return dst, nil
}
// Description returns a fixed server description for the connection.
func (c *connection) Description() description.Server {
return MockDescription
}
// Close is a no-op operation.
func (*connection) Close() error {
return nil
}
// ID returns a fixed identifier for the connection.
func (*connection) ID() string {
return "<mock_connection>"
}
// ServerConnectionID returns a fixed identifier for the server connection.
func (*connection) ServerConnectionID() *int32 {
serverConnectionID := int32(42)
return &serverConnectionID
}
// Address returns a fixed address for the connection.
func (*connection) Address() address.Address {
return serverAddress
}
// Stale returns if the connection is stale.
func (*connection) Stale() bool {
return false
}
// mockDeployment wraps a connection and implements the driver.Deployment interface.
type mockDeployment struct {
conn *connection
updates chan description.Topology
}
var _ driver.Deployment = &mockDeployment{}
var _ driver.Server = &mockDeployment{}
var _ driver.Connector = &mockDeployment{}
var _ driver.Disconnector = &mockDeployment{}
var _ driver.Subscriber = &mockDeployment{}
// SelectServer implements the Deployment interface. This method does not use the
// description.SelectedServer provided and instead returns itself. The Connections returned from the
// Connection method have a no-op Close method.
func (md *mockDeployment) SelectServer(context.Context, description.ServerSelector) (driver.Server, error) {
return md, nil
}
// Kind implements the Deployment interface. It always returns description.Single.
func (md *mockDeployment) Kind() description.TopologyKind {
return description.Single
}
// Connection implements the driver.Server interface.
func (md *mockDeployment) Connection(context.Context) (driver.Connection, error) {
return md.conn, nil
}
// MinRTT always returns 0. It implements the driver.Server interface.
func (md *mockDeployment) MinRTT() time.Duration {
return 0
}
// Connect is a no-op method which implements the driver.Connector interface.
func (md *mockDeployment) Connect() error {
return nil
}
// Disconnect is a no-op method which implements the driver.Disconnector interface {
func (md *mockDeployment) Disconnect(context.Context) error {
close(md.updates)
return nil
}
// Subscribe returns a subscription from which new topology descriptions can be retrieved.
// Subscribe implements the driver.Subscriber interface.
func (md *mockDeployment) Subscribe() (*driver.Subscription, error) {
if md.updates == nil {
md.updates = make(chan description.Topology, 1)
md.updates <- description.Topology{
SessionTimeoutMinutes: sessionTimeoutMinutes,
}
}
return &driver.Subscription{
Updates: md.updates,
}, nil
}
// Unsubscribe is a no-op method which implements the driver.Subscriber interface.
func (md *mockDeployment) Unsubscribe(*driver.Subscription) error {
return nil
}
// addResponses adds responses to this mock deployment.
func (md *mockDeployment) addResponses(responses ...bson.D) {
md.conn.responses = append(md.conn.responses, responses...)
}
// clearResponses clears all remaining responses in this mock deployment.
func (md *mockDeployment) clearResponses() {
md.conn.responses = md.conn.responses[:0]
}
// newMockDeployment returns a mock driver.Deployment that responds with OP_MSG wire messages.
func newMockDeployment(responses ...bson.D) *mockDeployment {
return &mockDeployment{
conn: &connection{
responses: responses,
},
}
}
|