2020-03-04 11:29:23 -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 (
|
|
|
|
"testing"
|
|
|
|
|
2020-05-08 11:42:14 -06:00
|
|
|
"golang.org/x/tools/internal/lsp/fake"
|
2020-03-04 11:29:23 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
const simpleProgram = `
|
|
|
|
-- go.mod --
|
2020-04-01 15:14:17 -06:00
|
|
|
module mod.com
|
2020-03-04 11:29:23 -07:00
|
|
|
|
|
|
|
go 1.12
|
|
|
|
-- main.go --
|
|
|
|
package main
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
fmt.Println("Hello World.")
|
|
|
|
}`
|
|
|
|
|
|
|
|
func TestHoverSerialization(t *testing.T) {
|
2020-04-14 11:40:37 -06:00
|
|
|
runner.Run(t, simpleProgram, func(t *testing.T, env *Env) {
|
2020-03-04 11:29:23 -07:00
|
|
|
// Hover on an empty line.
|
2020-05-08 11:42:14 -06:00
|
|
|
env.OpenFile("main.go")
|
|
|
|
content, pos := env.Hover("main.go", fake.Pos{Line: 3, Column: 0})
|
|
|
|
if content != nil {
|
|
|
|
t.Errorf("got non-empty response for empty hover: %v: %v", pos, *content)
|
2020-03-04 11:29:23 -07:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|