forked from apache/cassandra-gocql-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
policies_test.go
194 lines (163 loc) · 5.23 KB
/
policies_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
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
// Copyright (c) 2015 The gocql Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package gocql
import (
"fmt"
"github.com/gocql/gocql/internal/streams"
"testing"
"github.com/hailocab/go-hostpool"
)
// Tests of the round-robin host selection policy implementation
func TestRoundRobinHostPolicy(t *testing.T) {
policy := RoundRobinHostPolicy()
hosts := []HostInfo{
HostInfo{HostId: "0"},
HostInfo{HostId: "1"},
}
policy.SetHosts(hosts)
// the first host selected is actually at [1], but this is ok for RR
// interleaved iteration should always increment the host
iterA := policy.Pick(nil)
if actual := iterA(); actual.Info() != &hosts[1] {
t.Errorf("Expected hosts[1] but was hosts[%s]", actual.Info().HostId)
}
iterB := policy.Pick(nil)
if actual := iterB(); actual.Info() != &hosts[0] {
t.Errorf("Expected hosts[0] but was hosts[%s]", actual.Info().HostId)
}
if actual := iterB(); actual.Info() != &hosts[1] {
t.Errorf("Expected hosts[1] but was hosts[%s]", actual.Info().HostId)
}
if actual := iterA(); actual.Info() != &hosts[0] {
t.Errorf("Expected hosts[0] but was hosts[%s]", actual.Info().HostId)
}
iterC := policy.Pick(nil)
if actual := iterC(); actual.Info() != &hosts[1] {
t.Errorf("Expected hosts[1] but was hosts[%s]", actual.Info().HostId)
}
if actual := iterC(); actual.Info() != &hosts[0] {
t.Errorf("Expected hosts[0] but was hosts[%s]", actual.Info().HostId)
}
}
// Tests of the token-aware host selection policy implementation with a
// round-robin host selection policy fallback.
func TestTokenAwareHostPolicy(t *testing.T) {
policy := TokenAwareHostPolicy(RoundRobinHostPolicy())
query := &Query{}
iter := policy.Pick(nil)
if iter == nil {
t.Fatal("host iterator was nil")
}
actual := iter()
if actual != nil {
t.Fatalf("expected nil from iterator, but was %v", actual)
}
// set the hosts
hosts := []HostInfo{
HostInfo{Peer: "0", Tokens: []string{"00"}},
HostInfo{Peer: "1", Tokens: []string{"25"}},
HostInfo{Peer: "2", Tokens: []string{"50"}},
HostInfo{Peer: "3", Tokens: []string{"75"}},
}
policy.SetHosts(hosts)
// the token ring is not setup without the partitioner, but the fallback
// should work
if actual := policy.Pick(nil)(); actual.Info().Peer != "1" {
t.Errorf("Expected peer 1 but was %s", actual.Info().Peer)
}
query.RoutingKey([]byte("30"))
if actual := policy.Pick(query)(); actual.Info().Peer != "2" {
t.Errorf("Expected peer 2 but was %s", actual.Info().Peer)
}
policy.SetPartitioner("OrderedPartitioner")
// now the token ring is configured
query.RoutingKey([]byte("20"))
iter = policy.Pick(query)
if actual := iter(); actual.Info().Peer != "1" {
t.Errorf("Expected peer 1 but was %s", actual.Info().Peer)
}
// rest are round robin
if actual := iter(); actual.Info().Peer != "3" {
t.Errorf("Expected peer 3 but was %s", actual.Info().Peer)
}
if actual := iter(); actual.Info().Peer != "0" {
t.Errorf("Expected peer 0 but was %s", actual.Info().Peer)
}
if actual := iter(); actual.Info().Peer != "2" {
t.Errorf("Expected peer 2 but was %s", actual.Info().Peer)
}
}
// Tests of the host pool host selection policy implementation
func TestHostPoolHostPolicy(t *testing.T) {
policy := HostPoolHostPolicy(hostpool.New(nil))
hosts := []HostInfo{
HostInfo{HostId: "0", Peer: "0"},
HostInfo{HostId: "1", Peer: "1"},
}
policy.SetHosts(hosts)
// the first host selected is actually at [1], but this is ok for RR
// interleaved iteration should always increment the host
iter := policy.Pick(nil)
actualA := iter()
if actualA.Info().HostId != "0" {
t.Errorf("Expected hosts[0] but was hosts[%s]", actualA.Info().HostId)
}
actualA.Mark(nil)
actualB := iter()
if actualB.Info().HostId != "1" {
t.Errorf("Expected hosts[1] but was hosts[%s]", actualB.Info().HostId)
}
actualB.Mark(fmt.Errorf("error"))
actualC := iter()
if actualC.Info().HostId != "0" {
t.Errorf("Expected hosts[0] but was hosts[%s]", actualC.Info().HostId)
}
actualC.Mark(nil)
actualD := iter()
if actualD.Info().HostId != "0" {
t.Errorf("Expected hosts[0] but was hosts[%s]", actualD.Info().HostId)
}
actualD.Mark(nil)
}
// Tests of the round-robin connection selection policy implementation
func TestRoundRobinConnPolicy(t *testing.T) {
policy := RoundRobinConnPolicy()()
conn0 := &Conn{streams: streams.New(1)}
conn1 := &Conn{streams: streams.New(1)}
conn := []*Conn{
conn0,
conn1,
}
policy.SetConns(conn)
if actual := policy.Pick(nil); actual != conn0 {
t.Error("Expected conn1")
}
if actual := policy.Pick(nil); actual != conn1 {
t.Error("Expected conn0")
}
if actual := policy.Pick(nil); actual != conn0 {
t.Error("Expected conn1")
}
}
func TestRoundRobinNilHostInfo(t *testing.T) {
policy := RoundRobinHostPolicy()
host := HostInfo{HostId: "host-1"}
policy.SetHosts([]HostInfo{host})
iter := policy.Pick(nil)
next := iter()
if next == nil {
t.Fatal("got nil host")
} else if v := next.Info(); v == nil {
t.Fatal("got nil HostInfo")
} else if v.HostId != host.HostId {
t.Fatalf("expected host %v got %v", host, *v)
}
next = iter()
if next != nil {
t.Errorf("expected to get nil host got %+v", next)
if next.Info() == nil {
t.Fatalf("HostInfo is nil")
}
}
}