mirror of
https://github.com/golang/go
synced 2024-11-18 23:54:41 -07:00
49e4010bbf
Add two new fake editor commands: Formatting and OrganizeImports, which delegate to textDocument/formatting and textDocument/codeAction respectively. Use this in simple regtests, as well as on save. Implementing this required fixing a broken assumption about text edits in the editor: previously these edits were incrementally mutating the buffer, but the correct implementation should simultaneously mutate the buffer (i.e., all positions in an edit set refer to the starting buffer state). This never mattered before because we were only operating on one edit at a time. Updates golang/go#36879 Change-Id: I6dec343c4e202288fa20c26df2fbafe9340a1bce Reviewed-on: https://go-review.googlesource.com/c/tools/+/221539 Run-TryBot: Robert Findley <rfindley@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rohan Challa <rohan@golang.org>
58 lines
998 B
Go
58 lines
998 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 fake
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
)
|
|
|
|
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 := NewWorkspace("TestClientEditing", []byte(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)
|
|
}
|
|
}
|