-
Notifications
You must be signed in to change notification settings - Fork 20
/
reporting_test.go
440 lines (425 loc) · 13.5 KB
/
reporting_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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
// Copyright 2020-2024 Buf Technologies, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package protocompile
import (
"context"
"errors"
"fmt"
"reflect"
"sort"
"strings"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/bufbuild/protocompile/ast"
"github.com/bufbuild/protocompile/reporter"
)
func TestErrorReporting(t *testing.T) {
t.Parallel()
tooManyErrors := errors.New("too many errors")
limitedErrReporter := func(limit int, count *int) reporter.ErrorReporter {
return func(err reporter.ErrorWithPos) error {
fmt.Printf("* error reported: %v\n", err)
*count++
if *count > limit {
return tooManyErrors
}
return nil
}
}
trackingReporter := func(errs *[]reporter.ErrorWithPos, count *int) reporter.ErrorReporter {
return func(err reporter.ErrorWithPos) error {
fmt.Printf("* error reported: %v\n", err)
*count++
*errs = append(*errs, err)
return nil
}
}
fail := errors.New("failure")
failFastReporter := func(count *int) reporter.ErrorReporter {
return func(err reporter.ErrorWithPos) error {
fmt.Printf("* error reported: %v\n", err)
*count++
return fail
}
}
testCases := []struct {
fileNames []string
files map[string]string
expectedErrs [][]string
}{
{
// multiple syntax errors
fileNames: []string{"test.proto"},
files: map[string]string{
"test.proto": `
syntax = "proto";
package foo
enum State { A = 0; B = 1; C; D }
message Foo {
foo = 1;
}
`,
},
expectedErrs: [][]string{
{
"test.proto:5:41: syntax error: expecting ';'",
"test.proto:5:69: syntax error: unexpected ';', expecting '='",
"test.proto:7:53: syntax error: unexpected '='"},
},
},
{
// multiple validation errors
fileNames: []string{"test.proto"},
files: map[string]string{
"test.proto": `
syntax = "proto3";
message Foo {
string foo = 0;
}
enum State { C = 0; }
enum Bar {
BAZ = 1;
BUZZ = 1;
}
`,
},
expectedErrs: [][]string{
{
"test.proto:4:62: tag number 0 must be greater than zero",
"test.proto:8:55: enum Bar: proto3 requires that first value of enum have numeric value zero",
"test.proto:9:56: enum Bar: values BAZ and BUZZ both have the same numeric value 1; use allow_alias option if intentional",
},
},
},
{
// multiple link errors
fileNames: []string{"test.proto"},
files: map[string]string{
"test.proto": `
syntax = "proto3";
message Foo {
string foo = 1;
}
enum Bar {
BAZ = 0;
BAZ = 2;
}
service Bar {
rpc Foobar (Foo) returns (Foo);
rpc Foobar (Frob) returns (Nitz);
}
`,
},
expectedErrs: [][]string{
{
"test.proto:8:49: symbol \"BAZ\" already defined at test.proto:7:49; protobuf uses C++ scoping rules for enum values, so they exist in the scope enclosing the enum",
"test.proto:10:49: symbol \"Bar\" already defined at test.proto:6:46",
"test.proto:12:53: symbol \"Bar.Foobar\" already defined at test.proto:11:53",
},
},
},
{
// syntax errors across multiple files
fileNames: []string{"test1.proto", "test2.proto"},
files: map[string]string{
"test1.proto": `
syntax = "proto3";
import "test2.proto";
message Foo {
string foo = -1;
}
service Bar {
rpc Foo (Foo);
}
`,
"test2.proto": `
syntax = "proto3";
message Baz {
required string foo = 1;
}
service Service {
Foo; Bar; Baz;
}
`,
},
expectedErrs: [][]string{
{
"*", // errors can be in different order than below (due to concurrency)
"test1.proto:5:62: syntax error: unexpected '-', expecting int literal",
"test1.proto:8:62: syntax error: unexpected ';', expecting \"returns\"",
"test2.proto:7:49: syntax error: unexpected identifier, expecting \"option\" or \"rpc\" or '}'",
},
},
},
{
// link errors across multiple files
fileNames: []string{"test1.proto", "test2.proto"},
files: map[string]string{
"test1.proto": `
syntax = "proto3";
message Foo {
string foo = 1;
}
service Bar {
rpc Frob (Empty) returns (Nitz);
}
`,
"test2.proto": `
syntax = "proto3";
message Empty {}
enum Bar {
BAZ = 0;
}
service Foo {
rpc DoSomething (Empty) returns (Empty);
}
`,
},
// because files are compiled concurrently, the order of processing can
// impact the actual errors reported
expectedErrs: [][]string{
{
// if test2.proto processed first
"test1.proto:3:49: symbol \"Foo\" already defined at test2.proto:7:49",
"test1.proto:6:49: symbol \"Bar\" already defined at test2.proto:4:46",
},
{
"*", // errors can be in different order than below (due to concurrency)
"test1.proto:7:59: method Bar.Frob: unknown request type Empty",
"test1.proto:7:75: method Bar.Frob: unknown response type Nitz",
"test2.proto:4:46: symbol \"Bar\" already defined at test1.proto:6:49",
"test2.proto:7:49: symbol \"Foo\" already defined at test1.proto:3:49",
},
},
},
}
ctx := context.Background()
for i, tc := range testCases {
fmt.Printf("---- case #%d: tracking ----\n", i+1)
compiler := Compiler{
Resolver: &SourceResolver{Accessor: SourceAccessorFromMap(tc.files)},
}
var reported []reporter.ErrorWithPos
count := 0
compiler.Reporter = reporter.NewReporter(trackingReporter(&reported, &count), nil)
_, err := compiler.Compile(ctx, tc.fileNames...)
reportedMsgs := make([]string, len(reported))
for j := range reported {
reportedMsgs[j] = reported[j].Error()
}
t.Logf("case #%d: got %d errors:\n\t%s", i+1, len(reported), strings.Join(reportedMsgs, "\n\t"))
// returns sentinel, but all actual errors in reported
assert.Equal(t, reporter.ErrInvalidSource, err, "case #%d: parse should have failed with invalid source error", i+1)
var match []string
for _, errs := range tc.expectedErrs {
actualErrs := reportedMsgs
if errs[0] == "*" {
// errors could be reported in any order due to goroutine execution
// interleaving, so compare sorted
errs = errs[1:]
actualErrs = make([]string, len(reportedMsgs))
copy(actualErrs, reportedMsgs)
sort.Strings(actualErrs)
}
if reflect.DeepEqual(errs, actualErrs) {
match = errs
break
}
}
assert.NotNil(t, match, "case #%d: reported errors do not match expected", i+1)
fmt.Printf("---- case #%d: fail fast ----\n", i+1)
count = 0
compiler.Reporter = reporter.NewReporter(failFastReporter(&count), nil)
_, err = compiler.Compile(ctx, tc.fileNames...)
assert.Equal(t, fail, err, "case #%d: parse should have failed fast", i+1)
assert.Equal(t, 1, count, "case #%d: parse should have called reporter only once", i+1)
fmt.Printf("---- case #%d: error limit ----\n", i+1)
count = 0
compiler.Reporter = reporter.NewReporter(limitedErrReporter(2, &count), nil)
_, err = compiler.Compile(ctx, tc.fileNames...)
if count > 2 {
assert.Equal(t, tooManyErrors, err, "case #%d: parse should have failed with too many errors", i+1)
assert.Equal(t, 3, count, "case #%d: parse should have called reporter 3 times", i+1)
// this should only be possible if one of the errors scenarios expects >2 errors
maxErrs := 0
for _, errs := range tc.expectedErrs {
if len(errs) > maxErrs {
maxErrs = len(errs)
}
}
assert.Greater(t, maxErrs, 2, "case #%d: should not have called reporter so many times (%d), max expected errors only %d", i+1, count, maxErrs)
} else {
// less than threshold means reporter always returned nil,
// so parse returns ErrInvalidSource sentinel
assert.Equal(t, reporter.ErrInvalidSource, err, "case #%d: parse should have failed with invalid source error", i+1)
// the number of errors reported should match some error scenario
okay := false
for _, errs := range tc.expectedErrs {
if len(errs) == count {
okay = true
break
}
}
assert.True(t, okay, "case #%d: parse called reporter unexpected number of times (%d)", i+1, count)
}
}
}
func TestWarningReporting(t *testing.T) {
t.Parallel()
type msg struct {
pos ast.SourcePos
text string
}
testCases := []struct {
name string
sources map[string]string
expectedNotices []string
}{
{
name: "syntax proto2",
sources: map[string]string{
"test.proto": `syntax = "proto2"; message Foo {}`,
},
},
{
name: "syntax proto3",
sources: map[string]string{
"test.proto": `syntax = "proto3"; message Foo {}`,
},
},
{
name: "no syntax",
sources: map[string]string{
"test.proto": `message Foo {}`,
},
expectedNotices: []string{
"test.proto:1:1: no syntax specified; defaulting to proto2 syntax",
},
},
{
name: "used import",
sources: map[string]string{
"test.proto": `syntax = "proto3"; import "foo.proto"; message Foo { Bar bar = 1; }`,
"foo.proto": `syntax = "proto3"; message Bar { string name = 1; }`,
},
},
{
name: "used public import",
sources: map[string]string{
"test.proto": `syntax = "proto3"; import "foo.proto"; message Foo { Bar bar = 1; }`,
// we're only asking to compile test.proto, so we won't report unused import for baz.proto
"foo.proto": `syntax = "proto3"; import public "bar.proto"; import "baz.proto";`,
"bar.proto": `syntax = "proto3"; message Bar { string name = 1; }`,
"baz.proto": `syntax = "proto3"; message Baz { }`,
},
},
{
name: "used nested public import",
sources: map[string]string{
"test.proto": `syntax = "proto3"; import "foo.proto"; message Foo { Bar bar = 1; }`,
"foo.proto": `syntax = "proto3"; import public "baz.proto";`,
"baz.proto": `syntax = "proto3"; import public "bar.proto";`,
"bar.proto": `syntax = "proto3"; message Bar { string name = 1; }`,
},
},
{
name: "unused import",
sources: map[string]string{
"test.proto": `syntax = "proto3"; import "foo.proto"; message Foo { string name = 1; }`,
"foo.proto": `syntax = "proto3"; message Bar { string name = 1; }`,
},
expectedNotices: []string{
`test.proto:1:20: import "foo.proto" not used`,
},
},
{
name: "multiple unused imports",
sources: map[string]string{
"test.proto": `syntax = "proto3"; import "foo.proto"; import "bar.proto"; import "baz.proto"; message Test { Bar bar = 1; }`,
"foo.proto": `syntax = "proto3"; message Foo {};`,
"bar.proto": `syntax = "proto3"; message Bar {};`,
"baz.proto": `syntax = "proto3"; message Baz {};`,
},
expectedNotices: []string{
`test.proto:1:20: import "foo.proto" not used`,
`test.proto:1:60: import "baz.proto" not used`,
},
},
{
name: "unused public import is not reported",
sources: map[string]string{
"test.proto": `syntax = "proto3"; import public "foo.proto"; message Foo { }`,
"foo.proto": `syntax = "proto3"; message Bar { string name = 1; }`,
},
},
{
name: "unused descriptor.proto import",
sources: map[string]string{
"test.proto": `syntax = "proto3"; import "google/protobuf/descriptor.proto"; message Foo { }`,
},
expectedNotices: []string{
`test.proto:1:20: import "google/protobuf/descriptor.proto" not used`,
},
},
{
name: "explicitly used descriptor.proto import",
sources: map[string]string{
"test.proto": `syntax = "proto3"; import "google/protobuf/descriptor.proto"; extend google.protobuf.MessageOptions { string foobar = 33333; }`,
},
},
{
// having options implicitly uses decriptor.proto
name: "implicitly used descriptor.proto import",
sources: map[string]string{
"test.proto": `syntax = "proto3"; import "google/protobuf/descriptor.proto"; message Foo { option deprecated = true; }`,
},
},
{
// makes sure we can use a given descriptor.proto to override non-custom options
name: "implicitly used descriptor.proto import with new option",
sources: map[string]string{
"test.proto": `syntax = "proto3"; import "google/protobuf/descriptor.proto"; message Foo { option foobar = 123; }`,
"google/protobuf/descriptor.proto": `syntax = "proto2"; package google.protobuf; message MessageOptions { optional fixed32 foobar = 99; }`,
},
},
}
ctx := context.Background()
for _, testCase := range testCases {
testCase := testCase
t.Run(testCase.name, func(t *testing.T) {
t.Parallel()
var msgs []msg
rep := func(warn reporter.ErrorWithPos) {
msgs = append(msgs, msg{
pos: warn.GetPosition(), text: warn.Unwrap().Error(),
})
}
compiler := Compiler{
Resolver: WithStandardImports(&SourceResolver{Accessor: SourceAccessorFromMap(testCase.sources)}),
Reporter: reporter.NewReporter(nil, rep),
}
_, err := compiler.Compile(ctx, "test.proto")
require.NoError(t, err)
var actualNotices []string
if len(msgs) > 0 {
actualNotices = make([]string, len(msgs))
for j, msg := range msgs {
actualNotices[j] = fmt.Sprintf("%s: %s", msg.pos, msg.text)
}
}
assert.Equal(t, testCase.expectedNotices, actualNotices)
})
}
}