blob: 3ae34e9e8a9c64a601cce35d433c97cc3d0f1348 [file]
// Copyright 2020 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.
package fillstruct_test
import (
"go/token"
"testing"
"golang.org/x/tools/go/analysis"
"golang.org/x/tools/go/analysis/analysistest"
"golang.org/x/tools/gopls/internal/analysis/fillstruct"
"golang.org/x/tools/internal/testenv"
)
// analyzer allows us to test the fillstruct code action using the analysistest
// harness. (fillstruct used to be a gopls analyzer.)
var analyzer = &analysis.Analyzer{
Name: "fillstruct",
Doc: "test only",
Run: func(pass *analysis.Pass) (any, error) {
for _, f := range pass.Files {
for _, diag := range fillstruct.Diagnose(f, token.NoPos, token.NoPos, pass.Pkg, pass.TypesInfo) {
pass.Report(diag)
}
}
return nil, nil
},
URL: "https://pkg.go.dev/golang.org/x/tools/gopls/internal/analysis/fillstruct",
RunDespiteErrors: true,
}
func Test(t *testing.T) {
testdata := analysistest.TestData()
analysistest.Run(t, testdata, analyzer, "a", "typeparams")
}
func TestIssue78553(t *testing.T) {
testenv.NeedsGo1Point(t, 27)
t.Skip("Skipping as this feature is not yet implemented. Ref: go.dev/issues/78553")
testdata := analysistest.TestData()
analysistest.Run(t, testdata, analyzer, "issue78553")
}