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
|
package protocol_test
import (
"context"
"fmt"
"io/ioutil"
"net"
"os"
"testing"
"time"
"github.com/canonical/go-dqlite/v2/internal/bindings"
"github.com/canonical/go-dqlite/v2/internal/protocol"
"github.com/canonical/go-dqlite/v2/logging"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
// Successful connection.
func TestConnector_Success(t *testing.T) {
address, cleanup := newNode(t, 0)
defer cleanup()
store := newStore(t, []string{address})
log, check := newLogFunc(t)
connector := protocol.NewLeaderConnector(store, protocol.Config{}, log)
ctx, cancel := context.WithTimeout(context.Background(), 100*time.Millisecond)
defer cancel()
client, err := connector.Connect(ctx)
require.NoError(t, err)
assert.NoError(t, client.Close())
check([]string{
"DEBUG: attempt 1: server @test-0: connected on fallback path",
})
}
// Check the interaction of Connector.Connect with a leader tracker.
//
// The leader tracker potentially stores two pieces of data, an address and a shared connection.
// This gives us four states: INIT (have neither address nor connection), HAVE_ADDR, HAVE_CONN, and HAVE_BOTH.
// Transitions between these states are triggered by Connector.Connect and Protocol.Close.
// This test methodically triggers all the possible transitions and checks that they have
// the intended externally-observable effects.
func TestConnector_LeaderTracker(t *testing.T) {
// options is a configuration for calling Connector.Connect
// in order to trigger a specific state transition.
type options struct {
injectFailure bool
returnProto bool
expectedLog []string
}
injectFailure := func(o *options) {
o.injectFailure = true
o.expectedLog = append(o.expectedLog, "WARN: attempt 1: server @test-0: context deadline exceeded")
}
returnProto := func(o *options) {
o.returnProto = true
}
expectDiscard := func(o *options) {
o.expectedLog = append(o.expectedLog, "DEBUG: discarding shared connection to @test-0")
}
expectFallback := func(o *options) {
o.expectedLog = append(o.expectedLog, "DEBUG: attempt 1: server @test-0: connected on fallback path")
}
expectFast := func(o *options) {
o.expectedLog = append(o.expectedLog, "DEBUG: attempt 1: server @test-0: connected on fast path")
}
expectShared := func(o *options) {
o.expectedLog = append(o.expectedLog, "DEBUG: reusing shared connection to @test-0")
}
address, cleanup := newNode(t, 0)
defer cleanup()
store := newStore(t, []string{address})
log, checkLog := newLogFunc(t)
connector := protocol.NewLeaderConnector(store, protocol.Config{RetryLimit: 1, PermitShared: true}, log)
check := func(opts ...func(*options)) *protocol.Protocol {
o := &options{}
for _, opt := range opts {
opt(o)
}
ctx, cancel := context.WithTimeout(context.Background(), 100*time.Millisecond)
defer cancel()
if o.injectFailure {
ctx, cancel = context.WithDeadline(ctx, time.Unix(1, 0))
defer cancel()
}
proto, err := connector.Connect(ctx)
if o.injectFailure {
require.Equal(t, protocol.ErrNoAvailableLeader, err)
} else {
require.NoError(t, err)
}
checkLog(o.expectedLog)
if o.returnProto {
return proto
} else if err == nil {
assert.NoError(t, proto.Close())
}
return nil
}
// INIT -> INIT
check(injectFailure)
// INIT -> HAVE_ADDR
proto := check(expectFallback, returnProto)
proto.Bad()
assert.NoError(t, proto.Close())
// HAVE_ADDR -> HAVE_ADDR
proto = check(expectFast, returnProto)
// We need an extra protocol to trigger INIT->HAVE_CONN later.
// Grab one here where it doesn't cause a state transition.
protoForLater := check(expectFast, returnProto)
// HAVE_ADDR -> HAVE_BOTH
assert.NoError(t, proto.Close())
// HAVE_BOTH -> HAVE_ADDR -> HAVE_BOTH
check(expectShared)
// HAVE_BOTH -> HAVE_ADDR
check(expectDiscard, injectFailure)
// HAVE_ADDR -> INIT
check(injectFailure)
// INIT -> HAVE_CONN
assert.NoError(t, protoForLater.Close())
// HAVE_CONN -> HAVE_CONN
check(expectShared)
// HAVE_CONN -> INIT
check(expectDiscard, injectFailure)
}
// The network connection can't be established within the specified number of
// attempts.
func TestConnector_LimitRetries(t *testing.T) {
store := newStore(t, []string{"@test-123"})
config := protocol.Config{
RetryLimit: 2,
}
log, check := newLogFunc(t)
connector := protocol.NewLeaderConnector(store, config, log)
_, err := connector.Connect(context.Background())
assert.Equal(t, protocol.ErrNoAvailableLeader, err)
check([]string{
"WARN: attempt 1: server @test-123: dial: dial unix @test-123: connect: connection refused",
"WARN: attempt 2: server @test-123: dial: dial unix @test-123: connect: connection refused",
"WARN: attempt 3: server @test-123: dial: dial unix @test-123: connect: connection refused",
})
}
// The network connection can't be established because of a connection timeout.
func TestConnector_DialTimeout(t *testing.T) {
t.Skip("Skipping network test")
store := newStore(t, []string{"8.8.8.8:9000"})
log, check := newLogFunc(t)
config := protocol.Config{
DialTimeout: 50 * time.Millisecond,
RetryLimit: 1,
}
connector := protocol.NewLeaderConnector(store, config, log)
_, err := connector.Connect(context.Background())
assert.Equal(t, protocol.ErrNoAvailableLeader, err)
check([]string{
"WARN: attempt 1: server 8.8.8.8:9000: dial: dial tcp 8.8.8.8:9000: i/o timeout",
"WARN: attempt 2: server 8.8.8.8:9000: dial: dial tcp 8.8.8.8:9000: i/o timeout",
})
}
// Connection failed because the server store is empty.
func TestConnector_EmptyNodeStore(t *testing.T) {
store := newStore(t, []string{})
log, check := newLogFunc(t)
connector := protocol.NewLeaderConnector(store, protocol.Config{}, log)
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Millisecond)
defer cancel()
_, err := connector.Connect(ctx)
assert.Equal(t, protocol.ErrNoAvailableLeader, err)
check([]string{})
}
// Connection failed because the context was canceled.
func TestConnector_ContextCanceled(t *testing.T) {
t.Skip("Skipping network test")
store := newStore(t, []string{"1.2.3.4:666"})
log, check := newLogFunc(t)
connector := protocol.NewLeaderConnector(store, protocol.Config{}, log)
ctx, cancel := context.WithTimeout(context.Background(), 25*time.Millisecond)
defer cancel()
_, err := connector.Connect(ctx)
assert.Equal(t, protocol.ErrNoAvailableLeader, err)
check([]string{
"WARN: attempt 1: server 1.2.3.4:666: dial: dial tcp 1.2.3.4:666: i/o timeout",
})
}
// Simulate a server which accepts the connection but doesn't reply within the
// attempt timeout.
func TestConnector_AttemptTimeout(t *testing.T) {
listener, err := net.Listen("unix", "@1234")
require.NoError(t, err)
store := newStore(t, []string{listener.Addr().String()})
config := protocol.Config{
AttemptTimeout: 100 * time.Millisecond,
RetryLimit: 1,
}
connector := protocol.NewLeaderConnector(store, config, logging.Test(t))
var conn net.Conn
go func() {
conn, err = listener.Accept()
require.NoError(t, err)
require.NotNil(t, conn)
}()
defer func() {
if conn != nil {
_ = conn.Close()
}
}()
_, err = connector.Connect(context.Background())
assert.Equal(t, protocol.ErrNoAvailableLeader, err)
}
// If an election is in progress, the connector will retry until a leader gets
// elected.
// func TestConnector_Connect_ElectionInProgress(t *testing.T) {
// address1, cleanup := newNode(t, 1)
// defer cleanup()
// address2, cleanup := newNode(t, 2)
// defer cleanup()
// address3, cleanup := newNode(t, 3)
// defer cleanup()
// store := newStore(t, []string{address1, address2, address3})
// connector := newConnector(t, store)
// go func() {
// // Simulate server 1 winning the election after 10ms
// time.Sleep(10 * time.Millisecond)
// }()
// ctx, cancel := context.WithTimeout(context.Background(), 100*time.Millisecond)
// defer cancel()
// client, err := connector.Connect(ctx)
// require.NoError(t, err)
// assert.NoError(t, client.Close())
// }
// If a server reports that it knows about the leader, the hint will be taken
// and an attempt will be made to connect to it.
// func TestConnector_Connect_NodeKnowsAboutLeader(t *testing.T) {
// defer bindings.AssertNoMemoryLeaks(t)
// methods1 := &testClusterMethods{}
// methods2 := &testClusterMethods{}
// methods3 := &testClusterMethods{}
// address1, cleanup := newNode(t, 1, methods1)
// defer cleanup()
// address2, cleanup := newNode(t, 2, methods2)
// defer cleanup()
// address3, cleanup := newNode(t, 3, methods3)
// defer cleanup()
// // Node 1 will be contacted first, which will report that server 2 is
// // the leader.
// store := newStore(t, []string{address1, address2, address3})
// methods1.leader = address2
// methods2.leader = address2
// methods3.leader = address2
// connector := newConnector(t, store)
// ctx, cancel := context.WithTimeout(context.Background(), 100*time.Millisecond)
// defer cancel()
// client, err := connector.Connect(ctx)
// require.NoError(t, err)
// assert.NoError(t, client.Close())
// }
// If a server reports that it knows about the leader, the hint will be taken
// and an attempt will be made to connect to it. If that leader has died, the
// next target will be tried.
// func TestConnector_Connect_NodeKnowsAboutDeadLeader(t *testing.T) {
// defer bindings.AssertNoMemoryLeaks(t)
// methods1 := &testClusterMethods{}
// methods2 := &testClusterMethods{}
// methods3 := &testClusterMethods{}
// address1, cleanup := newNode(t, 1, methods1)
// defer cleanup()
// address2, cleanup := newNode(t, 2, methods2)
// // Simulate server 2 crashing.
// cleanup()
// address3, cleanup := newNode(t, 3, methods3)
// defer cleanup()
// // Node 1 will be contacted first, which will report that server 2 is
// // the leader. However server 2 has crashed, and after a bit server 1
// // gets elected.
// store := newStore(t, []string{address1, address2, address3})
// methods1.leader = address2
// methods3.leader = address2
// go func() {
// // Simulate server 1 becoming the new leader after server 2
// // crashed.
// time.Sleep(10 * time.Millisecond)
// methods1.leader = address1
// methods3.leader = address1
// }()
// connector := newConnector(t, store)
// ctx, cancel := context.WithTimeout(context.Background(), 100*time.Millisecond)
// defer cancel()
// client, err := connector.Connect(ctx)
// require.NoError(t, err)
// assert.NoError(t, client.Close())
// }
// If a server reports that it knows about the leader, the hint will be taken
// and an attempt will be made to connect to it. If that leader is not actually
// the leader the next target will be tried.
// func TestConnector_Connect_NodeKnowsAboutStaleLeader(t *testing.T) {
// defer bindings.AssertNoMemoryLeaks(t)
// methods1 := &testClusterMethods{}
// methods2 := &testClusterMethods{}
// methods3 := &testClusterMethods{}
// address1, cleanup := newNode(t, 1, methods1)
// defer cleanup()
// address2, cleanup := newNode(t, 2, methods2)
// defer cleanup()
// address3, cleanup := newNode(t, 3, methods3)
// defer cleanup()
// // Node 1 will be contacted first, which will report that server 2 is
// // the leader. However server 2 thinks that 3 is the leader, and server
// // 3 is actually the leader.
// store := newStore(t, []string{address1, address2, address3})
// methods1.leader = address2
// methods2.leader = address3
// methods3.leader = address3
// connector := newConnector(t, store)
// ctx, cancel := context.WithTimeout(context.Background(), 100*time.Millisecond)
// defer cancel()
// client, err := connector.Connect(ctx)
// require.NoError(t, err)
// assert.NoError(t, client.Close())
// }
// Return a log function that emits messages using the test logger as well as
// collecting them into a slice. The second function returned can be used to
// assert that the collected messages match the given ones.
func newLogFunc(t *testing.T) (logging.Func, func([]string)) {
messages := []string{}
log := func(l logging.Level, format string, a ...interface{}) {
message := l.String() + ": " + fmt.Sprintf(format, a...)
messages = append(messages, message)
t.Log(message)
}
check := func(expected []string) {
assert.Equal(t, expected, messages)
messages = messages[:0]
}
return log, check
}
// Create a new in-memory server store populated with the given addresses.
func newStore(t *testing.T, addresses []string) protocol.NodeStore {
t.Helper()
servers := make([]protocol.NodeInfo, len(addresses))
for i, address := range addresses {
servers[i].ID = uint64(i)
servers[i].Address = address
}
store := protocol.NewInmemNodeStore()
require.NoError(t, store.Set(context.Background(), servers))
return store
}
func newNode(t *testing.T, index int) (string, func()) {
t.Helper()
id := uint64(index + 1)
dir, dirCleanup := newDir(t)
address := fmt.Sprintf("@test-%d", index)
server, err := bindings.NewNode(context.Background(), id, address, dir)
require.NoError(t, err)
err = server.SetBindAddress(address)
require.NoError(t, err)
require.NoError(t, server.Start())
cleanup := func() {
require.NoError(t, server.Stop())
server.Close()
dirCleanup()
}
return address, cleanup
}
// Return a new temporary directory.
func newDir(t *testing.T) (string, func()) {
t.Helper()
dir, err := ioutil.TempDir("", "dqlite-connector-test-")
assert.NoError(t, err)
cleanup := func() {
_, err := os.Stat(dir)
if err != nil {
assert.True(t, os.IsNotExist(err))
} else {
assert.NoError(t, os.RemoveAll(dir))
}
}
return dir, cleanup
}
|