-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathcatalog_test.go
More file actions
170 lines (163 loc) · 2.8 KB
/
catalog_test.go
File metadata and controls
170 lines (163 loc) · 2.8 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
package postgresql
import (
"errors"
"strconv"
"strings"
"testing"
"github.com/sqlc-dev/sqlc/internal/sql/sqlerr"
"github.com/google/go-cmp/cmp"
)
func TestUpdateErrors(t *testing.T) {
p := NewParser()
for i, tc := range []struct {
stmt string
err *sqlerr.Error
}{
{
`
CREATE TABLE foo ();
CREATE TABLE foo ();
`,
sqlerr.RelationExists("foo"),
},
{
`
CREATE TYPE foo AS ENUM ('bar');
CREATE TYPE foo AS ENUM ('bar');
`,
sqlerr.TypeExists("foo"),
},
{
`
DROP TABLE foo;
`,
sqlerr.RelationNotFound("foo"),
},
{
`
DROP TYPE foo;
`,
sqlerr.TypeNotFound("foo"),
},
{
`
CREATE TABLE foo ();
CREATE TABLE bar ();
ALTER TABLE foo RENAME TO bar;
`,
sqlerr.RelationExists("bar"),
},
{
`
ALTER TABLE foo RENAME TO bar;
`,
sqlerr.RelationNotFound("foo"),
},
{
`
CREATE TABLE foo ();
ALTER TABLE foo ADD COLUMN bar text;
ALTER TABLE foo ADD COLUMN bar text;
`,
sqlerr.ColumnExists("foo", "bar"),
},
{
`
CREATE TABLE foo ();
ALTER TABLE foo DROP COLUMN bar;
`,
sqlerr.ColumnNotFound("foo", "bar"),
},
{
`
CREATE TABLE foo ();
ALTER TABLE foo ALTER COLUMN bar SET NOT NULL;
`,
sqlerr.ColumnNotFound("foo", "bar"),
},
{
`
CREATE TABLE foo ();
ALTER TABLE foo ALTER COLUMN bar DROP NOT NULL;
`,
sqlerr.ColumnNotFound("foo", "bar"),
},
{
`
CREATE SCHEMA foo;
CREATE SCHEMA foo;
`,
sqlerr.SchemaExists("foo"),
},
{
`
ALTER TABLE foo.baz SET SCHEMA bar;
`,
sqlerr.SchemaNotFound("foo"),
},
{
`
CREATE SCHEMA foo;
ALTER TABLE foo.baz SET SCHEMA bar;
`,
sqlerr.RelationNotFound("baz"),
},
{
`
CREATE SCHEMA foo;
CREATE TABLE foo.baz ();
ALTER TABLE foo.baz SET SCHEMA bar;
`,
sqlerr.SchemaNotFound("bar"),
},
{
`
DROP SCHEMA bar;
`,
sqlerr.SchemaNotFound("bar"),
},
{
`
ALTER TABLE foo RENAME bar TO baz;
`,
sqlerr.RelationNotFound("foo"),
},
{
`
CREATE TABLE foo ();
ALTER TABLE foo RENAME bar TO baz;
`,
sqlerr.ColumnNotFound("foo", "bar"),
},
{
`
CREATE TABLE foo (bar text, baz text);
ALTER TABLE foo RENAME bar TO baz;
`,
sqlerr.ColumnExists("foo", "baz"),
},
} {
test := tc
t.Run(strconv.Itoa(i), func(t *testing.T) {
stmts, err := p.Parse(strings.NewReader(test.stmt))
if err != nil {
t.Log(test.stmt)
t.Fatal(err)
}
c := NewCatalog("")
err = c.Build(stmts)
if err == nil {
t.Log(test.stmt)
t.Fatal("err was nil")
}
var actual *sqlerr.Error
if !errors.As(err, &actual) {
t.Fatalf("err is not *sqlerr.Error: %#v", err)
}
if diff := cmp.Diff(test.err.Error(), actual.Error()); diff != "" {
t.Log(test.stmt)
t.Errorf("error mismatch: \n%s", diff)
}
})
}
}