2019-09-18 21:51:24 -06:00
|
|
|
// Copyright 2019 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 cmdtest contains the test suite for the command line behavior of gopls.
|
|
|
|
package cmdtest
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"golang.org/x/tools/go/packages/packagestest"
|
2019-09-26 11:56:23 -06:00
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
|
|
|
"golang.org/x/tools/internal/lsp/source"
|
2019-09-18 21:51:24 -06:00
|
|
|
"golang.org/x/tools/internal/lsp/tests"
|
2019-09-26 11:56:23 -06:00
|
|
|
"golang.org/x/tools/internal/span"
|
2019-09-18 21:51:24 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
type runner struct {
|
|
|
|
exporter packagestest.Exporter
|
|
|
|
data *tests.Data
|
|
|
|
ctx context.Context
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRunner(exporter packagestest.Exporter, data *tests.Data, ctx context.Context) tests.Tests {
|
|
|
|
return &runner{
|
|
|
|
exporter: exporter,
|
|
|
|
data: data,
|
|
|
|
ctx: ctx,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) Completion(t *testing.T, src span.Span, test tests.Completion, items tests.CompletionItems) {
|
2019-09-17 09:10:48 -06:00
|
|
|
//TODO: add command line completions tests when it works
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) CompletionSnippet(t *testing.T, src span.Span, expected tests.CompletionSnippet, placeholders bool, items tests.CompletionItems) {
|
2019-09-17 09:10:48 -06:00
|
|
|
//TODO: add command line completions tests when it works
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) UnimportedCompletion(t *testing.T, src span.Span, test tests.Completion, items tests.CompletionItems) {
|
2019-09-17 09:10:48 -06:00
|
|
|
//TODO: add command line completions tests when it works
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) DeepCompletion(t *testing.T, src span.Span, test tests.Completion, items tests.CompletionItems) {
|
2019-09-17 09:10:48 -06:00
|
|
|
//TODO: add command line completions tests when it works
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) FuzzyCompletion(t *testing.T, src span.Span, test tests.Completion, items tests.CompletionItems) {
|
2019-09-17 09:10:48 -06:00
|
|
|
//TODO: add command line completions tests when it works
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) CaseSensitiveCompletion(t *testing.T, src span.Span, test tests.Completion, items tests.CompletionItems) {
|
2019-09-26 05:59:06 -06:00
|
|
|
//TODO: add command line completions tests when it works
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) RankCompletion(t *testing.T, src span.Span, test tests.Completion, items tests.CompletionItems) {
|
2019-09-18 21:51:24 -06:00
|
|
|
//TODO: add command line completions tests when it works
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) FoldingRange(t *testing.T, spn span.Span) {
|
2019-09-18 21:51:24 -06:00
|
|
|
//TODO: add command line folding range tests when it works
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) Highlight(t *testing.T, name string, locations []span.Span) {
|
2019-09-18 21:51:24 -06:00
|
|
|
//TODO: add command line highlight tests when it works
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) Reference(t *testing.T, src span.Span, itemList []span.Span) {
|
2019-09-18 21:51:24 -06:00
|
|
|
//TODO: add command line references tests when it works
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) PrepareRename(t *testing.T, src span.Span, want *source.PrepareItem) {
|
2019-09-18 21:51:24 -06:00
|
|
|
//TODO: add command line prepare rename tests when it works
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) Symbol(t *testing.T, uri span.URI, expectedSymbols []protocol.DocumentSymbol) {
|
2019-09-18 21:51:24 -06:00
|
|
|
//TODO: add command line symbol tests when it works
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) SignatureHelp(t *testing.T, spn span.Span, expectedSignature *source.SignatureInformation) {
|
2019-09-18 21:51:24 -06:00
|
|
|
//TODO: add command line signature tests when it works
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) Link(t *testing.T, uri span.URI, wantLinks []tests.Link) {
|
2019-09-18 21:51:24 -06:00
|
|
|
//TODO: add command line link tests when it works
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) Import(t *testing.T, spn span.Span) {
|
2019-09-18 21:51:24 -06:00
|
|
|
//TODO: add command line imports tests when it works
|
|
|
|
}
|
|
|
|
|
2019-09-26 11:56:23 -06:00
|
|
|
func (r *runner) SuggestedFix(t *testing.T, spn span.Span) {
|
2019-09-18 21:51:24 -06:00
|
|
|
//TODO: add suggested fix tests when it works
|
|
|
|
}
|
|
|
|
|
|
|
|
func CaptureStdOut(t testing.TB, f func()) string {
|
|
|
|
r, out, err := os.Pipe()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
old := os.Stdout
|
|
|
|
defer func() {
|
|
|
|
os.Stdout = old
|
|
|
|
out.Close()
|
|
|
|
r.Close()
|
|
|
|
}()
|
|
|
|
os.Stdout = out
|
|
|
|
f()
|
|
|
|
out.Close()
|
|
|
|
data, err := ioutil.ReadAll(r)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
return string(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
// normalizePaths replaces all paths present in s with just the fragment portion
|
|
|
|
// this is used to make golden files not depend on the temporary paths of the files
|
|
|
|
func normalizePaths(data *tests.Data, s string) string {
|
|
|
|
type entry struct {
|
|
|
|
path string
|
|
|
|
index int
|
|
|
|
fragment string
|
|
|
|
}
|
|
|
|
match := make([]entry, 0, len(data.Exported.Modules))
|
|
|
|
// collect the initial state of all the matchers
|
|
|
|
for _, m := range data.Exported.Modules {
|
|
|
|
for fragment := range m.Files {
|
|
|
|
filename := data.Exported.File(m.Name, fragment)
|
|
|
|
index := strings.Index(s, filename)
|
|
|
|
if index >= 0 {
|
|
|
|
match = append(match, entry{filename, index, fragment})
|
|
|
|
}
|
|
|
|
if slash := filepath.ToSlash(filename); slash != filename {
|
|
|
|
index := strings.Index(s, slash)
|
|
|
|
if index >= 0 {
|
|
|
|
match = append(match, entry{slash, index, fragment})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
quoted := strconv.Quote(filename)
|
|
|
|
if escaped := quoted[1 : len(quoted)-1]; escaped != filename {
|
|
|
|
index := strings.Index(s, escaped)
|
|
|
|
if index >= 0 {
|
|
|
|
match = append(match, entry{escaped, index, fragment})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// result should be the same or shorter than the input
|
|
|
|
buf := bytes.NewBuffer(make([]byte, 0, len(s)))
|
|
|
|
last := 0
|
|
|
|
for {
|
|
|
|
// find the nearest path match to the start of the buffer
|
|
|
|
next := -1
|
|
|
|
nearest := len(s)
|
|
|
|
for i, c := range match {
|
|
|
|
if c.index >= 0 && nearest > c.index {
|
|
|
|
nearest = c.index
|
|
|
|
next = i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// if there are no matches, we copy the rest of the string and are done
|
|
|
|
if next < 0 {
|
|
|
|
buf.WriteString(s[last:])
|
|
|
|
return buf.String()
|
|
|
|
}
|
|
|
|
// we have a match
|
|
|
|
n := &match[next]
|
|
|
|
// copy up to the start of the match
|
|
|
|
buf.WriteString(s[last:n.index])
|
|
|
|
// skip over the filename
|
|
|
|
last = n.index + len(n.path)
|
|
|
|
// add in the fragment instead
|
|
|
|
buf.WriteString(n.fragment)
|
|
|
|
// see what the next match for this path is
|
|
|
|
n.index = strings.Index(s[last:], n.path)
|
|
|
|
if n.index >= 0 {
|
|
|
|
n.index += last
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|