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
|
package topology
import (
"bytes"
"context"
"io"
"math"
"net"
"testing"
"time"
"github.com/stretchr/testify/assert"
"go.mongodb.org/mongo-driver/x/bsonx/bsoncore"
"go.mongodb.org/mongo-driver/x/mongo/driver"
"go.mongodb.org/mongo-driver/x/mongo/driver/drivertest"
"go.mongodb.org/mongo-driver/x/mongo/driver/operation"
)
func makeHelloReply() []byte {
doc := bsoncore.NewDocumentBuilder().AppendInt32("ok", 1).Build()
return drivertest.MakeReply(doc)
}
var _ net.Conn = &mockSlowConn{}
// mockSlowConn is a net.Conn that delays all calls to Read() by the given delay duration. After the
// delay, Read() reads the given response. Calls to Write() reset the read buffer, so subsequent
// Read() calls read from the beginning of the provided response.
type mockSlowConn struct {
reader *bytes.Reader
delay time.Duration
}
func newMockSlowConn(response []byte, delay time.Duration) *mockSlowConn {
return &mockSlowConn{
reader: bytes.NewReader(response),
delay: delay,
}
}
func (msc *mockSlowConn) Read(b []byte) (int, error) {
time.Sleep(msc.delay)
return msc.reader.Read(b)
}
func (msc *mockSlowConn) Write(b []byte) (int, error) {
_, err := msc.reader.Seek(0, io.SeekStart)
return len(b), err
}
func (*mockSlowConn) Close() error { return nil }
func (*mockSlowConn) LocalAddr() net.Addr { return nil }
func (*mockSlowConn) RemoteAddr() net.Addr { return nil }
func (*mockSlowConn) SetDeadline(_ time.Time) error { return nil }
func (*mockSlowConn) SetReadDeadline(_ time.Time) error { return nil }
func (*mockSlowConn) SetWriteDeadline(_ time.Time) error { return nil }
func TestRTTMonitor(t *testing.T) {
t.Run("measures the average and minimum RTT", func(t *testing.T) {
t.Parallel()
dialer := DialerFunc(func(_ context.Context, _, _ string) (net.Conn, error) {
return newMockSlowConn(makeHelloReply(), 10*time.Millisecond), nil
})
rtt := newRTTMonitor(&rttConfig{
interval: 10 * time.Millisecond,
createConnectionFn: func() (*connection, error) {
return newConnection("", WithDialer(func(Dialer) Dialer { return dialer }))
},
createOperationFn: func(conn driver.Connection) *operation.Hello {
return operation.NewHello().Deployment(driver.SingleConnectionDeployment{C: conn})
},
})
rtt.connect()
defer rtt.disconnect()
assert.Eventuallyf(
t,
func() bool { return rtt.getRTT() > 0 && rtt.getMinRTT() > 0 },
1*time.Second,
10*time.Millisecond,
"expected getRTT() and getMinRTT() to return positive durations within 1 second")
assert.True(
t,
rtt.getRTT() > 0,
"expected getRTT() to return a positive duration, got %v",
rtt.getRTT())
assert.True(
t,
rtt.getMinRTT() > 0,
"expected getMinRTT() to return a positive duration, got %v",
rtt.getMinRTT())
})
t.Run("creates the correct size samples slice", func(t *testing.T) {
t.Parallel()
cases := []struct {
desc string
interval time.Duration
wantSamplesLen int
}{
{
desc: "default",
interval: 10 * time.Second,
wantSamplesLen: 30,
},
{
desc: "min",
interval: 10 * time.Minute,
wantSamplesLen: 5,
},
{
desc: "max",
interval: 1 * time.Millisecond,
wantSamplesLen: 500,
},
}
for _, tc := range cases {
t.Run(tc.desc, func(t *testing.T) {
rtt := newRTTMonitor(&rttConfig{
interval: tc.interval,
minRTTWindow: 5 * time.Minute,
})
assert.Equal(t, tc.wantSamplesLen, len(rtt.samples), "expected samples length to match")
})
}
})
t.Run("can connect and disconnect repeatedly", func(t *testing.T) {
t.Parallel()
dialer := DialerFunc(func(_ context.Context, _, _ string) (net.Conn, error) {
return newMockSlowConn(makeHelloReply(), 10*time.Millisecond), nil
})
rtt := newRTTMonitor(&rttConfig{
interval: 10 * time.Second,
createConnectionFn: func() (*connection, error) {
return newConnection("", WithDialer(func(Dialer) Dialer {
return dialer
}))
},
createOperationFn: func(conn driver.Connection) *operation.Hello {
return operation.NewHello().Deployment(driver.SingleConnectionDeployment{C: conn})
},
})
for i := 0; i < 100; i++ {
rtt.connect()
rtt.disconnect()
}
})
t.Run("works after reset", func(t *testing.T) {
t.Parallel()
dialer := DialerFunc(func(_ context.Context, _, _ string) (net.Conn, error) {
return newMockSlowConn(makeHelloReply(), 10*time.Millisecond), nil
})
rtt := newRTTMonitor(&rttConfig{
interval: 10 * time.Millisecond,
createConnectionFn: func() (*connection, error) {
return newConnection("", WithDialer(func(Dialer) Dialer { return dialer }))
},
createOperationFn: func(conn driver.Connection) *operation.Hello {
return operation.NewHello().Deployment(driver.SingleConnectionDeployment{C: conn})
},
})
rtt.connect()
defer rtt.disconnect()
for i := 0; i < 3; i++ {
assert.Eventuallyf(
t,
func() bool { return rtt.getRTT() > 0 && rtt.getMinRTT() > 0 },
1*time.Second,
10*time.Millisecond,
"expected getRTT() and getMinRTT() to return positive durations within 1 second")
rtt.reset()
}
})
}
func TestMin(t *testing.T) {
cases := []struct {
desc string
samples []time.Duration
minSamples int
want time.Duration
}{
{
desc: "Should return the min for minSamples = 0",
samples: []time.Duration{1, 0, 0, 0},
minSamples: 0,
want: 1,
},
{
desc: "Should return 0 for fewer than minSamples samples",
samples: []time.Duration{1, 0, 0, 0},
minSamples: 2,
want: 0,
},
{
desc: "Should return 0 for empty samples slice",
samples: []time.Duration{},
minSamples: 0,
want: 0,
},
{
desc: "Should return 0 for no valid samples",
samples: []time.Duration{0, 0, 0},
minSamples: 0,
want: 0,
},
{
desc: "Should return max int64 if all samples are max int64",
samples: []time.Duration{math.MaxInt64, math.MaxInt64, math.MaxInt64},
minSamples: 0,
want: math.MaxInt64,
},
{
desc: "Should return the minimum if there are enough samples",
samples: []time.Duration{1 * time.Second, 100 * time.Millisecond, 150 * time.Millisecond, 0, 0, 0},
minSamples: 3,
want: 100 * time.Millisecond,
},
{
desc: "Should return 0 if there are are not enough samples",
samples: []time.Duration{1 * time.Second, 100 * time.Millisecond, 0, 0, 0, 0},
minSamples: 3,
want: 0,
},
}
for _, tc := range cases {
tc := tc
t.Run(tc.desc, func(t *testing.T) {
t.Parallel()
got := min(tc.samples, tc.minSamples)
assert.Equal(t, tc.want, got, "unexpected result from min()")
})
}
}
|