2020-02-09 12:44:03 -07:00
|
|
|
// 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 (
|
|
|
|
"context"
|
|
|
|
"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(ctx context.Context, t *testing.T, env1 *Env, env2 *Env)) {
|
2020-02-10 09:34:13 -07:00
|
|
|
// Only run these tests in forwarded modes.
|
|
|
|
modes := runner.Modes() & (Forwarded | SeparateProcess)
|
|
|
|
runner.RunInMode(modes, t, sharedProgram, func(ctx context.Context, t *testing.T, env1 *Env) {
|
2020-02-09 12:44:03 -07:00
|
|
|
// Create a second test session connected to the same workspace and server
|
|
|
|
// as the first.
|
|
|
|
env2 := NewEnv(ctx, t, env1.W, env1.Server)
|
|
|
|
testFunc(ctx, t, env1, env2)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSimultaneousEdits(t *testing.T) {
|
2020-02-10 09:34:13 -07:00
|
|
|
runShared(t, exampleProgram, func(ctx context.Context, t *testing.T, env1 *Env, env2 *Env) {
|
2020-02-09 12:44:03 -07:00
|
|
|
// In editor #1, break fmt.Println as before.
|
|
|
|
env1.OpenFile("main.go")
|
2020-02-28 12:56:20 -07:00
|
|
|
env1.RegexpReplace("main.go", "Printl(n)", "")
|
2020-02-09 12:44:03 -07:00
|
|
|
// In editor #2 remove the closing brace.
|
|
|
|
env2.OpenFile("main.go")
|
2020-02-28 12:56:20 -07:00
|
|
|
env2.RegexpReplace("main.go", "\\)\n(})", "")
|
2020-02-09 12:44:03 -07:00
|
|
|
|
|
|
|
// Now check that we got different diagnostics in each environment.
|
2020-02-28 12:56:20 -07:00
|
|
|
env1.Await(env1.DiagnosticAtRegexp("main.go", "Printl"))
|
|
|
|
env2.Await(env2.DiagnosticAtRegexp("main.go", "$"))
|
2020-02-09 12:44:03 -07:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestShutdown(t *testing.T) {
|
|
|
|
runShared(t, sharedProgram, func(ctx context.Context, t *testing.T, env1 *Env, env2 *Env) {
|
|
|
|
env1.CloseEditor()
|
|
|
|
// Now make an edit in editor #2 to trigger diagnostics.
|
|
|
|
env2.OpenFile("main.go")
|
2020-02-28 12:56:20 -07:00
|
|
|
env2.RegexpReplace("main.go", "\\)\n(})", "")
|
|
|
|
env2.Await(env2.DiagnosticAtRegexp("main.go", "$"))
|
2020-02-09 12:44:03 -07:00
|
|
|
})
|
|
|
|
}
|