-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcheck_test.go
239 lines (185 loc) · 4.2 KB
/
check_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
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
// TestMissingOne tests that we detect a single missing variant.
func TestMissingOne(t *testing.T) {
code := `
package main
//go-sumtype:decl T
type T interface { sealed() }
type A struct {}
func (a *A) sealed() {}
type B struct {}
func (b *B) sealed() {}
func main() {
switch T(nil).(type) {
case *A:
}
}
`
tmpdir, pkgs := setupPackages(t, code)
defer teardownPackage(t, tmpdir)
errs := run(pkgs)
if !assert.Len(t, errs, 1) {
t.FailNow()
}
assert.Equal(t, []string{"B"}, missingNames(t, errs[0]))
}
// TestMissingTwo tests that we detect a two missing variants.
func TestMissingTwo(t *testing.T) {
code := `
package main
//go-sumtype:decl T
type T interface { sealed() }
type A struct {}
func (a *A) sealed() {}
type B struct {}
func (b *B) sealed() {}
type C struct {}
func (c *C) sealed() {}
func main() {
switch T(nil).(type) {
case *A:
}
}
`
tmpdir, pkgs := setupPackages(t, code)
defer teardownPackage(t, tmpdir)
errs := run(pkgs)
if !assert.Len(t, errs, 1) {
t.FailNow()
}
assert.Equal(t, []string{"B", "C"}, missingNames(t, errs[0]))
}
// TestMissingOneWithPanic tests that we detect a single missing variant even
// if we have a trivial default case that panics.
func TestMissingOneWithPanic(t *testing.T) {
code := `
package main
//go-sumtype:decl T
type T interface { sealed() }
type A struct {}
func (a *A) sealed() {}
type B struct {}
func (b *B) sealed() {}
func main() {
switch T(nil).(type) {
case *A:
default:
panic("unreachable")
}
}
`
tmpdir, pkgs := setupPackages(t, code)
defer teardownPackage(t, tmpdir)
errs := run(pkgs)
if !assert.Len(t, errs, 1) {
t.FailNow()
}
assert.Equal(t, []string{"B"}, missingNames(t, errs[0]))
}
// TestNoMissing tests that we correctly detect exhaustive case analysis.
func TestNoMissing(t *testing.T) {
code := `
package main
//go-sumtype:decl T
type T interface { sealed() }
type A struct {}
func (a *A) sealed() {}
type B struct {}
func (b *B) sealed() {}
type C struct {}
func (c *C) sealed() {}
func main() {
switch T(nil).(type) {
case *A, *B, *C:
}
}
`
tmpdir, pkgs := setupPackages(t, code)
defer teardownPackage(t, tmpdir)
errs := run(pkgs)
assert.Len(t, errs, 0)
}
// TestNoMissingDefault tests that even if we have a missing variant, a default
// case should thwart exhaustiveness checking.
func TestNoMissingDefault(t *testing.T) {
code := `
package main
//go-sumtype:decl T
type T interface { sealed() }
type A struct {}
func (a *A) sealed() {}
type B struct {}
func (b *B) sealed() {}
func main() {
switch T(nil).(type) {
case *A:
default:
println("legit catch all goes here")
}
}
`
tmpdir, pkgs := setupPackages(t, code)
defer teardownPackage(t, tmpdir)
errs := run(pkgs)
assert.Len(t, errs, 0)
}
// TestNotSealed tests that we report an error if one tries to declare a sum
// type with an unsealed interface.
func TestNotSealed(t *testing.T) {
code := `
package main
//go-sumtype:decl T
type T interface {}
func main() {}
`
tmpdir, pkgs := setupPackages(t, code)
defer teardownPackage(t, tmpdir)
errs := run(pkgs)
if !assert.Len(t, errs, 1) {
t.FailNow()
}
assert.Equal(t, "T", errs[0].(unsealedError).Decl.TypeName)
}
// TestNotFound tests that we report an error if one tries to declare a sum
// type that isn't defined.
func TestNotFound(t *testing.T) {
code := `
package main
//go-sumtype:decl T
func main() {}
`
tmpdir, pkgs := setupPackages(t, code)
defer teardownPackage(t, tmpdir)
errs := run(pkgs)
if !assert.Len(t, errs, 1) {
t.FailNow()
}
assert.Equal(t, "T", errs[0].(notFoundError).Decl.TypeName)
}
// TestNotInterface tests that we report an error if one tries to declare a sum
// type that doesn't correspond to an interface.
func TestNotInterface(t *testing.T) {
code := `
package main
//go-sumtype:decl T
type T struct {}
func main() {}
`
tmpdir, pkgs := setupPackages(t, code)
defer teardownPackage(t, tmpdir)
errs := run(pkgs)
if !assert.Len(t, errs, 1) {
t.FailNow()
}
assert.Equal(t, "T", errs[0].(notInterfaceError).Decl.TypeName)
}
func missingNames(t *testing.T, err error) []string {
if !assert.IsType(t, inexhaustiveError{}, err) {
t.FailNow()
}
return err.(inexhaustiveError).Names()
}