forked from cockroachdb/replicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sql_test.go
71 lines (65 loc) · 1.58 KB
/
sql_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
// 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 (
"fmt"
"reflect"
"testing"
)
// These test require an insecure cockroach server is running on the default
// port with the default root user with no password.
func TestGetPrimaryKeyColumns(t *testing.T) {
// Create the test db
db, dbName, dbClose := getDB(t)
defer dbClose()
testcases := []struct {
tableSchema string
primaryKeys []string
}{
{
"a INT",
[]string{"rowid"},
},
{
"a INT PRIMARY KEY",
[]string{"a"},
},
{
"a INT, b INT, PRIMARY KEY (a,b)",
[]string{"a", "b"},
},
{
"a INT, b INT, PRIMARY KEY (b,a)",
[]string{"b", "a"},
},
{
"a INT, b INT, c INT, PRIMARY KEY (b,a,c)",
[]string{"b", "a", "c"},
},
}
for i, test := range testcases {
t.Run(fmt.Sprintf("%d:%s", i, test.tableSchema), func(t *testing.T) {
tableFullName := fmt.Sprintf("%s.test_%d", dbName, i)
if err := Execute(
db,
fmt.Sprintf(`CREATE TABLE %s ( %s )`, tableFullName, test.tableSchema),
); err != nil {
t.Fatal(err)
}
columns, err := GetPrimaryKeyColumns(db, tableFullName)
if err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(test.primaryKeys, columns) {
t.Errorf("expected %v, got %v", test.primaryKeys, columns)
}
})
}
}