2019-05-17 11:45:50 -06:00
|
|
|
// Copyright 2019 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2019-10-20 17:57:03 -06:00
|
|
|
package cache
|
2019-05-17 11:45:50 -06:00
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestParseErrorMessage(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
in string
|
|
|
|
expectedFileName string
|
|
|
|
expectedLine int
|
|
|
|
expectedColumn int
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "from go list output",
|
|
|
|
in: "\nattributes.go:13:1: expected 'package', found 'type'",
|
|
|
|
expectedFileName: "attributes.go",
|
|
|
|
expectedLine: 13,
|
|
|
|
expectedColumn: 1,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
2019-10-20 17:57:03 -06:00
|
|
|
spn := parseGoListError(tt.in)
|
2019-06-06 11:51:00 -06:00
|
|
|
fn := spn.URI().Filename()
|
2019-05-17 11:45:50 -06:00
|
|
|
|
|
|
|
if !strings.HasSuffix(fn, tt.expectedFileName) {
|
|
|
|
t.Errorf("expected filename with suffix %v but got %v", tt.expectedFileName, fn)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !spn.HasPosition() {
|
|
|
|
t.Fatalf("expected span to have position")
|
|
|
|
}
|
|
|
|
|
|
|
|
pos := spn.Start()
|
|
|
|
if pos.Line() != tt.expectedLine {
|
|
|
|
t.Errorf("expected line %v but got %v", tt.expectedLine, pos.Line())
|
|
|
|
}
|
|
|
|
|
|
|
|
if pos.Column() != tt.expectedColumn {
|
|
|
|
t.Errorf("expected line %v but got %v", tt.expectedLine, pos.Line())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|