mirror of
https://github.com/golang/go
synced 2024-11-05 23:36:12 -07:00
912958979a
In https://golang.org/cl/225157, I removed the redundant T and Context parameters from the regtest func signature in an effort to reduce confusion. In hindsight, removing the testing.T did not reduce confusion, because there is a T in the test signature anyway (and now it's the wrong T!). Change-Id: I2e84009e9cb33cd51055012cfef9fe4987e1b9bd Reviewed-on: https://go-review.googlesource.com/c/tools/+/228229 Run-TryBot: Robert Findley <rfindley@google.com> Reviewed-by: Paul Jolly <paul@myitcv.org.uk> TryBot-Result: Gobot Gobot <gobot@golang.org>
44 lines
944 B
Go
44 lines
944 B
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 (
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
|
)
|
|
|
|
const simpleProgram = `
|
|
-- go.mod --
|
|
module mod.com
|
|
|
|
go 1.12
|
|
-- main.go --
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("Hello World.")
|
|
}`
|
|
|
|
func TestHoverSerialization(t *testing.T) {
|
|
runner.Run(t, simpleProgram, func(t *testing.T, env *Env) {
|
|
// Hover on an empty line.
|
|
params := protocol.HoverParams{}
|
|
params.TextDocument.URI = env.W.URI("main.go")
|
|
params.Position.Line = 3
|
|
params.Position.Character = 0
|
|
var resp json.RawMessage
|
|
if err := protocol.Call(env.Ctx, env.Conn, "textDocument/hover", ¶ms, &resp); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if len(string(resp)) > 0 {
|
|
t.Errorf("got non-empty response for empty hover: %v", string(resp))
|
|
}
|
|
})
|
|
}
|