Documentation ¶
Overview ¶
Package fake provides fake implementations of a text editor, LSP client plugin, and Sandbox environment for use in tests.
The Editor type provides a high level API for text editor operations (open/modify/save/close a buffer, jump to definition, etc.), and the Client type exposes an LSP client for the editor that can be connected to a language server. By default, the Editor and Client should be compliant with the LSP spec: their intended use is to verify server compliance with the spec in a variety of environment. Possible future enhancements of these types may allow them to misbehave in configurable ways, but that is not their primary use.
The Sandbox type provides a facility for executing tests with a temporary directory, module proxy, and GOPATH.
Index ¶
- Variables
- func Tempdir(files map[string][]byte) (string, error)
- func UnpackTxt(txt string) map[string][]byte
- func WriteFileData(path string, content []byte, rel RelativeTo) error
- func WriteProxy(tmpdir string, files map[string][]byte) (string, error)
- type CallCounts
- type Client
- func (c *Client) ApplyEdit(ctx context.Context, params *protocol.ApplyWorkspaceEditParams) (*protocol.ApplyWorkspaceEditResult, error)
- func (c *Client) Configuration(_ context.Context, p *protocol.ParamConfiguration) ([]interface{}, error)
- func (c *Client) Event(ctx context.Context, event *interface{}) error
- func (c *Client) LogMessage(ctx context.Context, params *protocol.LogMessageParams) error
- func (c *Client) Progress(ctx context.Context, params *protocol.ProgressParams) error
- func (c *Client) PublishDiagnostics(ctx context.Context, params *protocol.PublishDiagnosticsParams) error
- func (c *Client) RegisterCapability(ctx context.Context, params *protocol.RegistrationParams) error
- func (c *Client) ShowDocument(context.Context, *protocol.ShowDocumentParams) (*protocol.ShowDocumentResult, error)
- func (c *Client) ShowMessage(ctx context.Context, params *protocol.ShowMessageParams) error
- func (c *Client) ShowMessageRequest(ctx context.Context, params *protocol.ShowMessageRequestParams) (*protocol.MessageActionItem, error)
- func (c *Client) UnregisterCapability(ctx context.Context, params *protocol.UnregistrationParams) error
- func (c *Client) WorkDoneProgressCreate(ctx context.Context, params *protocol.WorkDoneProgressCreateParams) error
- func (c *Client) WorkspaceFolders(context.Context) ([]protocol.WorkspaceFolder, error)
- type ClientHooks
- type Edit
- type Editor
- func (e *Editor) AcceptCompletion(ctx context.Context, path string, pos Pos, item protocol.CompletionItem) error
- func (e *Editor) ApplyCodeAction(ctx context.Context, action protocol.CodeAction) error
- func (e *Editor) ApplyQuickFixes(ctx context.Context, path string, rng *protocol.Range, ...) error
- func (e *Editor) BufferText(name string) string
- func (e *Editor) BufferVersion(name string) int
- func (e *Editor) Client() *Client
- func (e *Editor) Close(ctx context.Context) error
- func (e *Editor) CloseBuffer(ctx context.Context, path string) error
- func (e *Editor) CodeAction(ctx context.Context, path string, rng *protocol.Range, ...) ([]protocol.CodeAction, error)
- func (e *Editor) CodeLens(ctx context.Context, path string) ([]protocol.CodeLens, error)
- func (e *Editor) Completion(ctx context.Context, path string, pos Pos) (*protocol.CompletionList, error)
- func (e *Editor) Connect(ctx context.Context, conn jsonrpc2.Conn, hooks ClientHooks) (*Editor, error)
- func (e *Editor) CreateBuffer(ctx context.Context, path, content string) error
- func (e *Editor) DocumentHighlight(ctx context.Context, path string, pos Pos) ([]protocol.DocumentHighlight, error)
- func (e *Editor) DocumentLink(ctx context.Context, path string) ([]protocol.DocumentLink, error)
- func (e *Editor) EditBuffer(ctx context.Context, path string, edits []Edit) error
- func (e *Editor) ExecuteCommand(ctx context.Context, params *protocol.ExecuteCommandParams) (interface{}, error)
- func (e *Editor) Exit(ctx context.Context) error
- func (e *Editor) FormatBuffer(ctx context.Context, path string) error
- func (e *Editor) GetQuickFixes(ctx context.Context, path string, rng *protocol.Range, ...) ([]protocol.CodeAction, error)
- func (e *Editor) GoToDefinition(ctx context.Context, path string, pos Pos) (string, Pos, error)
- func (e *Editor) GoToTypeDefinition(ctx context.Context, path string, pos Pos) (string, Pos, error)
- func (e *Editor) HasBuffer(name string) bool
- func (e *Editor) Hover(ctx context.Context, path string, pos Pos) (*protocol.MarkupContent, Pos, error)
- func (e *Editor) OpenFile(ctx context.Context, path string) error
- func (e *Editor) OrganizeImports(ctx context.Context, path string) error
- func (e *Editor) RefactorRewrite(ctx context.Context, path string, rng *protocol.Range) error
- func (e *Editor) References(ctx context.Context, path string, pos Pos) ([]protocol.Location, error)
- func (e *Editor) RegexpRange(bufName, re string) (Pos, Pos, error)
- func (e *Editor) RegexpReplace(ctx context.Context, path, re, replace string) error
- func (e *Editor) RegexpSearch(bufName, re string) (Pos, error)
- func (e *Editor) Rename(ctx context.Context, path string, pos Pos, newName string) error
- func (e *Editor) RunGenerate(ctx context.Context, dir string) error
- func (e *Editor) SaveBuffer(ctx context.Context, path string) error
- func (e *Editor) SaveBufferWithoutActions(ctx context.Context, path string) error
- func (e *Editor) SetBufferContent(ctx context.Context, path, content string) error
- func (e *Editor) Shutdown(ctx context.Context) error
- func (e *Editor) Stats() CallCounts
- func (e *Editor) Symbol(ctx context.Context, query string) ([]SymbolInformation, error)
- func (e *Editor) Symbols(ctx context.Context, sym string) ([]protocol.SymbolInformation, error)
- type EditorConfig
- type FileEvent
- type Location
- type Pos
- type Range
- type RelativeTo
- type Sandbox
- type SandboxConfig
- type SymbolInformation
- type Workdir
- func (w *Workdir) AddWatcher(watcher func(context.Context, []FileEvent))
- func (w *Workdir) ChangeFilesOnDisk(ctx context.Context, events []FileEvent) error
- func (w *Workdir) CheckForFileChanges(ctx context.Context) error
- func (w *Workdir) ReadFile(path string) (string, error)
- func (w *Workdir) RegexpRange(path, re string) (Pos, Pos, error)
- func (w *Workdir) RegexpSearch(path string, re string) (Pos, error)
- func (w *Workdir) RemoveFile(ctx context.Context, path string) error
- func (w *Workdir) RootURI() protocol.DocumentURI
- func (w *Workdir) URI(path string) protocol.DocumentURI
- func (w *Workdir) URIToPath(uri protocol.DocumentURI) string
- func (w *Workdir) WriteFile(ctx context.Context, path, content string) error
- func (w *Workdir) WriteFiles(ctx context.Context, files map[string]string) error
Constants ¶
This section is empty.
Variables ¶
var ( ErrNoMatch = errors.New("no match") ErrUnknownBuffer = errors.New("unknown buffer") )
ErrNoMatch is returned if a regexp search fails.
Functions ¶
func Tempdir ¶
Tempdir creates a new temp directory with the given txtar-encoded files. It is the responsibility of the caller to call os.RemoveAll on the returned file path when it is no longer needed.
func WriteFileData ¶
func WriteFileData(path string, content []byte, rel RelativeTo) error
WriteFileData writes content to the relative path, replacing the special token $SANDBOX_WORKDIR with the relative root given by rel.
Types ¶
type CallCounts ¶
type CallCounts struct {
DidOpen, DidChange, DidSave, DidChangeWatchedFiles, DidClose uint64
}
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client is an adapter that converts an *Editor into an LSP Client. It mosly delegates functionality to hooks that can be configured by tests.
func (*Client) ApplyEdit ¶
func (c *Client) ApplyEdit(ctx context.Context, params *protocol.ApplyWorkspaceEditParams) (*protocol.ApplyWorkspaceEditResult, error)
ApplyEdit applies edits sent from the server.
func (*Client) Configuration ¶
func (*Client) LogMessage ¶
func (*Client) PublishDiagnostics ¶
func (*Client) RegisterCapability ¶
func (*Client) ShowDocument ¶
func (c *Client) ShowDocument(context.Context, *protocol.ShowDocumentParams) (*protocol.ShowDocumentResult, error)
func (*Client) ShowMessage ¶
func (*Client) ShowMessageRequest ¶
func (c *Client) ShowMessageRequest(ctx context.Context, params *protocol.ShowMessageRequestParams) (*protocol.MessageActionItem, error)
func (*Client) UnregisterCapability ¶
func (*Client) WorkDoneProgressCreate ¶
func (*Client) WorkspaceFolders ¶
type ClientHooks ¶
type ClientHooks struct { OnLogMessage func(context.Context, *protocol.LogMessageParams) error OnDiagnostics func(context.Context, *protocol.PublishDiagnosticsParams) error OnWorkDoneProgressCreate func(context.Context, *protocol.WorkDoneProgressCreateParams) error OnProgress func(context.Context, *protocol.ProgressParams) error OnShowMessage func(context.Context, *protocol.ShowMessageParams) error OnShowMessageRequest func(context.Context, *protocol.ShowMessageRequestParams) error OnRegistration func(context.Context, *protocol.RegistrationParams) error OnUnregistration func(context.Context, *protocol.UnregistrationParams) error }
ClientHooks are called to handle the corresponding client LSP method.
type Editor ¶
type Editor struct { Config EditorConfig // Server, client, and sandbox are concurrency safe and written only // at construction time, so do not require synchronization. Server protocol.Server // contains filtered or unexported fields }
Editor is a fake editor client. It keeps track of client state and can be used for writing LSP tests.
func NewEditor ¶
func NewEditor(sandbox *Sandbox, config EditorConfig) *Editor
NewEditor Creates a new Editor.
func (*Editor) AcceptCompletion ¶
func (e *Editor) AcceptCompletion(ctx context.Context, path string, pos Pos, item protocol.CompletionItem) error
AcceptCompletion accepts a completion for the given item at the given position.
func (*Editor) ApplyCodeAction ¶
ApplyCodeAction applies the given code action.
func (*Editor) ApplyQuickFixes ¶
func (e *Editor) ApplyQuickFixes(ctx context.Context, path string, rng *protocol.Range, diagnostics []protocol.Diagnostic) error
ApplyQuickFixes requests and performs the quickfix codeAction.
func (*Editor) BufferText ¶
BufferText returns the content of the buffer with the given name.
func (*Editor) BufferVersion ¶
BufferVersion returns the current version of the buffer corresponding to name (or 0 if it is not being edited).
func (*Editor) CloseBuffer ¶
CloseBuffer removes the current buffer (regardless of whether it is saved).
func (*Editor) CodeAction ¶
func (e *Editor) CodeAction(ctx context.Context, path string, rng *protocol.Range, diagnostics []protocol.Diagnostic) ([]protocol.CodeAction, error)
CodeAction executes a codeAction request on the server.
func (*Editor) Completion ¶
func (e *Editor) Completion(ctx context.Context, path string, pos Pos) (*protocol.CompletionList, error)
Completion executes a completion request on the server.
func (*Editor) Connect ¶
func (e *Editor) Connect(ctx context.Context, conn jsonrpc2.Conn, hooks ClientHooks) (*Editor, error)
Connect configures the editor to communicate with an LSP server on conn. It is not concurrency safe, and should be called at most once, before using the editor.
It returns the editor, so that it may be called as follows:
editor, err := NewEditor(s).Connect(ctx, conn)
func (*Editor) CreateBuffer ¶
CreateBuffer creates a new unsaved buffer corresponding to the workdir path, containing the given textual content.
func (*Editor) DocumentHighlight ¶
func (*Editor) DocumentLink ¶
func (*Editor) EditBuffer ¶
EditBuffer applies the given test edits to the buffer identified by path.
func (*Editor) ExecuteCommand ¶
func (*Editor) FormatBuffer ¶
FormatBuffer gofmts a Go file.
func (*Editor) GetQuickFixes ¶
func (e *Editor) GetQuickFixes(ctx context.Context, path string, rng *protocol.Range, diagnostics []protocol.Diagnostic) ([]protocol.CodeAction, error)
GetQuickFixes returns the available quick fix code actions.
func (*Editor) GoToDefinition ¶
GoToDefinition jumps to the definition of the symbol at the given position in an open buffer. It returns the path and position of the resulting jump.
func (*Editor) GoToTypeDefinition ¶
GoToTypeDefinition jumps to the type definition of the symbol at the given position in an open buffer.
func (*Editor) Hover ¶
func (e *Editor) Hover(ctx context.Context, path string, pos Pos) (*protocol.MarkupContent, Pos, error)
Hover triggers a hover at the given position in an open buffer.
func (*Editor) OrganizeImports ¶
OrganizeImports requests and performs the source.organizeImports codeAction.
func (*Editor) RefactorRewrite ¶
RefactorRewrite requests and performs the source.refactorRewrite codeAction.
func (*Editor) References ¶
References executes a reference request on the server.
func (*Editor) RegexpRange ¶
RegexpRange returns the first range in the buffer bufName matching re. See RegexpSearch for more information on matching.
func (*Editor) RegexpReplace ¶
RegexpReplace edits the buffer corresponding to path by replacing the first instance of re, or its first subgroup, with the replace text. See RegexpSearch for more explanation of these two modes. It returns an error if re is invalid, has more than one subgroup, or doesn't match the buffer.
func (*Editor) RegexpSearch ¶
RegexpSearch returns the position of the first match for re in the buffer bufName. For convenience, RegexpSearch supports the following two modes:
- If re has no subgroups, return the position of the match for re itself.
- If re has one subgroup, return the position of the first subgroup.
It returns an error re is invalid, has more than one subgroup, or doesn't match the buffer.
func (*Editor) RunGenerate ¶
RunGenerate runs `go generate` non-recursively in the workdir-relative dir path. It does not report any resulting file changes as a watched file change, so must be followed by a call to Workdir.CheckForFileChanges once the generate command has completed. TODO(rFindley): this shouldn't be necessary anymore. Delete it.
func (*Editor) SaveBuffer ¶
SaveBuffer writes the content of the buffer specified by the given path to the filesystem.
func (*Editor) SaveBufferWithoutActions ¶
func (*Editor) SetBufferContent ¶
func (*Editor) Stats ¶
func (e *Editor) Stats() CallCounts
type EditorConfig ¶
type EditorConfig struct { Env map[string]string BuildFlags []string // CodeLenses is a map defining whether codelens are enabled, keyed by the // codeLens command. CodeLenses which are not present in this map are left in // their default state. CodeLenses map[string]bool // SymbolMatcher is the config associated with the "symbolMatcher" gopls // config option. SymbolMatcher, SymbolStyle *string // LimitWorkspaceScope is true if the user does not want to expand their // workspace scope to the entire module. LimitWorkspaceScope bool // WorkspaceFolders is the workspace folders to configure on the LSP server, // relative to the sandbox workdir. // // As a special case, if WorkspaceFolders is nil the editor defaults to // configuring a single workspace folder corresponding to the workdir root. // To explicitly send no workspace folders, use an empty (non-nil) slice. WorkspaceFolders []string // EnableStaticcheck enables staticcheck analyzers. EnableStaticcheck bool // AllExperiments sets the "allExperiments" configuration, which enables // all of gopls's opt-in settings. AllExperiments bool // Whether to send the current process ID, for testing data that is joined to // the PID. This can only be set by one test. SendPID bool // Whether to edit files with windows line endings. WindowsLineEndings bool ImportShortcut string DirectoryFilters []string VerboseOutput bool ExperimentalUseInvalidMetadata bool }
EditorConfig configures the editor's LSP session. This is similar to source.UserOptions, but we use a separate type here so that we expose only that configuration which we support.
The zero value for EditorConfig should correspond to its defaults.
type FileEvent ¶
FileEvent wraps the protocol.FileEvent so that it can be associated with a workdir-relative path.
type Pos ¶
type Pos struct {
Line, Column int
}
Pos represents a position in a text buffer. Both Line and Column are 0-indexed.
func (Pos) ToProtocolPosition ¶
type Range ¶
Range corresponds to protocol.Range, but uses the editor friend Pos instead of UTF-16 oriented protocol.Position
type RelativeTo ¶
type RelativeTo string
RelativeTo is a helper for operations relative to a given directory.
func (RelativeTo) AbsPath ¶
func (r RelativeTo) AbsPath(path string) string
AbsPath returns an absolute filesystem path for the workdir-relative path.
func (RelativeTo) RelPath ¶
func (r RelativeTo) RelPath(fp string) string
RelPath returns a '/'-encoded path relative to the working directory (or an absolute path if the file is outside of workdir)
type Sandbox ¶
type Sandbox struct { Workdir *Workdir // contains filtered or unexported fields }
Sandbox holds a collection of temporary resources to use for working with Go code in tests.
func NewSandbox ¶
func NewSandbox(config *SandboxConfig) (_ *Sandbox, err error)
NewSandbox creates a collection of named temporary resources, with a working directory populated by the txtar-encoded content in srctxt, and a file-based module proxy populated with the txtar-encoded content in proxytxt.
If rootDir is non-empty, it will be used as the root of temporary directories created for the sandbox. Otherwise, a new temporary directory will be used as root.
func (*Sandbox) GoEnv ¶
GoEnv returns the default environment variables that can be used for invoking Go commands in the sandbox.
func (*Sandbox) RunGoCommand ¶
func (sb *Sandbox) RunGoCommand(ctx context.Context, dir, verb string, args []string, checkForFileChanges bool) error
RunGoCommand executes a go command in the sandbox. If checkForFileChanges is true, the sandbox scans the working directory and emits file change events for any file changes it finds.
type SandboxConfig ¶
type SandboxConfig struct { // RootDir sets the base directory to use when creating temporary // directories. If not specified, defaults to a new temporary directory. RootDir string // Files holds a txtar-encoded archive of files to populate the initial state // of the working directory. // // For convenience, the special substring "$SANDBOX_WORKDIR" is replaced with // the sandbox's resolved working directory before writing files. Files map[string][]byte // InGoPath specifies that the working directory should be within the // temporary GOPATH. InGoPath bool // Workdir configures the working directory of the Sandbox. It behaves as // follows: // - if set to an absolute path, use that path as the working directory. // - if set to a relative path, create and use that path relative to the // sandbox. // - if unset, default to a the 'work' subdirectory of the sandbox. // // This option is incompatible with InGoPath or Files. Workdir string // ProxyFiles holds a txtar-encoded archive of files to populate a file-based // Go proxy. ProxyFiles map[string][]byte // GOPROXY is the explicit GOPROXY value that should be used for the sandbox. // // This option is incompatible with ProxyFiles. GOPROXY string }
SandboxConfig controls the behavior of a test sandbox. The zero value defines a reasonable default.
type SymbolInformation ¶
type SymbolInformation struct { Name string Kind protocol.SymbolKind Location Location }
SymbolInformation is an editor friendly version of protocol.SymbolInformation, with location information transformed to byte offsets. Field names correspond to the protocol type.
type Workdir ¶
type Workdir struct { RelativeTo // contains filtered or unexported fields }
Workdir is a temporary working directory for tests. It exposes file operations in terms of relative paths, and fakes file watching by triggering events on file operations.
func NewWorkdir ¶
NewWorkdir writes the txtar-encoded file data in txt to dir, and returns a Workir for operating on these files using
func (*Workdir) AddWatcher ¶
AddWatcher registers the given func to be called on any file change.
func (*Workdir) ChangeFilesOnDisk ¶
ChangeFilesOnDisk executes the given on-disk file changes in a batch, simulating the action of changing branches outside of an editor.
func (*Workdir) CheckForFileChanges ¶
CheckForFileChanges walks the working directory and checks for any files that have changed since the last poll.
func (*Workdir) RegexpSearch ¶
RegexpSearch searches the file corresponding to path for the first position matching re.
func (*Workdir) RemoveFile ¶
RemoveFile removes a workdir-relative file path.
func (*Workdir) RootURI ¶
func (w *Workdir) RootURI() protocol.DocumentURI
RootURI returns the root URI for this working directory of this scratch environment.
func (*Workdir) URI ¶
func (w *Workdir) URI(path string) protocol.DocumentURI
URI returns the URI to a the workdir-relative path.
func (*Workdir) URIToPath ¶
func (w *Workdir) URIToPath(uri protocol.DocumentURI) string
URIToPath converts a uri to a workdir-relative path (or an absolute path, if the uri is outside of the workdir).