-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
key_test.go
53 lines (46 loc) · 999 Bytes
/
key_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
package rel
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestCreateForeignKey(t *testing.T) {
var (
options = []KeyOption{
OnDelete("cascade"),
OnUpdate("cascade"),
Name("fk"),
Options("options"),
}
index = createForeignKey("table_id", "table", "id", options)
)
assert.Equal(t, Key{
Type: ForeignKey,
Name: "fk",
Columns: []string{"table_id"},
Reference: ForeignKeyReference{
Table: "table",
Columns: []string{"id"},
OnDelete: "cascade",
OnUpdate: "cascade",
},
Options: "options",
}, index)
}
func TestCreateUniqueKey(t *testing.T) {
var (
options = []KeyOption{
Name("uq"),
Options("options"),
}
index = createKeys([]string{"code"}, UniqueKey, options)
)
assert.Equal(t, Key{
Type: UniqueKey,
Name: "uq",
Columns: []string{"code"},
Options: "options",
}, index)
}
func TestKey_InternalTableDefinition(t *testing.T) {
assert.NotPanics(t, func() { Key{}.internalTableDefinition() })
}