-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclickconnmock_test.go
More file actions
651 lines (529 loc) · 18 KB
/
Copy pathclickconnmock_test.go
File metadata and controls
651 lines (529 loc) · 18 KB
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
649
650
651
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package mockhouse
import (
"context"
"database/sql"
"errors"
"reflect"
"testing"
)
func TestPrepareExpectations(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
append := mock.
ExpectPrepareBatch("INSERT INTO articles (id, title, content) VALUES (?, ?, ?)").
ExpectAppend()
if append == nil {
t.Errorf("stmt was expected while creating a prepared statement")
}
var clickConn = mock
batch, err := clickConn.PrepareBatch(context.Background(), "INSERT INTO articles (id, title, content) VALUES (?, ?, ?)")
if err != nil {
t.Errorf("an error '%s' was not expected when preparing a batch statement", err)
}
batch.Append(1, "title", "content")
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("there were unfulfilled expectations: %s", err)
}
}
func TestQueryExpectations(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
mock.ExpectQuery("SELECT id, title, content FROM articles WHERE id = ?").WithArgs(1)
_, err = mock.Query(context.Background(), "SELECT id, title, content FROM articles WHERE id = ?", 1)
if err != nil {
t.Errorf("an error '%s' was not expected when querying a statement", err)
}
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("there were unfulfilled expectations: %s", err)
}
}
func TestQueryExepectationsWithArgs(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
mock.ExpectQuery("SELECT id, title, content FROM articles WHERE id = ?").WithArgs(1)
_, err = mock.Query(context.Background(), "SELECT id, title, content FROM articles WHERE id = ?", 1)
if err != nil {
t.Errorf("an error '%s' was not expected when querying a statement", err)
}
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("there were unfulfilled expectations: %s", err)
}
}
func TestQueryExepectationsWithArgsAndRows(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
cols := make([]ColumnType, 0)
cols = append(cols, ColumnType{Type: "Int32", Name: "id"})
cols = append(cols, ColumnType{Type: "String", Name: "title"})
cols = append(cols, ColumnType{Type: "String", Name: "content"})
values := make([][]any, 1)
values[0] = make([]any, 3)
values[0][0] = int32(1)
values[0][1] = "title"
values[0][2] = "content"
rows := NewRows(cols, values)
mock.
ExpectQuery("SELECT id, title, content FROM articles WHERE id = ?").
WithArgs(1).
WillReturnRows(rows)
returnRows, err := mock.Query(context.Background(), "SELECT id, title, content FROM articles WHERE id = ?", 1)
if err != nil {
t.Errorf("an error '%s' was not expected when querying a statement", err)
}
cnt := 0
for returnRows.Next() {
var id int32
var title string
var content string
err = returnRows.Scan(&id, &title, &content)
if err != nil {
t.Errorf("an error '%s' was not expected when scanning a row", err)
}
if id != 1 {
t.Errorf("expected id to be 1, but got %d", id)
}
if title != "title" {
t.Errorf("expected title to be title, but got %s", title)
}
if content != "content" {
t.Errorf("expected content to be content, but got %s", content)
}
cnt++
if cnt > 2 {
t.Errorf("expected only 1 row, but got more")
break
}
}
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("there were unfulfilled expectations: %s", err)
}
}
func TestQueryExepectationsWithArgsAndRowsColumnTypes(t *testing.T) {
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
cols := make([]ColumnType, 0)
cols = append(cols, ColumnType{Type: "Int32", Name: "id"})
cols = append(cols, ColumnType{Type: "String", Name: "title"})
values := make([][]any, 1)
values[0] = make([]any, 2)
values[0][0] = int32(1)
values[0][1] = "title"
rows := NewRows(cols, values)
mock.
ExpectQuery("SELECT id, title FROM articles WHERE id = ?").
WithArgs(1).
WillReturnRows(rows)
returnRows, err := mock.Query(context.Background(), "SELECT id, title FROM articles WHERE id = ?", 1)
if err != nil {
t.Errorf("an error '%s' was not expected when querying a statement", err)
}
cnt := 0
var (
columnTypes = rows.ColumnTypes()
vars = make([]any, len(columnTypes))
)
for i := range columnTypes {
vars[i] = reflect.New(columnTypes[i].ScanType()).Interface()
}
for returnRows.Next() {
var id int32
var title string
if err := rows.Scan(vars...); err != nil {
t.Errorf("an error '%s' was not expected when scanning a row", err)
}
for _, v := range vars {
switch v := v.(type) {
case *int32:
id = *v
case *string:
title = *v
}
}
if id != 1 {
t.Errorf("expected id to be 1, but got %d", id)
}
if title != "title" {
t.Errorf("expected title to be title, but got %s", title)
}
cnt++
if cnt > 2 {
t.Errorf("expected only 1 row, but got more")
break
}
}
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("there were unfulfilled expectations: %s", err)
}
}
func TestExpectError(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
mock.ExpectQuery("SELECT * FROM articles WHERE id = ?").WithArgs(1).WillReturnError(errors.New("some error"))
_, err = mock.Query(context.Background(), "SELECT * FROM articles WHERE id = ?", 1)
if err == nil {
t.Error("an error was expected when querying a statement")
}
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("there were unfulfilled expectations: %s", err)
}
}
func TestUnfulfilledExpectation(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
mock.ExpectQuery("SELECT * FROM articles WHERE id = ?").WithArgs(1)
if err := mock.ExpectationsWereMet(); err == nil {
t.Errorf("an error was expected due to unfulfilled expectations")
}
}
func TestQueryExpectationsWithDifferentDataTypes(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
cols := make([]ColumnType, 0)
cols = append(cols, ColumnType{Type: "Int32", Name: "id"})
cols = append(cols, ColumnType{Type: "Float64", Name: "price"})
cols = append(cols, ColumnType{Type: "String", Name: "description"})
values := make([][]any, 1)
values[0] = make([]any, 3)
values[0][0] = int32(1)
values[0][1] = float64(10.5)
values[0][2] = "item"
rows := NewRows(cols, values)
mock.
ExpectQuery("SELECT id, price, description FROM items WHERE id = ?").
WithArgs(1).
WillReturnRows(rows)
returnedRows, err := mock.Query(context.Background(), "SELECT id, price, description FROM items WHERE id = ?", 1)
if err != nil {
t.Errorf("an error '%s' was not expected when querying a statement", err)
}
cnt := 0
for returnedRows.Next() {
var id int32
var price float64
var description string
err = returnedRows.Scan(&id, &price, &description)
if err != nil {
t.Errorf("an error '%s' was not expected when scanning a row", err)
}
if id != 1 {
t.Errorf("expected id to be 1, but got %d", id)
}
if price != 10.5 {
t.Errorf("expected price to be 10.5, but got %f", price)
}
if description != "item" {
t.Errorf("expected description to be item, but got %s", description)
}
cnt++
if cnt > 2 {
t.Errorf("expected only 1 row, but got more")
break
}
}
}
func TestQueryExpectationsWithNoRows(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
mock.
ExpectQuery("SELECT id, title, content FROM articles WHERE id = ?").
WithArgs(1).
WillReturnRows(NewRows([]ColumnType{}, [][]any{}))
returnRows, err := mock.Query(context.Background(), "SELECT id, title, content FROM articles WHERE id = ?", 1)
if err != nil {
t.Errorf("an error '%s' was not expected when querying a statement", err)
}
if returnRows.Next() {
t.Errorf("no rows were expected")
}
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("there were unfulfilled expectations: %s", err)
}
}
func TestMultipleQueries(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
mock.ExpectQuery("SELECT * FROM articles WHERE id = ?").WithArgs(1)
mock.ExpectQuery("SELECT * FROM articles WHERE id = ?").WithArgs(2)
_, err = mock.Query(context.Background(), "SELECT * FROM articles WHERE id = ?", 1)
if err != nil {
t.Errorf("an error '%s' was not expected when querying a statement", err)
}
_, err = mock.Query(context.Background(), "SELECT * FROM articles WHERE id = ?", 2)
if err != nil {
t.Errorf("an error '%s' was not expected when querying a statement", err)
}
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("there were unfulfilled expectations: %s", err)
}
}
func TestStrictOrderingOfExpectations(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
mock.ExpectQuery("SELECT * FROM articles WHERE id = ?").WithArgs(1)
mock.ExpectQuery("SELECT * FROM articles WHERE id = ?").WithArgs(2)
// Querying out of order
_, err = mock.Query(context.Background(), "SELECT * FROM articles WHERE id = ?", 2)
if err == nil {
t.Error("an error was expected due to querying out of order")
}
}
func TestUnexpectedQuery(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
// No expectation set for this query
_, err = mock.Query(context.Background(), "SELECT * FROM articles WHERE id = ?", 1)
if err == nil {
t.Error("an error was expected due to unexpected query")
}
}
func TestCorrectNumberOfCalls(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
mock.ExpectQuery("SELECT * FROM articles WHERE id = ?").WithArgs(1)
mock.ExpectQuery("SELECT * FROM articles WHERE id = ?").WithArgs(1)
_, err = mock.Query(context.Background(), "SELECT * FROM articles WHERE id = ?", 1)
if err != nil {
t.Errorf("an error '%s' was not expected when querying a statement", err)
}
if err := mock.ExpectationsWereMet(); err == nil {
t.Error("an error was expected due to incorrect number of calls")
}
}
func TestArgumentMismatch(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
mock.ExpectQuery("SELECT * FROM articles WHERE id = ?").WithArgs(1)
_, err = mock.Query(context.Background(), "SELECT * FROM articles WHERE id = ?", 2)
if err == nil {
t.Error("an error was expected due to argument mismatch")
}
}
func TestConnectionClose(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
mock.ExpectClose()
err = mock.Close()
if err != nil {
t.Errorf("an error '%s' was not expected when closing the connection", err)
}
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("there were unfulfilled expectations: %s", err)
}
}
func TestRowScanError(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
cols := []ColumnType{
{Type: "Int32", Name: "id"},
{Type: "String", Name: "title"},
}
values := [][]any{
{int32(1), "title"},
}
rows := NewRows(cols, values)
mock.ExpectQuery("SELECT id, title FROM articles WHERE id = ?").WithArgs(1).WillReturnRows(rows)
returnRows, err := mock.Query(context.Background(), "SELECT id, title FROM articles WHERE id = ?", 1)
if err != nil {
t.Errorf("an error '%s' was not expected when querying a statement", err)
}
var id int32
// Trying to scan into fewer variables than columns in the result should result in an error
if returnRows.Next() && returnRows.Scan(&id) == nil {
t.Error("an error was expected due to row scan error")
}
}
func TestUnmatchedExpectations(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
mock.ExpectQuery("SELECT * FROM articles WHERE id = ?").WithArgs(1)
if err := mock.ExpectationsWereMet(); err == nil {
t.Error("an error was expected due to unmatched expectations")
}
}
func TestContextCancellation(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
ctx, cancel := context.WithCancel(context.Background())
cancel() // immediately cancel the context
_, err = mock.Query(ctx, "SELECT * FROM articles WHERE id = ?", 1)
if err == nil {
t.Error("an error was expected due to context cancellation")
}
}
func TestQueryMultipleExpectedRows(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
rows := NewRows([]ColumnType{{Type: "Int32", Name: "id"}, {Type: "String", Name: "title"}},
[][]any{{int32(1), "title1"}, {int32(2), "title2"}})
mock.ExpectQuery("SELECT id, title FROM articles").WillReturnRows(rows)
returnRows, err := mock.Query(context.Background(), "SELECT id, title FROM articles")
if err != nil {
t.Errorf("an error '%s' was not expected when querying a statement", err)
}
var count int
for returnRows.Next() {
var id int32
var title string
err = returnRows.Scan(&id, &title)
if err != nil {
t.Errorf("an error '%s' was not expected when scanning a row", err)
}
count++
}
if count != 2 {
t.Errorf("expected 2 rows, but got %d", count)
}
}
func TestPrepareAndExecute(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
mock.ExpectPrepareBatch("INSERT INTO articles (title) VALUES (?)").
ExpectSend()
stmt, err := mock.PrepareBatch(context.Background(), "INSERT INTO articles (title) VALUES (?)")
if err != nil {
t.Errorf("an error '%s' was not expected when preparing a statement", err)
}
err = stmt.Send()
if err != nil {
t.Errorf("an error '%s' was not expected when executing a statement", err)
}
}
func TestQueryRowExpectedRow(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
row := NewRow([]ColumnType{{Type: "Int32", Name: "id"}, {Type: "String", Name: "title"}},
[]any{int32(1), "title1"})
mock.ExpectQueryRow("SELECT id, title FROM articles").WillReturnRow(row)
returnRow := mock.QueryRow(context.Background(), "SELECT id, title FROM articles")
if err != nil {
t.Errorf("an error '%s' was not expected when querying a statement", err)
}
var id int32
var title string
err = returnRow.Scan(&id, &title)
if err != nil {
t.Errorf("an error '%s' was not expected when scanning a row", err)
}
if id != 1 {
t.Errorf("expected id to be 1, but got %d", id)
}
if title != "title1" {
t.Errorf("expected title to be title1, but got %s", title)
}
}
func TestQueryRowExpectedNoRowsError(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
row := NewRow([]ColumnType{{Type: "Int32", Name: "id"}, {Type: "String", Name: "title"}},
nil)
mock.ExpectQueryRow("SELECT id, title FROM articles").WillReturnRow(row)
returnRow := mock.QueryRow(context.Background(), "SELECT id, title FROM articles")
if err != nil {
t.Errorf("an error '%s' was not expected when querying a statement", err)
}
var id int32
var title string
err = returnRow.Scan(&id, &title)
if err == nil {
t.Error("an error was expected due to no rows")
}
if err != sql.ErrNoRows {
t.Errorf("expected error to be sql.ErrNoRows, but got %s", err)
}
}
func TestQueryReturnRowCustomError(t *testing.T) {
t.Parallel()
mock, err := NewClickHouseNative(nil)
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
row := NewRow([]ColumnType{{Type: "Int32", Name: "id"}, {Type: "String", Name: "title"}},
[]any{int32(1), "title1"})
mock.ExpectQueryRow("SELECT id, title FROM articles").WillReturnRow(row).WillReturnError(errors.New("some error"))
returnRow := mock.QueryRow(context.Background(), "SELECT id, title FROM articles")
if err != nil {
t.Errorf("an error '%s' was not expected when querying a statement", err)
}
var id int32
var title string
err = returnRow.Scan(&id, &title)
if err.Error() != "some error" {
t.Errorf("expected error to be some error, but got %s", err)
}
}