blob: b0bbcaa030a7b7df9d7ad10eca24fe26289fe7d1 [file] [log] [blame]
// 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 misc
import (
"testing"
. "golang.org/x/tools/gopls/internal/test/integration"
)
// Smoke test that simultaneous editing sessions in the same workspace works.
func TestSimultaneousEdits(t *testing.T) {
const sharedProgram = `
-- go.mod --
module mod
go 1.12
-- main.go --
package main
import "fmt"
func main() {
fmt.Println("Hello World.")
}`
WithOptions(
Modes(DefaultModes()&(Forwarded|SeparateProcess)),
).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 := ConnectGoplsEnv(t, env1.Ctx, env1.Sandbox, env1.Editor.Config(), env1.Server)
env2.Await(InitialWorkspaceLoad)
// 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.AfterChange(Diagnostics(env1.AtRegexp("main.go", "Printl")))
env2.AfterChange(Diagnostics(env2.AtRegexp("main.go", "$")))
// Now close editor #2, and verify that operation in editor #1 is
// unaffected.
if err := env2.Editor.Close(env2.Ctx); err != nil {
t.Errorf("closing second editor: %v", err)
}
env1.RegexpReplace("main.go", "Printl", "Println")
env1.AfterChange(
NoDiagnostics(ForFile("main.go")),
)
})
}