| // Copyright 2022 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 diagnostics |
| |
| import ( |
| "fmt" |
| "testing" |
| |
| "golang.org/x/tools/gopls/internal/cache" |
| "golang.org/x/tools/gopls/internal/protocol" |
| . "golang.org/x/tools/gopls/internal/test/integration" |
| "golang.org/x/tools/internal/testenv" |
| ) |
| |
| // Test for the timeformat analyzer, following golang/vscode-go#2406. |
| // |
| // This test checks that applying the suggested fix from the analyzer resolves |
| // the diagnostic warning. |
| func TestTimeFormatAnalyzer(t *testing.T) { |
| const files = ` |
| -- go.mod -- |
| module mod.com |
| |
| go 1.18 |
| -- main.go -- |
| package main |
| |
| import ( |
| "fmt" |
| "time" |
| ) |
| |
| func main() { |
| now := time.Now() |
| fmt.Println(now.Format("2006-02-01")) |
| }` |
| |
| Run(t, files, func(t *testing.T, env *Env) { |
| env.OpenFile("main.go") |
| |
| var d protocol.PublishDiagnosticsParams |
| env.AfterChange( |
| Diagnostics(env.AtRegexp("main.go", "2006-02-01")), |
| ReadDiagnostics("main.go", &d), |
| ) |
| |
| env.ApplyQuickFixes("main.go", d.Diagnostics) |
| env.AfterChange(NoDiagnostics(ForFile("main.go"))) |
| }) |
| } |
| |
| func TestAnalysisProgressReporting(t *testing.T) { |
| const files = ` |
| -- go.mod -- |
| module mod.com |
| |
| go 1.18 |
| |
| -- main.go -- |
| package main |
| |
| func main() { |
| }` |
| |
| tests := []struct { |
| setting bool |
| want Expectation |
| }{ |
| {true, CompletedWork(cache.AnalysisProgressTitle, 1, true)}, |
| {false, Not(CompletedWork(cache.AnalysisProgressTitle, 1, true))}, |
| } |
| |
| for _, test := range tests { |
| t.Run(fmt.Sprint(test.setting), func(t *testing.T) { |
| WithOptions( |
| Settings{ |
| "reportAnalysisProgressAfter": "0s", |
| "analysisProgressReporting": test.setting, |
| }, |
| ).Run(t, files, func(t *testing.T, env *Env) { |
| env.OpenFile("main.go") |
| env.AfterChange(test.want) |
| }) |
| }) |
| } |
| } |
| |
| // Test the embed directive analyzer. |
| // |
| // There is a fix for missing imports, but it should not trigger for other |
| // kinds of issues reported by the analayzer, here the variable |
| // declaration following the embed directive is wrong. |
| func TestNoSuggestedFixesForEmbedDirectiveDeclaration(t *testing.T) { |
| const generated = ` |
| -- go.mod -- |
| module mod.com |
| |
| go 1.20 |
| |
| -- foo.txt -- |
| FOO |
| |
| -- main.go -- |
| package main |
| |
| import _ "embed" |
| |
| //go:embed foo.txt |
| var foo, Bar string |
| |
| func main() { |
| _ = foo |
| } |
| ` |
| Run(t, generated, func(t *testing.T, env *Env) { |
| env.OpenFile("main.go") |
| var d protocol.PublishDiagnosticsParams |
| env.AfterChange( |
| Diagnostics(env.AtRegexp("main.go", "//go:embed")), |
| ReadDiagnostics("main.go", &d), |
| ) |
| if fixes := env.GetQuickFixes("main.go", d.Diagnostics); len(fixes) != 0 { |
| t.Errorf("got quick fixes %v, wanted none", fixes) |
| } |
| }) |
| } |
| |
| func TestAnalysisFiltering(t *testing.T) { |
| // This test checks that hint level diagnostics are only surfaced for open |
| // files. |
| |
| const src = ` |
| -- go.mod -- |
| module mod.com |
| |
| go 1.20 |
| |
| -- a.go -- |
| package p |
| |
| var X interface{} |
| |
| -- b.go -- |
| package p |
| |
| var Y interface{} |
| ` |
| Run(t, src, func(t *testing.T, env *Env) { |
| env.OpenFile("a.go") |
| env.AfterChange( |
| Diagnostics(ForFile("a.go"), WithMessage("replaced by any")), |
| NoDiagnostics(ForFile("b.go")), |
| ) |
| }) |
| } |
| |
| func TestModernizationConsistency_Issue75000(t *testing.T) { |
| testenv.SkipAfterGoCommand1Point(t, 24) |
| testenv.NeedsGoCommand1Point(t, 22) // uses range-over-int |
| |
| // This test checks that we don't offer modernization suggestions when the |
| // ambient Go version is older than the modernized APIs. |
| // |
| // The code is from golang/go#75000, where gopls suggested to use |
| // `waitgroup.Go` even though the user was on 1.24. |
| |
| const src = ` |
| -- main.go -- |
| package main |
| |
| import ( |
| "fmt" |
| "sync" |
| ) |
| |
| func doit(i int) { |
| fmt.Println("i = ", i) |
| } |
| |
| func main() { |
| var wg sync.WaitGroup |
| for i := range 5 { |
| wg.Add(1) |
| go func() { |
| defer wg.Done() |
| doit(i) |
| }() |
| } |
| |
| wg.Wait() |
| } |
| ` |
| Run(t, src, func(t *testing.T, env *Env) { |
| env.OpenFile("main.go") |
| env.AfterChange(NoDiagnostics()) |
| }) |
| } |