-
Notifications
You must be signed in to change notification settings - Fork 9
/
node_test.go
76 lines (65 loc) · 1.64 KB
/
node_test.go
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
package slb
import (
"testing"
"github.com/stretchr/testify/require"
)
var hosts = []string{
"localhost:9000",
"localhost:9001",
"localhost:9002",
"localhost:9003",
"localhost:9004",
}
func TestNodes_newNodes(t *testing.T) {
testNodes := newNodes(hosts)
expected := nodes{
{host: "localhost:9000", index: 0},
{host: "localhost:9001", index: 1},
{host: "localhost:9002", index: 2},
{host: "localhost:9003", index: 3},
{host: "localhost:9004", index: 4},
}
require.Equal(t, expected, testNodes)
}
func TestNodes_Len(t *testing.T) {
testNodes := newNodes(hosts)
require.Equal(t, len(hosts), testNodes.Len())
}
func TestNodes_Swap(t *testing.T) {
testNodes := newNodes(hosts)
testNodes.Swap(1, 2)
expected := nodes{
{host: "localhost:9000", index: 0},
{host: "localhost:9002", index: 1},
{host: "localhost:9001", index: 2},
{host: "localhost:9003", index: 3},
{host: "localhost:9004", index: 4},
}
require.Equal(t, expected, testNodes)
}
func TestNodes_Pop(t *testing.T) {
testNodes := newNodes(hosts)
actual := testNodes.Pop()
expected := &node{
host: "localhost:9004",
pending: 0,
index: 4,
}
require.Equal(t, expected, actual)
}
func TestNodes_Push(t *testing.T) {
testNodes := newNodes(hosts)
testNodes.Push(&node{
host: "new_host",
pending: 2,
})
expected := nodes{
{host: "localhost:9000", index: 0, pending: 0},
{host: "localhost:9001", index: 1, pending: 0},
{host: "localhost:9002", index: 2, pending: 0},
{host: "localhost:9003", index: 3, pending: 0},
{host: "localhost:9004", index: 4, pending: 0},
{host: "new_host", index: 5, pending: 2},
}
require.Equal(t, expected, testNodes)
}