-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparser_test.go
378 lines (338 loc) · 9.56 KB
/
parser_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
//go:build generator
package main
import (
"go/types"
"testing"
. "github.com/onsi/gomega"
"github.com/nginx/telemetry-exporter/cmd/generator/tests"
)
type DataUnexportedBasicTypeField struct {
clusterID string //nolint:unused
}
type DataUnexportedSliceField struct {
someStrings []string //nolint:unused
}
type DataUnexportedEmbeddedStructField struct {
someStruct //nolint:unused
}
//nolint:unused
type someStruct struct{}
type SomeStruct struct{}
type DataNotEmbeddedStructField struct {
SomeField SomeStruct
}
type SomeInterface interface{}
type DataEmbeddedInterface struct {
SomeInterface
}
type IntType int64
type UnsupportedEmbeddedType struct {
IntType
}
type EmbeddedBasicType struct {
int64 //nolint:unused
}
type UnsupportedBasicType struct {
Counter int
}
type MissingBasicFieldDocString struct {
Counter int64 // doc string above is missing
}
type MissingSliceFieldDocString struct {
Counters []int64 // doc string above is missing
}
type EmptyFieldDocString struct {
/*
*/
Counter int64 // empty doc string
}
type UnsupportedSliceType struct {
Structs []SomeStruct
}
type UnsupportedBasicTypeSlice struct {
Counters []int
}
type DuplicateFields struct {
// Counter is a counter.
Counter int64
EmbeddedDuplicateFields
}
type EmbeddedDuplicateFields struct {
// Counter is a counter.
Counter int64
}
func TestParseErrors(t *testing.T) {
t.Parallel()
tests := []struct {
name string
expectedErrMsg string
typeName string
}{
{
name: "not a struct",
expectedErrMsg: "expected struct, got interface{}",
typeName: "SomeInterface",
},
{
name: "unexported field",
expectedErrMsg: "field clusterID: must be exported",
typeName: "DataUnexportedBasicTypeField",
},
{
name: "unexported slice field",
expectedErrMsg: "field someStrings: must be exported",
typeName: "DataUnexportedSliceField",
},
{
name: "unexported embedded struct",
expectedErrMsg: "field someStruct: must be exported",
typeName: "DataUnexportedEmbeddedStructField",
},
{
name: "not embedded struct",
expectedErrMsg: "field SomeField: structs must be embedded",
typeName: "DataNotEmbeddedStructField",
},
{
name: "embedded interface",
expectedErrMsg: "field SomeInterface: must be struct, got interface{}",
typeName: "DataEmbeddedInterface",
},
{
name: "unsupported embedded type",
expectedErrMsg: "field IntType: must be struct, got int",
typeName: "UnsupportedEmbeddedType",
},
{
name: "embedded basic type",
expectedErrMsg: "field int64: embedded basic types are not allowed",
typeName: "EmbeddedBasicType",
},
{
name: "unsupported basic type",
expectedErrMsg: "field Counter: type of field must be one of bool, float64, int64, string, got int",
typeName: "UnsupportedBasicType",
},
{
name: "missing field doc string",
expectedErrMsg: "field Counter: doc string not found",
typeName: "MissingBasicFieldDocString",
},
{
name: "missing slice field doc string",
expectedErrMsg: "field Counters: doc string not found",
typeName: "MissingSliceFieldDocString",
},
{
name: "empty field doc string",
expectedErrMsg: "field Counter: doc string not found",
typeName: "EmptyFieldDocString",
},
{
name: "unsupported slice type",
expectedErrMsg: "field Structs: type of field must be one of bool, float64, int64, string, " +
"got []github.com/nginx/telemetry-exporter/cmd/generator.SomeStruct",
typeName: "UnsupportedSliceType",
},
{
name: "unsupported basic type slice",
expectedErrMsg: "field Counters: type of field must be one of bool, float64, int64, string, got []int",
typeName: "UnsupportedBasicTypeSlice",
},
{
name: "duplicate fields",
expectedErrMsg: "field Counter: already exists in " +
"github.com/nginx/telemetry-exporter/cmd/generator.DuplicateFields",
typeName: "DuplicateFields",
},
{
name: "type not found",
expectedErrMsg: "type NotFoundType not found",
typeName: "NotFoundType",
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
t.Parallel()
g := NewGomegaWithT(t)
cfg := parsingConfig{
pkgName: "main",
typeName: test.typeName,
loadTests: true,
buildFlags: []string{"-tags=generator"},
}
_, err := parse(cfg)
g.Expect(err).To(MatchError(ContainSubstring(test.expectedErrMsg)))
})
}
}
func TestParseLoadingFailures(t *testing.T) {
t.Parallel()
g := NewGomegaWithT(t)
cfg := parsingConfig{
pkgName: "notfound",
typeName: "Data",
loadTests: true,
buildFlags: []string{"-tags=generator"},
}
_, err := parse(cfg)
g.Expect(err).To(MatchError(ContainSubstring("package notfound not found")))
}
func TestParseSuccess(t *testing.T) {
t.Parallel()
g := NewGomegaWithT(t)
cfg := parsingConfig{
pkgName: "tests",
typeName: "Data",
loadPattern: "github.com/nginx/telemetry-exporter/cmd/generator/tests",
buildFlags: []string{"-tags=generator"},
}
_ = tests.Data{} // depends on the type being defined
expectedEmbeddedStructFields := []field{
{
docString: "AnotherSomeString is a string field.",
name: "AnotherSomeString",
fieldType: types.String,
slice: false,
embeddedStruct: false,
embeddedStructFields: nil,
},
{
docString: "AnotherSomeInt is an int64 field.",
name: "AnotherSomeInt",
fieldType: types.Int64,
slice: false,
embeddedStruct: false,
embeddedStructFields: nil,
},
{
docString: "AnotherSomeFloat is a float64 field.",
name: "AnotherSomeFloat",
fieldType: types.Float64,
slice: false,
embeddedStruct: false,
embeddedStructFields: nil,
},
{
docString: "AnotherSomeBool is a bool field.",
name: "AnotherSomeBool",
fieldType: types.Bool,
slice: false,
embeddedStruct: false,
embeddedStructFields: nil,
},
{
docString: "AnotherSomeStrings is a slice of strings.",
name: "AnotherSomeStrings",
fieldType: types.String,
slice: true,
embeddedStruct: false,
embeddedStructFields: nil,
},
{
docString: "AnotherSomeInts is a slice of int64.",
name: "AnotherSomeInts",
fieldType: types.Int64,
slice: true,
embeddedStruct: false,
embeddedStructFields: nil,
},
{
docString: "AnotherSomeFloats is a slice of float64.",
name: "AnotherSomeFloats",
fieldType: types.Float64,
slice: true,
embeddedStruct: false,
embeddedStructFields: nil,
},
{
docString: "AnotherSomeBools is a slice of bool.",
name: "AnotherSomeBools",
fieldType: types.Bool,
slice: true,
embeddedStruct: false,
embeddedStructFields: nil,
},
}
expectedFields := []field{
{
docString: "SomeString is a string field.",
name: "SomeString",
fieldType: types.String,
slice: false,
embeddedStruct: false,
embeddedStructFields: nil,
},
{
docString: "SomeInt is an int64 field.",
name: "SomeInt",
fieldType: types.Int64,
slice: false,
embeddedStruct: false,
embeddedStructFields: nil,
},
{
docString: "SomeFloat is a float64 field.\nMore comments.",
name: "SomeFloat",
fieldType: types.Float64,
slice: false,
embeddedStruct: false,
embeddedStructFields: nil,
},
{
docString: "SomeBool is a bool field.",
name: "SomeBool",
fieldType: types.Bool,
slice: false,
embeddedStruct: false,
embeddedStructFields: nil,
},
{
docString: "SomeStrings is a slice of strings.",
name: "SomeStrings",
fieldType: types.String,
slice: true,
embeddedStruct: false,
embeddedStructFields: nil,
},
{
docString: "SomeInts is a slice of int64.",
name: "SomeInts",
fieldType: types.Int64,
slice: true,
embeddedStruct: false,
embeddedStructFields: nil,
},
{
docString: "SomeFloats is a slice of float64.",
name: "SomeFloats",
fieldType: types.Float64,
slice: true,
embeddedStruct: false,
embeddedStructFields: nil,
},
{
docString: "SomeBools is a slice of bool.",
name: "SomeBools",
fieldType: types.Bool,
slice: true,
embeddedStruct: false,
embeddedStructFields: nil,
},
{
docString: "",
name: "AnotherData",
fieldType: 0,
slice: false,
embeddedStruct: true,
embeddedStructFields: expectedEmbeddedStructFields,
},
}
expectedResult := parsingResult{
packagePath: "github.com/nginx/telemetry-exporter/cmd/generator/tests",
fields: expectedFields,
}
result, err := parse(cfg)
g.Expect(err).ToNot(HaveOccurred())
g.Expect(expectedResult).To(Equal(result))
}