mirror of
https://github.com/golang/go
synced 2024-11-05 17:16:10 -07:00
cb8d9cd245
Some code lenses may be undesirable for certain users or editors -- for example a code lens that runs tests, when VSCode already supports this functionality outside of the LSP. To handle such situations, support configuring code lenses via a new 'codelens' gopls option. Add support for code lens in regtests, and use this to test the new configuration. To achieve this, thread through a new 'EditorConfig' type that configures the fake editor's LSP session. It made sense to move the test Env overlay onto this config object as well. While looking at them, document some types in source.Options. Change-Id: I961077422a273829c5cbd83c3b87fae29f77eeda Reviewed-on: https://go-review.googlesource.com/c/tools/+/232680 Run-TryBot: Robert Findley <rfindley@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
60 lines
1.6 KiB
Go
60 lines
1.6 KiB
Go
// 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 regtest
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
const sharedProgram = `
|
|
-- go.mod --
|
|
module mod
|
|
|
|
go 1.12
|
|
-- main.go --
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("Hello World.")
|
|
}`
|
|
|
|
func runShared(t *testing.T, program string, testFunc func(env1 *Env, env2 *Env)) {
|
|
// Only run these tests in forwarded modes.
|
|
modes := runner.DefaultModes & (Forwarded | SeparateProcess)
|
|
runner.Run(t, sharedProgram, func(t *testing.T, env1 *Env) {
|
|
// Create a second test session connected to the same workspace and server
|
|
// as the first.
|
|
env2 := NewEnv(env1.Ctx, t, env1.Sandbox, env1.Server, env1.Editor.Config)
|
|
testFunc(env1, env2)
|
|
}, WithModes(modes))
|
|
}
|
|
|
|
func TestSimultaneousEdits(t *testing.T) {
|
|
runShared(t, exampleProgram, func(env1 *Env, env2 *Env) {
|
|
// In editor #1, break fmt.Println as before.
|
|
env1.OpenFile("main.go")
|
|
env1.RegexpReplace("main.go", "Printl(n)", "")
|
|
// In editor #2 remove the closing brace.
|
|
env2.OpenFile("main.go")
|
|
env2.RegexpReplace("main.go", "\\)\n(})", "")
|
|
|
|
// Now check that we got different diagnostics in each environment.
|
|
env1.Await(env1.DiagnosticAtRegexp("main.go", "Printl"))
|
|
env2.Await(env2.DiagnosticAtRegexp("main.go", "$"))
|
|
})
|
|
}
|
|
|
|
func TestShutdown(t *testing.T) {
|
|
runShared(t, sharedProgram, func(env1 *Env, env2 *Env) {
|
|
env1.CloseEditor()
|
|
// Now make an edit in editor #2 to trigger diagnostics.
|
|
env2.OpenFile("main.go")
|
|
env2.RegexpReplace("main.go", "\\)\n(})", "")
|
|
env2.Await(env2.DiagnosticAtRegexp("main.go", "$"))
|
|
})
|
|
}
|