forked from nhoizey/vscode-gremlins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.test.js
483 lines (409 loc) · 14.2 KB
/
extension.test.js
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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
const configDefinition = require('./package.json').contributes.configuration
let incrementingUri = 1
const createMockDocument = (text = '') => {
return {
text: text,
get lineCount() {
return this.text.split('\n').length
},
lineAt(index) {
const lines = this.text.split('\n')
return { text: lines[index] }
},
uri: 'document' + incrementingUri++,
}
}
let mockDocument = createMockDocument()
let mockVisibleDocuments = [createMockDocument(), createMockDocument()]
let mockDisposable = {
dispose: jest.fn(),
}
let mockDecorationType = {
dispose: jest.fn(),
}
let mockConfiguration = {}
const mockSetDecorations = jest.fn()
const mockSetDiagnostics = jest.fn()
const mockClearDiagnostics = jest.fn()
const mockDeleteDiagnostics = jest.fn()
const mockDisposeDiagnostics = jest.fn()
/**
* Tag for use with template literals
*
* Finds the indentation on the first line after the opening backtick
* and removes that indentation from every line in the template.
* @param {String[]} strings Array of lines in the template literal
*/
function outdent(strings) {
// Add in all of the expressions
let outdented = strings
.map((s, i) => `${s}${arguments[i + 1] || ''}`)
.join('')
// Find the indentation after the first newline
const matches = /^\s+/.exec(outdented.split('\n')[1])
if (matches) {
const outdentRegex = new RegExp('\\n' + matches[0], 'g')
outdented = outdented.replace(outdentRegex, '\n')
}
return outdented
}
jest.mock(
'vscode',
() => {
return {
window: {
onDidChangeActiveTextEditor: jest.fn(() => mockDisposable),
createTextEditorDecorationType: jest.fn(() => mockDecorationType),
activeTextEditor: {
document: mockDocument,
setDecorations: mockSetDecorations,
},
visibleTextEditors: [
{
document: mockVisibleDocuments[0],
setDecorations: jest.fn(),
},
{
document: mockVisibleDocuments[1],
setDecorations: jest.fn(),
},
],
},
workspace: {
onDidChangeTextDocument: jest.fn(() => mockDisposable),
onDidCloseTextDocument: jest.fn(() => mockDisposable),
onDidChangeConfiguration: jest.fn(() => mockDisposable),
getConfiguration: jest.fn((key) => mockConfiguration),
},
languages: {
createDiagnosticCollection: jest.fn((key) => ({
set: mockSetDiagnostics,
delete: mockDeleteDiagnostics,
clear: mockClearDiagnostics,
dispose: mockDisposeDiagnostics,
})),
},
OverviewRulerLane: { Right: 'OverviewRulerLane.Right' },
Position: jest.fn((line, char) => {
return { line, char }
}),
Range: jest.fn((left, right) => {
return { left, right }
}),
DiagnosticSeverity: {
Information: 'DiagnosticSeverity.Information',
Warning: 'DiagnosticSeverity.Warning',
Error: 'DiagnosticSeverity.Error',
},
}
},
{ virtual: true },
)
const mockVscode = require('vscode')
const { activate, deactivate } = require('./extension')
const context = {
asAbsolutePath: (arg) => arg,
}
beforeEach(() => {
jest.clearAllMocks()
const characters = configDefinition.properties['gremlins.characters'].default
const gutterIconSize = configDefinition.properties['gremlins.gutterIconSize'].default
const showInProblemPane = true
mockConfiguration = {
characters: characters,
gutterIconSize: gutterIconSize,
showInProblemPane: showInProblemPane,
}
})
afterEach(() => {
deactivate()
})
describe('updateDecorations', () => {
it('shows zero width space', () => {
mockDocument.text = 'zero width space \u200b'
activate(context)
expect(mockSetDecorations.mock.calls).toMatchSnapshot()
})
it('shows zero width space in problems', () => {
mockDocument.text = 'zero width space \u200b'
activate(context)
expect(mockSetDiagnostics.mock.calls).toMatchSnapshot()
})
it('shows zero width non-joiner', () => {
mockDocument.text = 'zero width non-joiner \u200c'
activate(context)
expect(mockSetDecorations.mock.calls).toMatchSnapshot()
})
it('shows zero width non-joiner in problems', () => {
mockDocument.text = 'zero width non-joiner \u200c'
activate(context)
expect(mockSetDiagnostics.mock.calls).toMatchSnapshot()
})
it('shows paragraph separator', () => {
mockDocument.text = 'paragraph separator \u2029'
activate(context)
expect(mockSetDecorations.mock.calls).toMatchSnapshot()
})
it('shows paragraph separator in problems', () => {
mockDocument.text = 'paragraph separator \u2029'
activate(context)
expect(mockSetDiagnostics.mock.calls).toMatchSnapshot()
})
it('shows non breaking space', () => {
mockDocument.text = 'non breaking space \u00a0'
activate(context)
expect(mockSetDecorations.mock.calls).toMatchSnapshot()
})
it('shows non breaking space in problems', () => {
mockDocument.text = 'non breaking space \u00a0'
activate(context)
expect(mockSetDiagnostics.mock.calls).toMatchSnapshot()
})
it('shows soft hyphen', () => {
mockDocument.text = 'soft hyphen \u00ad'
activate(context)
expect(mockSetDecorations.mock.calls).toMatchSnapshot()
})
it('shows soft hyphen in problems', () => {
mockDocument.text = 'soft hyphen \u00ad'
activate(context)
expect(mockSetDiagnostics.mock.calls).toMatchSnapshot()
})
it('shows left double quotation mark', () => {
mockDocument.text = 'left double quotation mark \u201c'
activate(context)
expect(mockSetDecorations.mock.calls).toMatchSnapshot()
})
it('shows left double quotation mark in problems', () => {
mockDocument.text = 'left double quotation mark \u201c'
activate(context)
expect(mockSetDiagnostics.mock.calls).toMatchSnapshot()
})
it('shows right double quotation mark', () => {
mockDocument.text = 'right double quotation mark \u201d'
activate(context)
expect(mockSetDecorations.mock.calls).toMatchSnapshot()
})
it('shows right double quotation mark in problems', () => {
mockDocument.text = 'right double quotation mark \u201d'
activate(context)
expect(mockSetDiagnostics.mock.calls).toMatchSnapshot()
})
it('shows object replacement character', () => {
mockDocument.text = 'object replacement character \ufffc'
activate(context)
expect(mockSetDecorations.mock.calls).toMatchSnapshot()
})
it('shows object replacement character in problems', () => {
mockDocument.text = 'object replacement character \ufffc'
activate(context)
expect(mockSetDiagnostics.mock.calls).toMatchSnapshot()
})
it('shows multiple characters on multiple lines', () => {
mockDocument.text = outdent`
zero width space \u200b\u200b\u200b
zero width non-joiner \u200c\u200c\u200c
paragraph separator \u2029\u2029\u2029
non breaking space \u00a0\u00a0\u00a0
left double quotation mark \u201c\u201c\u201c
right double quotation mark \u201d\u201d\u201d
`
activate(context)
expect(mockSetDecorations.mock.calls).toMatchSnapshot()
})
it('shows multiple characters on multiple lines in problems', () => {
mockDocument.text = outdent`
zero width space \u200b\u200b\u200b
zero width non-joiner \u200c\u200c\u200c
paragraph separator \u2029\u2029\u2029
non breaking space \u00a0\u00a0\u00a0
left double quotation mark \u201c\u201c\u201c
right double quotation mark \u201d\u201d\u201d
`
activate(context)
expect(mockSetDiagnostics.mock.calls).toMatchSnapshot()
})
it('clears decorations with a clean document', () => {
mockDocument.text = outdent`
zero width space \u200b\u200b\u200b
zero width non-joiner \u200c\u200c\u200c
paragraph separator \u2029\u2029\u2029
non breaking space \u00a0\u00a0\u00a0
left double quotation mark \u201c\u201c\u201c
right double quotation mark \u201d\u201d\u201d
`
activate(context)
mockSetDecorations.mockClear()
mockDocument.text = outdent`
zero width space
zero width non-joiner
paragraph separator
non breaking space
left double quotation mark
right double quotation mark
`
activate(context)
expect(mockSetDecorations.mock.calls).toMatchSnapshot()
})
it('clears problems with a clean document', () => {
mockDocument.text = outdent`
zero width space \u200b\u200b\u200b
zero width non-joiner \u200c\u200c\u200c
paragraph separator \u2029\u2029\u2029
non breaking space \u00a0\u00a0\u00a0
left double quotation mark \u201c\u201c\u201c
right double quotation mark \u201d\u201d\u201d
`
activate(context)
mockSetDiagnostics.mockClear()
mockDocument.text = outdent`
zero width space
zero width non-joiner
paragraph separator
non breaking space
left double quotation mark
right double quotation mark
`
activate(context)
expect(mockSetDiagnostics.mock.calls).toMatchSnapshot()
})
})
describe('lifecycle registration', () => {
it('registers with window.onDidChangeActiveTextEditor', () => {
activate(context)
expect(
mockVscode.window.onDidChangeActiveTextEditor.mock.calls,
).toMatchSnapshot()
})
it('registers with workspace.onDidChangeTextDocument', () => {
activate(context)
expect(
mockVscode.workspace.onDidChangeTextDocument.mock.calls,
).toMatchSnapshot()
})
it('registers with workspace.onDidCloseTextDocument', () => {
activate(context)
expect(
mockVscode.workspace.onDidCloseTextDocument.mock.calls,
).toMatchSnapshot()
})
it('registers with workspace.onDidChangeConfiguration', () => {
activate(context)
expect(
mockVscode.workspace.onDidChangeConfiguration.mock.calls,
).toMatchSnapshot()
})
})
describe('lifecycle event handling', () => {
function getEventHandlers(object) {
return Object.keys(object)
.filter((key) => key.startsWith('on'))
.reduce((handlers, nextKey) => {
handlers[nextKey] = object[nextKey].mock.calls[0][0]
return handlers
}, {})
}
let eventHandlers = {}
beforeEach(() => {
activate(context)
mockDocument.text = 'zero width space \u200b'
eventHandlers = {
window: getEventHandlers(mockVscode.window),
workspace: getEventHandlers(mockVscode.workspace),
}
jest.clearAllMocks()
})
it('processes new file on window.onDidChangeActiveTextEditor', () => {
const newMockEditor = {
document: createMockDocument('zero width space \u200b'),
setDecorations: mockSetDecorations,
}
eventHandlers.window.onDidChangeActiveTextEditor(newMockEditor)
expect(mockSetDecorations.mock.calls).toMatchSnapshot()
expect(mockSetDiagnostics.mock.calls).toMatchSnapshot()
})
it('does NOT process already-processed file on window.onDidChangeActiveTextEditor', () => {
eventHandlers.window.onDidChangeActiveTextEditor(
mockVscode.window.activeTextEditor,
)
expect(mockSetDiagnostics.mock.calls.length).toBe(0)
})
it('re-paints gremlins for already-processed file on window.onDidChangeActiveTextEditor', () => {
eventHandlers.window.onDidChangeActiveTextEditor(
mockVscode.window.activeTextEditor,
)
expect(mockSetDecorations.mock.calls.length).toBe(1)
expect(mockSetDecorations.mock.calls).toMatchSnapshot()
})
it('processes new file on workspace.onDidChangeTextDocument', () => {
eventHandlers.workspace.onDidChangeTextDocument()
expect(mockSetDecorations.mock.calls).toMatchSnapshot()
expect(mockSetDiagnostics.mock.calls).toMatchSnapshot()
})
it('clears diagnostics on workspace.onDidCloseTextDocument', () => {
eventHandlers.workspace.onDidCloseTextDocument({ uri: 'someUri' })
expect(mockClearDiagnostics.calls).toMatchSnapshot()
})
it('processes visible text editors on workspace.onDidChangeConfiguration', () => {
eventHandlers.workspace.onDidChangeConfiguration({
affectsConfiguration: jest.fn((arg) => true),
})
expect(mockSetDecorations.mock.calls.length).toBe(0)
mockVscode.window.visibleTextEditors.forEach((editor) => {
expect(editor.setDecorations.mock.calls).toMatchSnapshot()
})
expect(mockSetDiagnostics.mock.calls).toMatchSnapshot()
})
})
describe('deactivate', () => {
beforeEach(() => {
activate(context)
})
it('clears and then disposes diagnostics', () => {
deactivate()
const clearCallOrder = mockClearDiagnostics.mock.invocationCallOrder[0]
const disposeCallOrder = mockDisposeDiagnostics.mock.invocationCallOrder[0]
expect(clearCallOrder).toBeLessThan(disposeCallOrder)
})
it('disposes event handlers', () => {
const totalEvents = 4
deactivate()
expect(mockDisposable.dispose.mock.calls.length).toBe(totalEvents)
})
it('disposes decorationTypes', () => {
deactivate()
expect(mockDecorationType.dispose.mock.calls.length).toBe(
mockVscode.window.createTextEditorDecorationType.mock.calls.length,
)
})
})
describe('configuration', () => {
describe('level', () => {
it('setting level to none prevents decoration from being displayed', () => {
// Default is to display decoration
mockDocument.text = 'zero width space \u200b'
activate(context)
expect(mockSetDecorations.mock.calls).toMatchSnapshot()
// When overriding level to 'none'
mockSetDecorations.mockClear()
mockConfiguration.characters['200b'].level = 'none'
const configChangeHandler = mockVscode.workspace.onDidChangeConfiguration.mock.calls[0][0]
configChangeHandler({ affectsConfiguration: () => true})
// Decoration is no longer displayed
expect(mockSetDecorations.mock.calls).toMatchSnapshot()
})
it('setting level to none prevents decoration from being displayed', () => {
// Default is to create diagnostic
mockDocument.text = 'zero width space \u200b'
activate(context)
expect(mockSetDiagnostics.mock.calls).toMatchSnapshot()
// When overriding level to 'none'
mockSetDecorations.mockClear()
mockConfiguration.characters['200b'].level = 'none'
const configChangeHandler = mockVscode.workspace.onDidChangeConfiguration.mock.calls[0][0]
configChangeHandler({ affectsConfiguration: () => true})
// Diagnostic is no longer created
expect(mockSetDiagnostics.mock.calls).toMatchSnapshot()
})
})
})