forked from cockroachdb/replicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
1553 lines (1377 loc) · 37.5 KB
/
main_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
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2020 The Cockroach Authors.
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0, included in the file
// licenses/APL.txt.
package main
import (
"context"
"fmt"
"io"
"io/ioutil"
"math/rand"
"net/http"
"net/http/httptest"
"reflect"
"strings"
"testing"
"time"
"github.com/jackc/pgx/v4"
"github.com/jackc/pgx/v4/pgxpool"
"github.com/pkg/errors"
"github.com/stretchr/testify/assert"
)
// These test require an insecure cockroach server is running on the default
// port with the default root user with no password.
var r *rand.Rand
func init() {
r = rand.New(rand.NewSource(time.Now().UnixNano()))
}
const endpointTest = "test.sql"
// getDB creates a new testing DB, return the name of that db and a closer that
// will drop the table and close the db connection.
func getDB(ctx context.Context) (db *pgxpool.Pool, dbName string, closer func(), err error) {
db, err = pgxpool.Connect(ctx, *connectionString)
if err != nil {
return
}
// Create the testing database
dbNum := r.Intn(10000)
dbName = fmt.Sprintf("_test_db_%d", dbNum)
if err = Execute(ctx, db, fmt.Sprintf("CREATE DATABASE IF NOT EXISTS %s", dbName)); err != nil {
return
}
if err = Execute(ctx, db, fmt.Sprintf(sinkDBZoneConfig, dbName)); err != nil {
return
}
if err = Execute(ctx, db, "SET CLUSTER SETTING kv.rangefeed.enabled = true"); err != nil {
return
}
closer = func() {
if err = Execute(ctx, db, fmt.Sprintf("DROP DATABASE %s CASCADE", dbName)); err != nil {
return
}
db.Close()
}
return
}
func getRowCount(ctx context.Context, db *pgxpool.Pool, fullTableName string) (int, error) {
var count int
if err := Retry(ctx, func(ctx context.Context) error {
return db.QueryRow(ctx, fmt.Sprintf("SELECT COUNT(*) FROM %s", fullTableName)).Scan(&count)
}); err != nil {
return 0, err
}
return count, nil
}
type tableInfo struct {
db *pgxpool.Pool
dbName string
name string
}
func (ti tableInfo) String() string {
return fmt.Sprintf("%s.%s", ti.dbName, ti.name)
}
func (ti tableInfo) getFullName() string {
return fmt.Sprintf("%s.%s", ti.dbName, ti.name)
}
func (ti *tableInfo) deleteAll(ctx context.Context) error {
return Execute(ctx, ti.db, fmt.Sprintf("DELETE FROM %s WHERE true", ti.getFullName()))
}
func (ti tableInfo) getTableRowCount(ctx context.Context) (int, error) {
return getRowCount(ctx, ti.db, ti.getFullName())
}
func (ti tableInfo) dropTable(ctx context.Context) error {
return Execute(ctx, ti.db, fmt.Sprintf("DROP TABLE IF EXISTS %s", ti.getFullName()))
}
// This function creates a test table and returns a unique name.
// The schemaSpec parameter must have exactly two %s substitution
// parameters for the database name and table name.
func createTestTable(ctx context.Context, db *pgxpool.Pool, dbName, schemaSpec string) (tableInfo, error) {
var tableName string
outer:
for {
// Create the testing database
tableNum := r.Intn(10000)
tableName = fmt.Sprintf("_test_table_%d", tableNum)
// Find the DB.
var actualTableName string
err := Retry(ctx, func(ctx context.Context) error {
return db.QueryRow(ctx,
fmt.Sprintf("SELECT table_name FROM [SHOW TABLES FROM %s] WHERE table_name = $1", dbName),
tableName,
).Scan(&actualTableName)
})
switch err {
case pgx.ErrNoRows:
break outer
case nil:
continue
default:
return tableInfo{}, err
}
}
if err := Execute(ctx, db, fmt.Sprintf(schemaSpec, dbName, tableName)); err != nil {
return tableInfo{}, err
}
return tableInfo{
db: db,
dbName: dbName,
name: tableName,
}, nil
}
type tableInfoSimple struct {
tableInfo
rowCount int
}
const tableSimpleSchema = `
CREATE TABLE %s.%s (
a INT PRIMARY KEY,
b INT
)
`
func createTestSimpleTable(ctx context.Context, db *pgxpool.Pool, dbName string) (tableInfoSimple, error) {
info, err := createTestTable(ctx, db, dbName, tableSimpleSchema)
return tableInfoSimple{tableInfo: info}, err
}
func (tis *tableInfoSimple) populateTable(ctx context.Context, count int) error {
for i := 0; i < count; i++ {
if err := Execute(
ctx,
tis.db,
fmt.Sprintf("INSERT INTO %s VALUES ($1, $1)", tis.getFullName()),
tis.rowCount+1,
); err != nil {
return err
}
tis.rowCount++
}
return nil
}
func (tis *tableInfoSimple) updateNoneKeyColumns(ctx context.Context) error {
return Execute(
ctx,
tis.db,
fmt.Sprintf("UPDATE %s SET b=b*100 WHERE true", tis.getFullName()),
)
}
func (tis *tableInfoSimple) updateAll(ctx context.Context) error {
return Execute(
ctx,
tis.db,
fmt.Sprintf("UPDATE %s SET a=a*100000, b=b*100000 WHERE true", tis.getFullName()),
)
}
func (tis *tableInfoSimple) maxB(ctx context.Context) (int, error) {
var max int
err := Retry(ctx, func(ctx context.Context) error {
return tis.db.QueryRow(
ctx,
fmt.Sprintf("SELECT max(b) FROM %s", tis.getFullName()),
).Scan(&max)
})
return max, err
}
// tableInfoComposite is a table with a composite primary key.
type tableInfoComposite struct {
tableInfo
rowCount int
}
const tableCompositeSchema = `
CREATE TABLE %s.%s (
a INT,
b INT,
c INT,
PRIMARY KEY (a, b)
)
`
func createTestCompositeTable(ctx context.Context, db *pgxpool.Pool, dbName string) (tableInfoSimple, error) {
info, err := createTestTable(ctx, db, dbName, tableCompositeSchema)
return tableInfoSimple{tableInfo: info}, err
}
func (tis *tableInfoComposite) populateTable(ctx context.Context, count int) error {
for i := 0; i < count; i++ {
if err := Execute(
ctx,
tis.db,
fmt.Sprintf("INSERT INTO %s VALUES ($1, $1, $1)", tis.getFullName()),
tis.rowCount+1,
); err != nil {
return err
}
tis.rowCount++
}
return nil
}
type tableInfoClob struct {
tableInfo
clobSize int // The number of bytes to generate per row.
rowCount int // A running total for code generation.
}
const tableClobSchema = `
CREATE TABLE %s.%s (
a INT NOT NULL PRIMARY KEY,
data TEXT
)
`
func createTestClobTable(ctx context.Context, db *pgxpool.Pool, dbName string, clobSize int) (tableInfoClob, error) {
if clobSize <= 0 {
clobSize = 8 * 1024
}
info, err := createTestTable(ctx, db, dbName, tableClobSchema)
return tableInfoClob{tableInfo: info, clobSize: clobSize}, err
}
func (tic *tableInfoClob) populateTable(ctx context.Context, count int) error {
for i := 0; i < count; i++ {
c := tic.rowCount + 1
data, err := ioutil.ReadAll(clobData(tic.clobSize, c))
if err != nil {
return err
}
if err := Execute(
ctx,
tic.db,
fmt.Sprintf("INSERT INTO %s VALUES ($1, $2)", tic.getFullName()),
c,
string(data),
); err != nil {
return err
}
tic.rowCount++
}
return nil
}
type jobInfo struct {
db *pgxpool.Pool
id int
}
func (ji *jobInfo) cancelJob(ctx context.Context) error {
if ji.id == 0 {
return nil
}
if err := Execute(ctx, ji.db, fmt.Sprintf("CANCEL JOB %d", ji.id)); err != nil {
return err
}
ji.id = 0
return nil
}
func createChangeFeed(
ctx context.Context, db *pgxpool.Pool, url string, endpoint string, tis ...tableInfo,
) (jobInfo, error) {
var query strings.Builder
fmt.Fprint(&query, "CREATE CHANGEFEED FOR TABLE ")
for i := 0; i < len(tis); i++ {
if i != 0 {
fmt.Fprint(&query, ", ")
}
fmt.Fprintf(&query, tis[i].getFullName())
}
fmt.Fprintf(&query, " INTO 'experimental-%s/%s' WITH updated,resolved", url, endpoint)
var jobID int
err := Retry(ctx, func(ctx context.Context) error {
return db.QueryRow(ctx, query.String()).Scan(&jobID)
})
return jobInfo{
db: db,
id: jobID,
}, err
}
// dropSinkDB is just a wrapper around DropSinkDB for testing.
func dropSinkDB(ctx context.Context, db *pgxpool.Pool) error {
return DropSinkDB(ctx, db)
}
// createSinkDB will first drop then create a new sink db.
func createSinkDB(ctx context.Context, db *pgxpool.Pool) error {
if err := dropSinkDB(ctx, db); err != nil {
return err
}
return CreateSinkDB(ctx, db)
}
// TestDB is just a quick test to create and drop a database to ensure the
// Cockroach Cluster is working correctly and we have the correct permissions.
func TestDB(t *testing.T) {
a := assert.New(t)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
db, dbName, dbClose, err := getDB(ctx)
if !a.NoError(err) {
return
}
defer dbClose()
// Find the DB.
var actualDBName string
if err := Retry(ctx, func(ctx context.Context) error {
return db.QueryRow(
ctx,
`SELECT database_name FROM [SHOW DATABASES] WHERE database_name = $1`, dbName,
).Scan(&actualDBName)
}); !a.NoError(err) {
return
}
if !a.Equal(actualDBName, dbName, "db names do not match") {
return
}
// Create a test table and insert some rows
table, err := createTestSimpleTable(ctx, db, dbName)
if !a.NoError(err) {
return
}
if !a.NoError(table.populateTable(ctx, 10)) {
return
}
count, err := table.getTableRowCount(ctx)
a.Equal(10, count, "row count")
a.NoError(err)
}
func createConfig(source tableInfo, destination tableInfo, endpoint string) Config {
return Config{
ConfigEntry{
Endpoint: endpoint,
SourceTable: source.name,
DestinationDatabase: destination.dbName,
DestinationTable: destination.name,
},
}
}
func TestFeedInsert(t *testing.T) {
a := assert.New(t)
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Minute)
defer cancel()
// Create the test db
db, dbName, dbClose, err := getDB(ctx)
if !a.NoError(err) {
return
}
defer dbClose()
// Create a new _cdc_sink db
if !a.NoError(createSinkDB(ctx, db)) {
return
}
defer dropSinkDB(ctx, db)
// Create the table to import from
tableFrom, err := createTestSimpleTable(ctx, db, dbName)
if !a.NoError(err) {
return
}
// Create the table to receive into
tableTo, err := createTestSimpleTable(ctx, db, dbName)
if !a.NoError(err) {
return
}
// Give the from table a few rows
if !a.NoError(tableFrom.populateTable(ctx, 10)) {
return
}
count, err := tableFrom.getTableRowCount(ctx)
a.Equal(10, count, "rows")
if !a.NoError(err) {
return
}
// Create the sinks and sink
sinks, err := CreateSinks(ctx, db, createConfig(tableFrom.tableInfo, tableTo.tableInfo, endpointTest))
if !a.NoError(err) {
return
}
// Create a test http server
handler := createHandler(db, sinks)
server := httptest.NewServer(
http.HandlerFunc(handler),
)
defer server.Close()
t.Log(server.URL)
job, err := createChangeFeed(ctx, db, server.URL, endpointTest, tableFrom.tableInfo)
if !a.NoError(err) {
return
}
defer job.cancelJob(ctx)
if !a.NoError(tableFrom.populateTable(ctx, 10)) {
return
}
// Wait for sync to occur.
if !a.NoError(loopUntilSync(ctx, tableFrom, tableTo)) {
return
}
for {
if !a.NoError(ctx.Err()) {
return
}
toCount, err := tableTo.getTableRowCount(ctx)
if !a.NoError(err) {
return
}
fromCount, err := tableFrom.getTableRowCount(ctx)
if !a.NoError(err) {
return
}
if toCount == fromCount {
break
}
}
if !a.NoError(tableFrom.populateTable(ctx, 10)) {
return
}
// Wait for sync to occur again.
if !a.NoError(loopUntilSync(ctx, tableFrom, tableTo)) {
return
}
// Make sure sink table is empty here.
sink := sinks.FindSink(endpointTest, tableFrom.name)
sinkCount, err := getRowCount(ctx, db, sink.sinkTableFullName)
a.Equal(0, sinkCount, "sink table not empty")
a.NoError(err)
}
func TestFeedDelete(t *testing.T) {
a := assert.New(t)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// Create the test db
db, dbName, dbClose, err := getDB(ctx)
if !a.NoError(err) {
return
}
defer dbClose()
// Create a new _cdc_sink db
if !a.NoError(createSinkDB(ctx, db)) {
return
}
defer dropSinkDB(ctx, db)
// Create the table to import from
tableFrom, err := createTestSimpleTable(ctx, db, dbName)
if !a.NoError(err) {
return
}
// Create the table to receive into
tableTo, err := createTestSimpleTable(ctx, db, dbName)
if !a.NoError(err) {
return
}
// Give the from table a few rows
if !a.NoError(tableFrom.populateTable(ctx, 10)) {
return
}
if count, err := tableFrom.getTableRowCount(ctx); !a.Equal(10, count, "row count") || !a.NoError(err) {
return
}
// Create the sinks and sink
sinks, err := CreateSinks(ctx, db, createConfig(tableFrom.tableInfo, tableTo.tableInfo, endpointTest))
if !a.NoError(err) {
return
}
// Create a test http server
handler := createHandler(db, sinks)
server := httptest.NewServer(
http.HandlerFunc(handler),
)
defer server.Close()
t.Log(server.URL)
job, err := createChangeFeed(ctx, db, server.URL, endpointTest, tableFrom.tableInfo)
if !a.NoError(err) {
return
}
defer job.cancelJob(ctx)
if !a.NoError(tableFrom.populateTable(ctx, 10)) {
return
}
if !a.NoError(loopUntilSync(ctx, tableFrom, tableTo)) {
return
}
if !a.NoError(tableFrom.deleteAll(ctx)) {
return
}
if !a.NoError(loopUntilSync(ctx, tableFrom, tableTo)) {
return
}
// Make sure sink table is empty here.
sink := sinks.FindSink(endpointTest, tableFrom.name)
sinkCount, err := getRowCount(ctx, db, sink.sinkTableFullName)
a.Equal(0, sinkCount, "expected empty sink table")
a.NoError(err)
}
func TestFeedDeleteCompositeKey(t *testing.T) {
a := assert.New(t)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// Create the test db
db, dbName, dbClose, err := getDB(ctx)
if !a.NoError(err) {
return
}
defer dbClose()
// Create a new _cdc_sink db
if !a.NoError(createSinkDB(ctx, db)) {
return
}
defer dropSinkDB(ctx, db)
// Create the table to import from
tableFrom, err := createTestCompositeTable(ctx, db, dbName)
if !a.NoError(err) {
return
}
// Create the table to receive into
tableTo, err := createTestCompositeTable(ctx, db, dbName)
if !a.NoError(err) {
return
}
// Give the from table a few rows
if !a.NoError(tableFrom.populateTable(ctx, 10)) {
return
}
if count, err := tableFrom.getTableRowCount(ctx); !a.Equal(10, count, "row count") || !a.NoError(err) {
return
}
// Create the sinks and sink
sinks, err := CreateSinks(ctx, db, createConfig(tableFrom.tableInfo, tableTo.tableInfo, endpointTest))
if !a.NoError(err) {
return
}
// Create a test http server
handler := createHandler(db, sinks)
server := httptest.NewServer(http.HandlerFunc(handler))
defer server.Close()
t.Log(server.URL)
job, err := createChangeFeed(ctx, db, server.URL, endpointTest, tableFrom.tableInfo)
if !a.NoError(err) {
return
}
defer job.cancelJob(ctx)
if !a.NoError(tableFrom.populateTable(ctx, 10)) {
return
}
if !a.NoError(loopUntilSync(ctx, tableFrom, tableTo)) {
return
}
if !a.NoError(tableFrom.deleteAll(ctx)) {
return
}
if !a.NoError(loopUntilSync(ctx, tableFrom, tableTo)) {
return
}
// Make sure sink table is empty here.
sink := sinks.FindSink(endpointTest, tableFrom.name)
sinkCount, err := getRowCount(ctx, db, sink.sinkTableFullName)
a.Equal(0, sinkCount, "expected empty sink table")
a.NoError(err)
}
func TestFeedUpdateNonPrimary(t *testing.T) {
a := assert.New(t)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// Create the test db
db, dbName, dbClose, err := getDB(ctx)
if !a.NoError(err) {
return
}
defer dbClose()
// Create a new _cdc_sink db
if !a.NoError(createSinkDB(ctx, db)) {
return
}
defer dropSinkDB(ctx, db)
// Create the table to import from
tableFrom, err := createTestSimpleTable(ctx, db, dbName)
if !a.NoError(err) {
return
}
// Create the table to receive into
tableTo, err := createTestSimpleTable(ctx, db, dbName)
if !a.NoError(err) {
return
}
// Give the from table a few rows
if !a.NoError(tableFrom.populateTable(ctx, 10)) {
return
}
if count, err := tableFrom.getTableRowCount(ctx); !a.Equal(10, count) || !a.NoError(err) {
return
}
// Create the sinks and sink
sinks, err := CreateSinks(ctx, db, createConfig(tableFrom.tableInfo, tableTo.tableInfo, endpointTest))
if !a.NoError(err) {
return
}
// Create a test http server
handler := createHandler(db, sinks)
server := httptest.NewServer(
http.HandlerFunc(handler),
)
defer server.Close()
t.Log(server.URL)
job, err := createChangeFeed(ctx, db, server.URL, endpointTest, tableFrom.tableInfo)
if !a.NoError(err) {
return
}
defer job.cancelJob(ctx)
if !a.NoError(tableFrom.populateTable(ctx, 10)) {
return
}
if !a.NoError(loopUntilSync(ctx, tableFrom, tableTo)) {
return
}
if !a.NoError(tableFrom.updateNoneKeyColumns(ctx)) {
return
}
if !a.NoError(loopUntilMaxB(ctx, &tableFrom, &tableTo)) {
return
}
// Make sure sink table is empty here.
sink := sinks.FindSink(endpointTest, tableFrom.name)
sinkCount, err := getRowCount(ctx, db, sink.sinkTableFullName)
a.Equal(0, sinkCount, "expected empty sink table")
a.NoError(err)
}
func TestFeedUpdatePrimary(t *testing.T) {
a := assert.New(t)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// Create the test db
db, dbName, dbClose, err := getDB(ctx)
if !a.NoError(err) {
return
}
defer dbClose()
// Create a new _cdc_sink db
if !a.NoError(createSinkDB(ctx, db)) {
return
}
defer dropSinkDB(ctx, db)
// Create the table to import from
tableFrom, err := createTestSimpleTable(ctx, db, dbName)
if !a.NoError(err) {
return
}
// Create the table to receive into
tableTo, err := createTestSimpleTable(ctx, db, dbName)
if !a.NoError(err) {
return
}
// Give the from table a few rows
if !a.NoError(tableFrom.populateTable(ctx, 10)) {
return
}
if count, err := tableFrom.getTableRowCount(ctx); !a.Equal(10, count, "row count") || !a.NoError(err) {
return
}
// Create the sinks and sink
sinks, err := CreateSinks(ctx, db, createConfig(tableFrom.tableInfo, tableTo.tableInfo, endpointTest))
if !a.NoError(err) {
return
}
// Create a test http server
handler := createHandler(db, sinks)
server := httptest.NewServer(
http.HandlerFunc(handler),
)
defer server.Close()
t.Log(server.URL)
job, err := createChangeFeed(ctx, db, server.URL, endpointTest, tableFrom.tableInfo)
defer job.cancelJob(ctx)
if !a.NoError(tableFrom.populateTable(ctx, 10)) {
return
}
if !a.NoError(loopUntilSync(ctx, tableFrom, tableTo)) {
return
}
if !a.NoError(tableFrom.updateAll(ctx)) {
return
}
if !a.NoError(loopUntilMaxB(ctx, &tableFrom, &tableTo)) {
return
}
// Make sure sink table is empty here.
sink := sinks.FindSink(endpointTest, tableFrom.name)
sinkCount, err := getRowCount(ctx, db, sink.sinkTableFullName)
a.Equal(0, sinkCount, "expected empty sink table")
a.NoError(err)
}
func TestTypes(t *testing.T) {
a := assert.New(t)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// Create the test db
db, dbName, dbClose, err := getDB(ctx)
if !a.NoError(err) {
return
}
defer dbClose()
// Create a new _cdc_sink db
if !a.NoError(createSinkDB(ctx, db)) {
return
}
defer dropSinkDB(ctx, db)
// Create the sinks
sinks, err := CreateSinks(ctx, db, []ConfigEntry{})
if !a.NoError(err) {
return
}
// Create a test http server
handler := createHandler(db, sinks)
server := httptest.NewServer(
http.HandlerFunc(handler),
)
defer server.Close()
t.Log(server.URL)
testcases := []struct {
name string
columnType string
columnValue string
indexable bool
}{
{`string_array`, `STRING[]`, `{"sky","road","car"}`, false},
{`string_array_null`, `STRING[]`, ``, false},
{`int_array`, `INT[]`, `{1,2,3}`, false},
{`int_array_null`, `INT[]`, ``, false},
{`serial_array`, `SERIAL[]`, `{148591304110702593,148591304110702594,148591304110702595}`, false},
{`serial_array_null`, `SERIAL[]`, ``, false},
{`bit`, `VARBIT`, `10010101`, true},
{`bit_null`, `VARBIT`, ``, false},
{`bool`, `BOOL`, `true`, true},
{`bool_null`, `BOOL`, ``, false},
{`bytes`, `BYTES`, `b'\141\061\142\062\143\063'`, true},
{`collate`, `STRING COLLATE de`, `'a1b2c3' COLLATE de`, true},
{`collate_null`, `STRING COLLATE de`, ``, false},
{`date`, `DATE`, `2016-01-25`, true},
{`date_null`, `DATE`, ``, false},
{`decimal`, `DECIMAL`, `1.2345`, true},
{`decimal_null`, `DECIMAL`, ``, false},
{`float`, `FLOAT`, `1.2345`, true},
{`float_null`, `FLOAT`, ``, false},
// {`geography`, `GEOGRAPHY`, `0101000020E6100000000000000000F03F0000000000000040`, false},
// {`geometry`, `GEOMETRY`, `010100000075029A081B9A5DC0F085C954C1F84040`, false},
{`inet`, `INET`, `192.168.0.1`, true},
{`inet_null`, `INET`, ``, false},
{`int`, `INT`, `12345`, true},
{`int_null`, `INT`, ``, false},
{`interval`, `INTERVAL`, `2h30m30s`, true},
{`interval_null`, `INTERVAL`, ``, false},
{
`jsonb`,
`JSONB`,
`
{
"string": "Lola",
"bool": true,
"number": 547,
"float": 123.456,
"array": [
"lola",
true,
547,
123.456,
[
"lola",
true,
547,
123.456
],
{
"string": "Lola",
"bool": true,
"number": 547,
"float": 123.456,
"array": [
"lola",
true,
547,
123.456,
[
"lola",
true,
547,
123.456
]
]
}
],
"map": {
"string": "Lola",
"bool": true,
"number": 547,
"float": 123.456,
"array": [
"lola",
true,
547,
123.456,
[
"lola",
true,
547,
123.456
],
{
"string": "Lola",
"bool": true,
"number": 547,
"float": 123.456,
"array": [
"lola",
true,
547,
123.456,
[
"lola",
true,
547,
123.456
]
]
}
]
}
}
`,
false,
},
{`jsonb_null`, `JSONB`, ``, false},
{`serial`, `SERIAL`, `148591304110702593`, true},
// serial cannot be null
{`string`, `STRING`, `a1b2c3`, true},
{`string_null`, `STRING`, ``, false},
{`string_escape`, `STRING`, `a1\b/2?c"3`, true},
{`time`, `TIME`, `01:23:45.123456`, true},
{`time_null`, `TIME`, ``, false},
{`timestamp`, `TIMESTAMP`, `2016-01-25 10:10:10`, true},
{`timestamp_null`, `TIMESTAMP`, ``, false},
{`timestamptz`, `TIMESTAMPTZ`, `2016-01-25 10:10:10-05:00`, true},
{`timestamptz_null`, `TIMESTAMPTZ`, ``, false},
{`uuid`, `UUID`, `7f9c24e8-3b12-4fef-91e0-56a2d5a246ec`, true},
{`uuid_null`, `UUID`, ``, false},
}
tableIndexableSchema := `CREATE TABLE %s (a %s PRIMARY KEY, b %s)`
tableNonIndexableSchema := `CREATE TABLE %s (a INT PRIMARY KEY, b %s)`
for _, test := range testcases {
t.Run(test.name, func(t *testing.T) {
a := assert.New(t)
ctx, cancel := context.WithTimeout(ctx, 2*time.Minute)
defer cancel()
tableIn := tableInfo{
db: db,
dbName: dbName,
name: fmt.Sprintf("in_%s", test.name),
}
tableOut := tableInfo{
db: db,
dbName: dbName,
name: fmt.Sprintf("out_%s", test.name),
}
// Drop both tables if they already exist.
if !a.NoError(tableIn.dropTable(ctx)) {
return
}
if !a.NoError(tableOut.dropTable(ctx)) {
return
}
// Create both tables.