forked from snowflakedb/gosnowflake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection_test.go
648 lines (588 loc) · 18.6 KB
/
connection_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
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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
// Copyright (c) 2019-2022 Snowflake Computing Inc. All rights reserved.
package gosnowflake
import (
"context"
"database/sql"
"database/sql/driver"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"os"
"strings"
"sync"
"testing"
"time"
)
const (
serviceNameStub = "SV"
serviceNameAppend = "a"
)
func TestInvalidConnection(t *testing.T) {
db := openDB(t)
if err := db.Close(); err != nil {
t.Error("should not cause error in Close")
}
if err := db.Close(); err != nil {
t.Error("should not cause error in the second call of Close")
}
if _, err := db.ExecContext(context.Background(), "CREATE TABLE OR REPLACE test0(c1 int)"); err == nil {
t.Error("should fail to run Exec")
}
if _, err := db.QueryContext(context.Background(), "SELECT CURRENT_TIMESTAMP()"); err == nil {
t.Error("should fail to run Query")
}
if _, err := db.BeginTx(context.Background(), nil); err == nil {
t.Error("should fail to run Begin")
}
}
// postQueryMock generates a response based on the X-Snowflake-Service header,
// to generate a response with the SERVICE_NAME field appending a character at
// the end of the header. This way it could test both the send and receive logic
func postQueryMock(_ context.Context, _ *snowflakeRestful, _ *url.Values,
headers map[string]string, _ []byte, _ time.Duration, _ UUID,
_ *Config) (*execResponse, error) {
var serviceName string
if serviceHeader, ok := headers[httpHeaderServiceName]; ok {
serviceName = serviceHeader + serviceNameAppend
} else {
serviceName = serviceNameStub
}
dd := &execResponseData{
Parameters: []nameValueParameter{{"SERVICE_NAME", serviceName}},
}
return &execResponse{
Data: *dd,
Message: "",
Code: "0",
Success: true,
}, nil
}
func TestExecWithEmptyRequestID(t *testing.T) {
ctx := WithRequestID(context.Background(), nilUUID)
postQueryMock := func(_ context.Context, _ *snowflakeRestful,
_ *url.Values, _ map[string]string, _ []byte, _ time.Duration,
requestID UUID, _ *Config) (*execResponse, error) {
// ensure the same requestID from context is used
if len(requestID) == 0 {
t.Fatal("requestID is empty")
}
dd := &execResponseData{}
return &execResponse{
Data: *dd,
Message: "",
Code: "0",
Success: true,
}, nil
}
sr := &snowflakeRestful{
FuncPostQuery: postQueryMock,
}
sc := &snowflakeConn{
cfg: &Config{Params: map[string]*string{}},
rest: sr,
queryContextCache: (&queryContextCache{}).init(),
}
if _, err := sc.exec(ctx, "", false /* noResult */, false, /* isInternal */
false /* describeOnly */, nil); err != nil {
t.Fatalf("err: %v", err)
}
}
func TestGetQueryResultUsesTokenFromTokenAccessor(t *testing.T) {
ta := getSimpleTokenAccessor()
token := "snowflake-test-token"
ta.SetTokens(token, "", 1)
funcGetMock := func(_ context.Context, _ *snowflakeRestful, _ *url.URL,
headers map[string]string, _ time.Duration) (*http.Response, error) {
if headers[headerAuthorizationKey] != fmt.Sprintf(headerSnowflakeToken, token) {
t.Fatalf("header authorization key is not correct: %v", headers[headerAuthorizationKey])
}
dd := &execResponseData{}
er := &execResponse{
Data: *dd,
Message: "",
Code: sessionExpiredCode,
Success: true,
}
ba, err := json.Marshal(er)
if err != nil {
t.Fatalf("err: %v", err)
}
return &http.Response{
StatusCode: http.StatusOK,
Body: &fakeResponseBody{body: ba},
}, nil
}
sr := &snowflakeRestful{
FuncGet: funcGetMock,
TokenAccessor: ta,
}
sc := &snowflakeConn{
cfg: &Config{Params: map[string]*string{}},
rest: sr,
currentTimeProvider: defaultTimeProvider,
}
if _, err := sc.getQueryResultResp(context.Background(), ""); err != nil {
t.Fatalf("err: %v", err)
}
}
func TestExecWithSpecificRequestID(t *testing.T) {
origRequestID := NewUUID()
ctx := WithRequestID(context.Background(), origRequestID)
postQueryMock := func(_ context.Context, _ *snowflakeRestful,
_ *url.Values, _ map[string]string, _ []byte, _ time.Duration,
requestID UUID, _ *Config) (*execResponse, error) {
// ensure the same requestID from context is used
if requestID != origRequestID {
t.Fatal("requestID doesn't match")
}
dd := &execResponseData{}
return &execResponse{
Data: *dd,
Message: "",
Code: "0",
Success: true,
}, nil
}
sr := &snowflakeRestful{
FuncPostQuery: postQueryMock,
}
sc := &snowflakeConn{
cfg: &Config{Params: map[string]*string{}},
rest: sr,
queryContextCache: (&queryContextCache{}).init(),
}
if _, err := sc.exec(ctx, "", false /* noResult */, false, /* isInternal */
false /* describeOnly */, nil); err != nil {
t.Fatalf("err: %v", err)
}
}
// TestServiceName tests two things:
// 1. request header contains X-Snowflake-Service if the cfg parameters
// contains SERVICE_NAME
// 2. SERVICE_NAME is updated by response payload
// Uses interactive postQueryMock that generates a response based on header
func TestServiceName(t *testing.T) {
sr := &snowflakeRestful{
FuncPostQuery: postQueryMock,
}
sc := &snowflakeConn{
cfg: &Config{Params: map[string]*string{}},
rest: sr,
queryContextCache: (&queryContextCache{}).init(),
}
expectServiceName := serviceNameStub
for i := 0; i < 5; i++ {
sc.exec(context.Background(), "", false, /* noResult */
false /* isInternal */, false /* describeOnly */, nil)
if actualServiceName, ok := sc.cfg.Params[serviceName]; ok {
if *actualServiceName != expectServiceName {
t.Errorf("service name mis-match. expected %v, actual %v",
expectServiceName, actualServiceName)
}
} else {
t.Error("No service name in the response")
}
expectServiceName += serviceNameAppend
}
}
var closedSessionCount = 0
var testTelemetry = &snowflakeTelemetry{
mutex: &sync.Mutex{},
}
func closeSessionMock(_ context.Context, _ *snowflakeRestful, _ time.Duration) error {
closedSessionCount++
return &SnowflakeError{
Number: ErrSessionGone,
}
}
func TestCloseIgnoreSessionGone(t *testing.T) {
sr := &snowflakeRestful{
FuncCloseSession: closeSessionMock,
}
sc := &snowflakeConn{
cfg: &Config{Params: map[string]*string{}},
rest: sr,
telemetry: testTelemetry,
queryContextCache: (&queryContextCache{}).init(),
}
if sc.Close() != nil {
t.Error("Close should let go session gone error")
}
}
func TestClientSessionPersist(t *testing.T) {
sr := &snowflakeRestful{
FuncCloseSession: closeSessionMock,
}
sc := &snowflakeConn{
cfg: &Config{Params: map[string]*string{}},
rest: sr,
telemetry: testTelemetry,
}
sc.cfg.KeepSessionAlive = true
count := closedSessionCount
if sc.Close() != nil {
t.Error("Connection close should not return error")
}
if count != closedSessionCount {
t.Fatal("close session was called")
}
}
func TestFetchResultByQueryID(t *testing.T) {
fetchResultByQueryID(t, nil, nil)
}
func TestFetchRunningQueryByID(t *testing.T) {
fetchResultByQueryID(t, returnQueryIsRunningStatus, nil)
}
func TestFetchErrorQueryByID(t *testing.T) {
fetchResultByQueryID(t, returnQueryIsErrStatus, &SnowflakeError{
Number: ErrQueryReportedError})
}
func TestFetchMalformedJsonQueryByID(t *testing.T) {
expectedErr := errors.New("invalid character '}' after object key")
fetchResultByQueryID(t, returnQueryMalformedJSON, expectedErr)
}
func customGetQuery(ctx context.Context, rest *snowflakeRestful, url *url.URL,
vals map[string]string, _ time.Duration, jsonStr string) (
*http.Response, error) {
if strings.Contains(url.Path, "/monitoring/queries/") {
return &http.Response{
StatusCode: http.StatusOK,
Body: io.NopCloser(strings.NewReader(jsonStr)),
}, nil
}
return getRestful(ctx, rest, url, vals, rest.RequestTimeout)
}
func returnQueryIsRunningStatus(ctx context.Context, rest *snowflakeRestful, fullURL *url.URL,
vals map[string]string, duration time.Duration) (*http.Response, error) {
jsonStr := `{"data" : { "queries" : [{"status" : "RUNNING", "state" :
"FILE_SET_INITIALIZATION", "errorCode" : "", "errorMessage" : null}] },
"code" : null, "message" : null, "success" : true }`
return customGetQuery(ctx, rest, fullURL, vals, duration, jsonStr)
}
func returnQueryIsErrStatus(ctx context.Context, rest *snowflakeRestful, fullURL *url.URL,
vals map[string]string, duration time.Duration) (*http.Response, error) {
jsonStr := `{"data" : { "queries" : [{"status" : "FAILED_WITH_ERROR",
"errorCode" : "", "errorMessage" : ""}] }, "code" : null, "message" :
null, "success" : true }`
return customGetQuery(ctx, rest, fullURL, vals, duration, jsonStr)
}
func returnQueryMalformedJSON(ctx context.Context, rest *snowflakeRestful, fullURL *url.URL,
vals map[string]string, duration time.Duration) (*http.Response, error) {
jsonStr := `{"malformedJson"}`
return customGetQuery(ctx, rest, fullURL, vals, duration, jsonStr)
}
// this function is going to: 1, create a table, 2, query on this table,
// 3, fetch result of query in step 2, mock running status and error status
// of that query.
func fetchResultByQueryID(
t *testing.T,
customGet funcGetType,
expectedFetchErr error) error {
config, err := ParseDSN(dsn)
if err != nil {
return err
}
ctx := context.Background()
sc, err := buildSnowflakeConn(ctx, *config)
if customGet != nil {
sc.rest.FuncGet = customGet
}
if err != nil {
return err
}
if err = authenticateWithConfig(sc); err != nil {
return err
}
if _, err = sc.Exec(`create or replace table ut_conn(c1 number, c2 string)
as (select seq4() as seq, concat('str',to_varchar(seq)) as str1
from table(generator(rowcount => 100)))`, nil); err != nil {
t.Fatalf("err: %v", err)
}
rows1, err := sc.QueryContext(ctx, "select min(c1) as ms, sum(c1) from ut_conn group by (c1 % 10) order by ms", nil)
if err != nil {
t.Fatalf("Query failed: %v", err)
}
qid := rows1.(SnowflakeResult).GetQueryID()
newCtx := WithFetchResultByID(ctx, qid)
rows2, err := sc.QueryContext(newCtx, "", nil)
if err != nil {
snowflakeErr, ok := err.(*SnowflakeError)
if ok && expectedFetchErr != nil { // got expected error number
if expectedSnowflakeErr, ok := expectedFetchErr.(*SnowflakeError); ok {
if expectedSnowflakeErr.Number == snowflakeErr.Number {
return nil
}
}
} else if !ok { // not a SnowflakeError
if strings.Contains(err.Error(), expectedFetchErr.Error()) {
return nil
}
}
t.Fatalf("Fetch Query Result by ID failed: %v", err)
}
dest := make([]driver.Value, 2)
cnt := 0
for {
if err = rows2.Next(dest); err != nil {
if err == io.EOF {
break
} else {
t.Fatalf("unexpected error: %v", err)
}
}
cnt++
}
if cnt != 10 {
t.Fatalf("rowcount is not expected 10: %v", cnt)
}
return nil
}
func TestPrivateLink(t *testing.T) {
if _, err := buildSnowflakeConn(context.Background(), Config{
Account: "testaccount",
User: "testuser",
Password: "testpassword",
Host: "testaccount.us-east-1.privatelink.snowflakecomputing.com",
}); err != nil {
t.Error(err)
}
ocspURL := os.Getenv(cacheServerURLEnv)
expectedURL := "http://ocsp.testaccount.us-east-1.privatelink.snowflakecomputing.com/ocsp_response_cache.json"
if ocspURL != expectedURL {
t.Errorf("expected: %v, got: %v", expectedURL, ocspURL)
}
retryURL := os.Getenv(ocspRetryURLEnv)
expectedURL = "http://ocsp.testaccount.us-east-1.privatelink.snowflakecomputing.com/retry/%v/%v"
if retryURL != expectedURL {
t.Errorf("expected: %v, got: %v", expectedURL, retryURL)
}
}
func TestGetQueryStatus(t *testing.T) {
runSnowflakeConnTest(t, func(sct *SCTest) {
sct.mustExec(`create or replace table ut_conn(c1 number, c2 string)
as (select seq4() as seq, concat('str',to_varchar(seq)) as str1
from table(generator(rowcount => 100)))`,
nil)
rows := sct.mustQueryContext(sct.sc.ctx, "select min(c1) as ms, sum(c1) from ut_conn group by (c1 % 10) order by ms", nil)
qid := rows.(SnowflakeResult).GetQueryID()
// use conn as type holder for SnowflakeConnection placeholder
var conn interface{} = sct.sc
qStatus, err := conn.(SnowflakeConnection).GetQueryStatus(sct.sc.ctx, qid)
if err != nil {
t.Errorf("failed to get query status err = %s", err.Error())
return
}
if qStatus == nil {
t.Error("there was no query status returned")
return
}
if qStatus.ErrorCode != "" || qStatus.ScanBytes != 2048 || qStatus.ProducedRows != 10 {
t.Errorf("expected no error. got: %v, scan bytes: %v, produced rows: %v",
qStatus.ErrorCode, qStatus.ScanBytes, qStatus.ProducedRows)
return
}
})
}
func TestGetInvalidQueryStatus(t *testing.T) {
runSnowflakeConnTest(t, func(sct *SCTest) {
sct.sc.rest.RequestTimeout = 1 * time.Second
qStatus, err := sct.sc.checkQueryStatus(sct.sc.ctx, "1234")
if err == nil || qStatus != nil {
t.Error("expected an error")
}
})
}
func TestExecWithServerSideError(t *testing.T) {
postQueryMock := func(_ context.Context, _ *snowflakeRestful,
_ *url.Values, _ map[string]string, _ []byte, _ time.Duration,
requestID UUID, _ *Config) (*execResponse, error) {
dd := &execResponseData{}
return &execResponse{
Data: *dd,
Message: "",
Code: "",
Success: false,
}, nil
}
sr := &snowflakeRestful{
FuncPostQuery: postQueryMock,
}
sc := &snowflakeConn{
cfg: &Config{Params: map[string]*string{}},
rest: sr,
telemetry: testTelemetry,
}
_, err := sc.exec(context.Background(), "", false, /* noResult */
false /* isInternal */, false /* describeOnly */, nil)
if err == nil {
t.Error("expected a server side error")
}
sfe := err.(*SnowflakeError)
errUnknownError := errUnknownError()
if sfe.Number != -1 || sfe.SQLState != "-1" || sfe.QueryID != "-1" {
t.Errorf("incorrect snowflake error. expected: %v, got: %v", errUnknownError, *sfe)
}
if !strings.Contains(sfe.Message, "an unknown server side error occurred") {
t.Errorf("incorrect message. expected: %v, got: %v", errUnknownError.Message, sfe.Message)
}
}
func TestConcurrentReadOnParams(t *testing.T) {
config, err := ParseDSN(dsn)
if err != nil {
t.Fatal("Failed to parse dsn")
}
connector := NewConnector(SnowflakeDriver{}, *config)
db := sql.OpenDB(connector)
defer db.Close()
wg := sync.WaitGroup{}
for i := 0; i < 10; i++ {
wg.Add(1)
go func() {
for c := 0; c < 10; c++ {
stmt, err := db.PrepareContext(context.Background(), "SELECT table_schema FROM information_schema.columns WHERE table_schema = ? LIMIT 1")
if err != nil {
t.Error(err)
}
rows, err := stmt.Query("INFORMATION_SCHEMA")
if err != nil {
t.Error(err)
}
if rows == nil {
continue
}
rows.Next()
var tableName string
err = rows.Scan(&tableName)
if err != nil {
t.Error(err)
}
_ = rows.Close()
}
wg.Done()
}()
}
wg.Wait()
}
func postQueryTest(_ context.Context, _ *snowflakeRestful, _ *url.Values, headers map[string]string, _ []byte, _ time.Duration, _ UUID, _ *Config) (*execResponse, error) {
return nil, errors.New("failed to get query response")
}
func postQueryFail(_ context.Context, _ *snowflakeRestful, _ *url.Values, headers map[string]string, _ []byte, _ time.Duration, _ UUID, _ *Config) (*execResponse, error) {
dd := &execResponseData{
QueryID: "1eFhmhe23242kmfd540GgGre",
SQLState: "22008",
}
return &execResponse{
Data: *dd,
Message: "failed to get query response",
Code: "12345",
Success: false,
}, errors.New("failed to get query response")
}
func TestErrorReportingOnConcurrentFails(t *testing.T) {
db := openDB(t)
defer db.Close()
var wg sync.WaitGroup
n := 5
wg.Add(3 * n)
for i := 0; i < n; i++ {
go executeQueryAndConfirmMessage(db, "SELECT * FROM TABLE_ABC", "TABLE_ABC", t, &wg)
go executeQueryAndConfirmMessage(db, "SELECT * FROM TABLE_DEF", "TABLE_DEF", t, &wg)
go executeQueryAndConfirmMessage(db, "SELECT * FROM TABLE_GHI", "TABLE_GHI", t, &wg)
}
wg.Wait()
}
func executeQueryAndConfirmMessage(db *sql.DB, query string, expectedErrorTable string, t *testing.T, wg *sync.WaitGroup) {
defer wg.Done()
_, err := db.Exec(query)
message := err.(*SnowflakeError).Message
if !strings.Contains(message, expectedErrorTable) {
t.Errorf("QueryID: %s, Message %s ###### Expected error message table name: %s",
err.(*SnowflakeError).QueryID, err.(*SnowflakeError).Message, expectedErrorTable)
}
}
func TestQueryArrowStreamError(t *testing.T) {
runSnowflakeConnTest(t, func(sct *SCTest) {
numrows := 50000 // approximately 10 ArrowBatch objects
query := fmt.Sprintf(selectRandomGenerator, numrows)
sct.sc.rest = &snowflakeRestful{
FuncPostQuery: postQueryTest,
FuncCloseSession: closeSessionMock,
TokenAccessor: getSimpleTokenAccessor(),
RequestTimeout: 10,
}
_, err := sct.sc.QueryArrowStream(sct.sc.ctx, query)
if err == nil {
t.Error("should have raised an error")
}
sct.sc.rest.FuncPostQuery = postQueryFail
_, err = sct.sc.QueryArrowStream(sct.sc.ctx, query)
if err == nil {
t.Error("should have raised an error")
}
_, ok := err.(*SnowflakeError)
if !ok {
t.Fatalf("should be snowflake error. err: %v", err)
}
})
}
func TestExecContextError(t *testing.T) {
runSnowflakeConnTest(t, func(sct *SCTest) {
sct.sc.rest = &snowflakeRestful{
FuncPostQuery: postQueryTest,
FuncCloseSession: closeSessionMock,
TokenAccessor: getSimpleTokenAccessor(),
RequestTimeout: 10,
}
_, err := sct.sc.ExecContext(sct.sc.ctx, "SELECT 1", []driver.NamedValue{})
if err == nil {
t.Fatalf("should have raised an error")
}
sct.sc.rest.FuncPostQuery = postQueryFail
_, err = sct.sc.ExecContext(sct.sc.ctx, "SELECT 1", []driver.NamedValue{})
if err == nil {
t.Fatalf("should have raised an error")
}
})
}
func TestQueryContextError(t *testing.T) {
runSnowflakeConnTest(t, func(sct *SCTest) {
sct.sc.rest = &snowflakeRestful{
FuncPostQuery: postQueryTest,
FuncCloseSession: closeSessionMock,
TokenAccessor: getSimpleTokenAccessor(),
RequestTimeout: 10,
}
_, err := sct.sc.QueryContext(sct.sc.ctx, "SELECT 1", []driver.NamedValue{})
if err == nil {
t.Fatalf("should have raised an error")
}
sct.sc.rest.FuncPostQuery = postQueryFail
_, err = sct.sc.QueryContext(sct.sc.ctx, "SELECT 1", []driver.NamedValue{})
if err == nil {
t.Fatalf("should have raised an error")
}
_, ok := err.(*SnowflakeError)
if !ok {
t.Fatalf("should be snowflake error. err: %v", err)
}
})
}
func TestPrepareQuery(t *testing.T) {
runSnowflakeConnTest(t, func(sct *SCTest) {
_, err := sct.sc.Prepare("SELECT 1")
if err != nil {
t.Fatalf("failed to prepare query. err: %v", err)
}
})
}
func TestBeginCreatesTransaction(t *testing.T) {
runSnowflakeConnTest(t, func(sct *SCTest) {
tx, _ := sct.sc.Begin()
if tx == nil {
t.Fatal("should have created a transaction with connection")
}
})
}