-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathenv.go
368 lines (316 loc) · 10.5 KB
/
env.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
// 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 integration
import (
"context"
"fmt"
"strings"
"sync"
"sync/atomic"
"testing"
"golang.org/x/tools/gopls/internal/protocol"
"golang.org/x/tools/gopls/internal/test/integration/fake"
"golang.org/x/tools/internal/jsonrpc2/servertest"
)
// Env holds the building blocks of an editor testing environment, providing
// wrapper methods that hide the boilerplate of plumbing contexts and checking
// errors.
type Env struct {
TB testing.TB
Ctx context.Context
// Most tests should not need to access the scratch area, editor, server, or
// connection, but they are available if needed.
Sandbox *fake.Sandbox
Server servertest.Connector
// Editor is owned by the Env, and shut down
Editor *fake.Editor
Awaiter *Awaiter
}
// nextAwaiterRegistration is used to create unique IDs for various Awaiter
// registrations.
var nextAwaiterRegistration atomic.Uint64
// An Awaiter keeps track of relevant LSP state, so that it may be asserted
// upon with Expectations.
//
// Wire it into a fake.Editor using Awaiter.Hooks().
//
// TODO(rfindley): consider simply merging Awaiter with the fake.Editor. It
// probably is not worth its own abstraction.
type Awaiter struct {
workdir *fake.Workdir
mu sync.Mutex
// For simplicity, each waiter gets a unique ID.
state State
waiters map[uint64]*condition
// collectors map a registration to the collection of messages that have been
// received since the registration was created.
docCollectors map[uint64][]*protocol.ShowDocumentParams
messageCollectors map[uint64][]*protocol.ShowMessageParams
}
func NewAwaiter(workdir *fake.Workdir) *Awaiter {
return &Awaiter{
workdir: workdir,
state: State{
diagnostics: make(map[string]*protocol.PublishDiagnosticsParams),
work: make(map[protocol.ProgressToken]*workProgress),
startedWork: make(map[string]uint64),
completedWork: make(map[string]uint64),
},
waiters: make(map[uint64]*condition),
}
}
// Hooks returns LSP client hooks required for awaiting asynchronous expectations.
func (a *Awaiter) Hooks() fake.ClientHooks {
return fake.ClientHooks{
OnDiagnostics: a.onDiagnostics,
OnLogMessage: a.onLogMessage,
OnWorkDoneProgressCreate: a.onWorkDoneProgressCreate,
OnProgress: a.onProgress,
OnShowDocument: a.onShowDocument,
OnShowMessage: a.onShowMessage,
OnShowMessageRequest: a.onShowMessageRequest,
OnRegisterCapability: a.onRegisterCapability,
OnUnregisterCapability: a.onUnregisterCapability,
}
}
// State encapsulates the server state TODO: explain more
type State struct {
// diagnostics are a map of relative path->diagnostics params
diagnostics map[string]*protocol.PublishDiagnosticsParams
logs []*protocol.LogMessageParams
showDocument []*protocol.ShowDocumentParams
showMessage []*protocol.ShowMessageParams
showMessageRequest []*protocol.ShowMessageRequestParams
registrations []*protocol.RegistrationParams
registeredCapabilities map[string]protocol.Registration
unregistrations []*protocol.UnregistrationParams
// outstandingWork is a map of token->work summary. All tokens are assumed to
// be string, though the spec allows for numeric tokens as well.
work map[protocol.ProgressToken]*workProgress
startedWork map[string]uint64 // title -> count of 'begin'
completedWork map[string]uint64 // title -> count of 'end'
}
type workProgress struct {
title, msg, endMsg string
percent float64
complete bool // seen 'end'
}
type awaitResult struct {
verdict Verdict
reason string
}
// A condition is satisfied when its expectation is [Met] or [Unmeetable]. The
// result is sent on the verdict channel.
type condition struct {
expectation Expectation
verdict chan awaitResult
}
func (a *Awaiter) onDiagnostics(_ context.Context, d *protocol.PublishDiagnosticsParams) error {
a.mu.Lock()
defer a.mu.Unlock()
pth := a.workdir.URIToPath(d.URI)
a.state.diagnostics[pth] = d
a.checkConditionsLocked()
return nil
}
func (a *Awaiter) onShowDocument(_ context.Context, params *protocol.ShowDocumentParams) error {
a.mu.Lock()
defer a.mu.Unlock()
// Update any outstanding listeners.
for id, s := range a.docCollectors {
a.docCollectors[id] = append(s, params)
}
a.state.showDocument = append(a.state.showDocument, params)
a.checkConditionsLocked()
return nil
}
// ListenToShownDocuments registers a listener to incoming showDocument
// notifications. Call the resulting func to deregister the listener and
// receive all notifications that have occurred since the listener was
// registered.
func (a *Awaiter) ListenToShownDocuments() func() []*protocol.ShowDocumentParams {
id := nextAwaiterRegistration.Add(1)
a.mu.Lock()
defer a.mu.Unlock()
if a.docCollectors == nil {
a.docCollectors = make(map[uint64][]*protocol.ShowDocumentParams)
}
a.docCollectors[id] = nil
return func() []*protocol.ShowDocumentParams {
a.mu.Lock()
defer a.mu.Unlock()
params := a.docCollectors[id]
delete(a.docCollectors, id)
return params
}
}
func (a *Awaiter) onShowMessage(_ context.Context, params *protocol.ShowMessageParams) error {
a.mu.Lock()
defer a.mu.Unlock()
// Update any outstanding listeners.
for id, s := range a.messageCollectors {
a.messageCollectors[id] = append(s, params)
}
a.state.showMessage = append(a.state.showMessage, params)
a.checkConditionsLocked()
return nil
}
// ListenToShownMessages registers a listener to incoming showMessage
// notifications. Call the resulting func to deregister the listener and
// receive all notifications that have occurred since the listener was
// registered.
func (a *Awaiter) ListenToShownMessages() func() []*protocol.ShowMessageParams {
id := nextAwaiterRegistration.Add(1)
a.mu.Lock()
defer a.mu.Unlock()
if a.messageCollectors == nil {
a.messageCollectors = make(map[uint64][]*protocol.ShowMessageParams)
}
a.messageCollectors[id] = nil
return func() []*protocol.ShowMessageParams {
a.mu.Lock()
defer a.mu.Unlock()
params := a.messageCollectors[id]
delete(a.messageCollectors, id)
return params
}
}
func (a *Awaiter) onShowMessageRequest(_ context.Context, m *protocol.ShowMessageRequestParams) error {
a.mu.Lock()
defer a.mu.Unlock()
a.state.showMessageRequest = append(a.state.showMessageRequest, m)
a.checkConditionsLocked()
return nil
}
func (a *Awaiter) onLogMessage(_ context.Context, m *protocol.LogMessageParams) error {
a.mu.Lock()
defer a.mu.Unlock()
a.state.logs = append(a.state.logs, m)
a.checkConditionsLocked()
return nil
}
func (a *Awaiter) onWorkDoneProgressCreate(_ context.Context, m *protocol.WorkDoneProgressCreateParams) error {
a.mu.Lock()
defer a.mu.Unlock()
a.state.work[m.Token] = &workProgress{}
return nil
}
func (a *Awaiter) onProgress(_ context.Context, m *protocol.ProgressParams) error {
a.mu.Lock()
defer a.mu.Unlock()
work, ok := a.state.work[m.Token]
if !ok {
panic(fmt.Sprintf("got progress report for unknown report %v: %v", m.Token, m))
}
v := m.Value.(map[string]any)
switch kind := v["kind"]; kind {
case "begin":
work.title = v["title"].(string)
a.state.startedWork[work.title]++
if msg, ok := v["message"]; ok {
work.msg = msg.(string)
}
case "report":
if pct, ok := v["percentage"]; ok {
work.percent = pct.(float64)
}
if msg, ok := v["message"]; ok {
work.msg = msg.(string)
}
case "end":
work.complete = true
a.state.completedWork[work.title]++
if msg, ok := v["message"]; ok {
work.endMsg = msg.(string)
}
}
a.checkConditionsLocked()
return nil
}
func (a *Awaiter) onRegisterCapability(_ context.Context, m *protocol.RegistrationParams) error {
a.mu.Lock()
defer a.mu.Unlock()
a.state.registrations = append(a.state.registrations, m)
if a.state.registeredCapabilities == nil {
a.state.registeredCapabilities = make(map[string]protocol.Registration)
}
for _, reg := range m.Registrations {
a.state.registeredCapabilities[reg.Method] = reg
}
a.checkConditionsLocked()
return nil
}
func (a *Awaiter) onUnregisterCapability(_ context.Context, m *protocol.UnregistrationParams) error {
a.mu.Lock()
defer a.mu.Unlock()
a.state.unregistrations = append(a.state.unregistrations, m)
a.checkConditionsLocked()
return nil
}
func (a *Awaiter) checkConditionsLocked() {
for id, condition := range a.waiters {
if v, why := condition.expectation.Check(a.state); v != Unmet {
delete(a.waiters, id)
condition.verdict <- awaitResult{v, why}
}
}
}
// Await blocks until the given expectations are all simultaneously met.
//
// Generally speaking Await should be avoided because it blocks indefinitely if
// gopls ends up in a state where the expectations are never going to be met.
// Use AfterChange or OnceMet instead, so that the runner knows when to stop
// waiting.
func (e *Env) Await(expectations ...Expectation) {
e.TB.Helper()
if err := e.Awaiter.Await(e.Ctx, AllOf(expectations...)); err != nil {
e.TB.Fatal(err)
}
}
// OnceMet blocks until the precondition is met by the state or becomes
// unmeetable. If it was met, OnceMet checks that the state meets all
// expectations in mustMeets.
func (e *Env) OnceMet(pre Expectation, mustMeets ...Expectation) {
e.TB.Helper()
e.Await(OnceMet(pre, AllOf(mustMeets...)))
}
// Await waits for all expectations to simultaneously be met. It should only be
// called from the main test goroutine.
func (a *Awaiter) Await(ctx context.Context, expectation Expectation) error {
a.mu.Lock()
// Before adding the waiter, we check if the condition is currently met or
// failed to avoid a race where the condition was realized before Await was
// called.
switch verdict, why := expectation.Check(a.state); verdict {
case Met:
a.mu.Unlock()
return nil
case Unmeetable:
err := fmt.Errorf("unmeetable expectation:\n%s\nreason:\n%s", indent(expectation.Description), indent(why))
a.mu.Unlock()
return err
}
cond := &condition{
expectation: expectation,
verdict: make(chan awaitResult),
}
a.waiters[nextAwaiterRegistration.Add(1)] = cond
a.mu.Unlock()
var err error
select {
case <-ctx.Done():
err = ctx.Err()
case res := <-cond.verdict:
if res.verdict != Met {
err = fmt.Errorf("the following condition is %s:\n%s\nreason:\n%s",
res.verdict, indent(expectation.Description), indent(res.reason))
}
}
return err
}
// indent indents all lines of msg, including the first.
func indent(msg string) string {
const prefix = " "
return prefix + strings.ReplaceAll(msg, "\n", "\n"+prefix)
}