forked from apache/cassandra-gocql-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
session_test.go
316 lines (259 loc) · 8.05 KB
/
session_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
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
// +build all cassandra
package gocql
import (
"context"
"fmt"
"net"
"testing"
)
func TestSessionAPI(t *testing.T) {
cfg := &ClusterConfig{}
s := &Session{
cfg: *cfg,
cons: Quorum,
policy: RoundRobinHostPolicy(),
}
s.pool = cfg.PoolConfig.buildPool(s)
s.executor = &queryExecutor{
pool: s.pool,
policy: s.policy,
}
defer s.Close()
s.SetConsistency(All)
if s.cons != All {
t.Fatalf("expected consistency 'All', got '%v'", s.cons)
}
s.SetPageSize(100)
if s.pageSize != 100 {
t.Fatalf("expected pageSize 100, got %v", s.pageSize)
}
s.SetPrefetch(0.75)
if s.prefetch != 0.75 {
t.Fatalf("expceted prefetch 0.75, got %v", s.prefetch)
}
trace := &traceWriter{}
s.SetTrace(trace)
if s.trace != trace {
t.Fatalf("expected traceWriter '%v',got '%v'", trace, s.trace)
}
qry := s.Query("test", 1)
if v, ok := qry.values[0].(int); !ok {
t.Fatalf("expected qry.values[0] to be an int, got %v", qry.values[0])
} else if v != 1 {
t.Fatalf("expceted qry.values[0] to be 1, got %v", v)
} else if qry.stmt != "test" {
t.Fatalf("expected qry.stmt to be 'test', got '%v'", qry.stmt)
}
boundQry := s.Bind("test", func(q *QueryInfo) ([]interface{}, error) {
return nil, nil
})
if boundQry.binding == nil {
t.Fatal("expected qry.binding to be defined, got nil")
} else if boundQry.stmt != "test" {
t.Fatalf("expected qry.stmt to be 'test', got '%v'", boundQry.stmt)
}
itr := s.executeQuery(qry)
if itr.err != ErrNoConnections {
t.Fatalf("expected itr.err to be '%v', got '%v'", ErrNoConnections, itr.err)
}
testBatch := s.NewBatch(LoggedBatch)
testBatch.Query("test")
err := s.ExecuteBatch(testBatch)
if err != ErrNoConnections {
t.Fatalf("expected session.ExecuteBatch to return '%v', got '%v'", ErrNoConnections, err)
}
s.Close()
if !s.Closed() {
t.Fatal("expected s.Closed() to be true, got false")
}
//Should just return cleanly
s.Close()
err = s.ExecuteBatch(testBatch)
if err != ErrSessionClosed {
t.Fatalf("expected session.ExecuteBatch to return '%v', got '%v'", ErrSessionClosed, err)
}
}
type funcQueryObserver func(context.Context, ObservedQuery)
func (f funcQueryObserver) ObserveQuery(ctx context.Context, o ObservedQuery) {
f(ctx, o)
}
func TestQueryBasicAPI(t *testing.T) {
qry := &Query{}
// Initiate host
ip := "127.0.0.1"
qry.metrics = preFilledQueryMetrics(map[string]*hostMetrics{ip: {Attempts: 0, TotalLatency: 0}})
if qry.Latency() != 0 {
t.Fatalf("expected Query.Latency() to return 0, got %v", qry.Latency())
}
qry.metrics = preFilledQueryMetrics(map[string]*hostMetrics{ip: {Attempts: 2, TotalLatency: 4}})
if qry.Attempts() != 2 {
t.Fatalf("expected Query.Attempts() to return 2, got %v", qry.Attempts())
}
if qry.Latency() != 2 {
t.Fatalf("expected Query.Latency() to return 2, got %v", qry.Latency())
}
qry.AddAttempts(2, &HostInfo{hostname: ip, connectAddress: net.ParseIP(ip), port: 9042})
if qry.Attempts() != 4 {
t.Fatalf("expected Query.Attempts() to return 4, got %v", qry.Attempts())
}
qry.Consistency(All)
if qry.GetConsistency() != All {
t.Fatalf("expected Query.GetConsistency to return 'All', got '%s'", qry.GetConsistency())
}
trace := &traceWriter{}
qry.Trace(trace)
if qry.trace != trace {
t.Fatalf("expected Query.Trace to be '%v', got '%v'", trace, qry.trace)
}
observer := funcQueryObserver(func(context.Context, ObservedQuery) {})
qry.Observer(observer)
if qry.observer == nil { // can't compare func to func, checking not nil instead
t.Fatal("expected Query.QueryObserver to be set, got nil")
}
qry.PageSize(10)
if qry.pageSize != 10 {
t.Fatalf("expected Query.PageSize to be 10, got %v", qry.pageSize)
}
qry.Prefetch(0.75)
if qry.prefetch != 0.75 {
t.Fatalf("expected Query.Prefetch to be 0.75, got %v", qry.prefetch)
}
rt := &SimpleRetryPolicy{NumRetries: 3}
if qry.RetryPolicy(rt); qry.rt != rt {
t.Fatalf("expected Query.RetryPolicy to be '%v', got '%v'", rt, qry.rt)
}
qry.Bind(qry)
if qry.values[0] != qry {
t.Fatalf("expected Query.Values[0] to be '%v', got '%v'", qry, qry.values[0])
}
}
func TestQueryShouldPrepare(t *testing.T) {
toPrepare := []string{"select * ", "INSERT INTO", "update table", "delete from", "begin batch"}
cantPrepare := []string{"create table", "USE table", "LIST keyspaces", "alter table", "drop table", "grant user", "revoke user"}
q := &Query{}
for i := 0; i < len(toPrepare); i++ {
q.stmt = toPrepare[i]
if !q.shouldPrepare() {
t.Fatalf("expected Query.shouldPrepare to return true, got false for statement '%v'", toPrepare[i])
}
}
for i := 0; i < len(cantPrepare); i++ {
q.stmt = cantPrepare[i]
if q.shouldPrepare() {
t.Fatalf("expected Query.shouldPrepare to return false, got true for statement '%v'", cantPrepare[i])
}
}
}
func TestBatchBasicAPI(t *testing.T) {
cfg := &ClusterConfig{RetryPolicy: &SimpleRetryPolicy{NumRetries: 2}}
s := &Session{
cfg: *cfg,
cons: Quorum,
}
defer s.Close()
s.pool = cfg.PoolConfig.buildPool(s)
// Test UnloggedBatch
b := s.NewBatch(UnloggedBatch)
if b.Type != UnloggedBatch {
t.Fatalf("expceted batch.Type to be '%v', got '%v'", UnloggedBatch, b.Type)
} else if b.rt != cfg.RetryPolicy {
t.Fatalf("expceted batch.RetryPolicy to be '%v', got '%v'", cfg.RetryPolicy, b.rt)
}
// Test LoggedBatch
b = s.NewBatch(LoggedBatch)
if b.Type != LoggedBatch {
t.Fatalf("expected batch.Type to be '%v', got '%v'", LoggedBatch, b.Type)
}
ip := "127.0.0.1"
// Test attempts
b.metrics = preFilledQueryMetrics(map[string]*hostMetrics{ip: {Attempts: 1}})
if b.Attempts() != 1 {
t.Fatalf("expected batch.Attempts() to return %v, got %v", 1, b.Attempts())
}
b.AddAttempts(2, &HostInfo{hostname: ip, connectAddress: net.ParseIP(ip), port: 9042})
if b.Attempts() != 3 {
t.Fatalf("expected batch.Attempts() to return %v, got %v", 3, b.Attempts())
}
// Test latency
if b.Latency() != 0 {
t.Fatalf("expected batch.Latency() to be 0, got %v", b.Latency())
}
b.metrics = preFilledQueryMetrics(map[string]*hostMetrics{ip: {Attempts: 1, TotalLatency: 4}})
if b.Latency() != 4 {
t.Fatalf("expected batch.Latency() to return %v, got %v", 4, b.Latency())
}
// Test Consistency
b.Cons = One
if b.GetConsistency() != One {
t.Fatalf("expected batch.GetConsistency() to return 'One', got '%s'", b.GetConsistency())
}
// Test batch.Query()
b.Query("test", 1)
if b.Entries[0].Stmt != "test" {
t.Fatalf("expected batch.Entries[0].Statement to be 'test', got '%v'", b.Entries[0].Stmt)
} else if b.Entries[0].Args[0].(int) != 1 {
t.Fatalf("expected batch.Entries[0].Args[0] to be 1, got %v", b.Entries[0].Args[0])
}
b.Bind("test2", func(q *QueryInfo) ([]interface{}, error) {
return nil, nil
})
if b.Entries[1].Stmt != "test2" {
t.Fatalf("expected batch.Entries[1].Statement to be 'test2', got '%v'", b.Entries[1].Stmt)
} else if b.Entries[1].binding == nil {
t.Fatal("expected batch.Entries[1].binding to be defined, got nil")
}
// Test RetryPolicy
r := &SimpleRetryPolicy{NumRetries: 4}
b.RetryPolicy(r)
if b.rt != r {
t.Fatalf("expected batch.RetryPolicy to be '%v', got '%v'", r, b.rt)
}
if b.Size() != 2 {
t.Fatalf("expected batch.Size() to return 2, got %v", b.Size())
}
}
func TestConsistencyNames(t *testing.T) {
names := map[fmt.Stringer]string{
Any: "ANY",
One: "ONE",
Two: "TWO",
Three: "THREE",
Quorum: "QUORUM",
All: "ALL",
LocalQuorum: "LOCAL_QUORUM",
EachQuorum: "EACH_QUORUM",
Serial: "SERIAL",
LocalSerial: "LOCAL_SERIAL",
LocalOne: "LOCAL_ONE",
}
for k, v := range names {
if k.String() != v {
t.Fatalf("expected '%v', got '%v'", v, k.String())
}
}
}
func TestIsUseStatement(t *testing.T) {
testCases := []struct {
input string
exp bool
}{
{"USE foo", true},
{"USe foo", true},
{"UsE foo", true},
{"Use foo", true},
{"uSE foo", true},
{"uSe foo", true},
{"usE foo", true},
{"use foo", true},
{"SELECT ", false},
{"UPDATE ", false},
{"INSERT ", false},
{"", false},
}
for _, tc := range testCases {
v := isUseStatement(tc.input)
if v != tc.exp {
t.Fatalf("expected %v but got %v for statement %q", tc.exp, v, tc.input)
}
}
}