mirror of
https://github.com/golang/go
synced 2024-11-19 04:54:41 -07:00
c20a87c16a
The Workspace type has accumulated too much additional functionality of late: managing the Env, GOPATH, and GOPROXY in addition to the working directory. Additionally, the name 'Workspace' can easily be confused with 'workspaceFolder' in the LSP spec, and they're not quite equivalent. Split off a Proxy type to be responsible for the fake module proxy, and a Workdir type to be responsible for working with the temporary directory. Rename what remains of 'Workspace' to a more appropriate name for such a collection of resources: Sandbox. This is mostly just moving things around, with one significant change in functionality: previously our three temporary directories (workdir, gopath, and goproxy) were in separate toplevel directories below $TMPDIR. Now they are all below a new sandbox temp directory, so that they are correlated in the filesystem and can be cleaned up with one call to os.RemoveAll. Change-Id: I1e160a31ae22f0132355117df941fe65822900eb Reviewed-on: https://go-review.googlesource.com/c/tools/+/230758 Run-TryBot: Robert Findley <rfindley@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
83 lines
1.6 KiB
Go
83 lines
1.6 KiB
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 fake
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
)
|
|
|
|
func TestContentPosition(t *testing.T) {
|
|
content := "foo\n😀\nbar"
|
|
tests := []struct {
|
|
offset, wantLine, wantColumn int
|
|
}{
|
|
{0, 0, 0},
|
|
{3, 0, 3},
|
|
{4, 1, 0},
|
|
{5, 1, 1},
|
|
{6, 2, 0},
|
|
}
|
|
for _, test := range tests {
|
|
pos, err := contentPosition(content, test.offset)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if pos.Line != test.wantLine {
|
|
t.Errorf("contentPosition(%q, %d): Line = %d, want %d", content, test.offset, pos.Line, test.wantLine)
|
|
}
|
|
if pos.Column != test.wantColumn {
|
|
t.Errorf("contentPosition(%q, %d): Column = %d, want %d", content, test.offset, pos.Column, test.wantColumn)
|
|
}
|
|
}
|
|
}
|
|
|
|
const exampleProgram = `
|
|
-- go.mod --
|
|
go 1.12
|
|
-- main.go --
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("Hello World.")
|
|
}
|
|
`
|
|
|
|
func TestClientEditing(t *testing.T) {
|
|
ws, err := NewSandbox("TestClientEditing", exampleProgram, "")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer ws.Close()
|
|
ctx := context.Background()
|
|
editor := NewEditor(ws)
|
|
if err := editor.OpenFile(ctx, "main.go"); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := editor.EditBuffer(ctx, "main.go", []Edit{
|
|
{
|
|
Start: Pos{5, 14},
|
|
End: Pos{5, 26},
|
|
Text: "Hola, mundo.",
|
|
},
|
|
}); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
got := editor.buffers["main.go"].text()
|
|
want := `package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("Hola, mundo.")
|
|
}
|
|
`
|
|
if got != want {
|
|
t.Errorf("got text %q, want %q", got, want)
|
|
}
|
|
}
|