-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathlaunch-preferences.spec.js
697 lines (626 loc) · 25.3 KB
/
launch-preferences.spec.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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
// *****************************************************************************
// Copyright (C) 2019 TypeFox and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0.
//
// This Source Code may also be made available under the following Secondary
// Licenses when the conditions for such availability set forth in the Eclipse
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
// with the GNU Classpath Exception which is available at
// https://www.gnu.org/software/classpath/license.html.
//
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
// *****************************************************************************
// @ts-check
/* @typescript-eslint/no-explicit-any */
/**
* @typedef {'.vscode' | '.theia' | ['.theia', '.vscode']} ConfigMode
*/
/**
* Expectations should be tested and aligned against VS Code.
* See https://github.com/akosyakov/vscode-launch/blob/master/src/test/extension.test.ts
*/
describe('Launch Preferences', function () {
this.timeout(10_000);
const { assert } = chai;
const { PreferenceProvider } = require('@theia/core/lib/browser');
const { PreferenceService, PreferenceScope } = require('@theia/core/lib/browser/preferences/preference-service');
const { WorkspaceService } = require('@theia/workspace/lib/browser/workspace-service');
const { FileService } = require('@theia/filesystem/lib/browser/file-service');
const { FileResourceResolver } = require('@theia/filesystem/lib/browser/file-resource');
const { AbstractResourcePreferenceProvider } = require('@theia/preferences/lib/browser/abstract-resource-preference-provider');
const { waitForEvent } = require('@theia/core/lib/common/promise-util');
const container = window.theia.container;
/** @type {import('@theia/core/lib/browser/preferences/preference-service').PreferenceService} */
const preferences = container.get(PreferenceService);
/** @type {import('@theia/preferences/lib/browser/user-configs-preference-provider').UserConfigsPreferenceProvider} */
const userPreferences = container.getNamed(PreferenceProvider, PreferenceScope.User);
/** @type {import('@theia/preferences/lib/browser/workspace-preference-provider').WorkspacePreferenceProvider} */
const workspacePreferences = container.getNamed(PreferenceProvider, PreferenceScope.Workspace);
/** @type {import('@theia/preferences/lib/browser/folders-preferences-provider').FoldersPreferencesProvider} */
const folderPreferences = container.getNamed(PreferenceProvider, PreferenceScope.Folder);
const workspaceService = container.get(WorkspaceService);
const fileService = container.get(FileService);
const fileResourceResolver = container.get(FileResourceResolver);
const defaultLaunch = {
'configurations': [],
'compounds': []
};
const validConfiguration = {
'name': 'Launch Program',
'program': '${file}',
'request': 'launch',
'type': 'node',
};
const validConfiguration2 = {
'name': 'Launch Program 2',
'program': '${file}',
'request': 'launch',
'type': 'node',
};
const bogusConfiguration = {};
const validCompound = {
'name': 'Compound',
'configurations': [
'Launch Program',
'Launch Program 2'
]
};
const bogusCompound = {};
const bogusCompound2 = {
'name': 'Compound 2',
'configurations': [
'Foo',
'Launch Program 2'
]
};
const validLaunch = {
configurations: [validConfiguration, validConfiguration2],
compounds: [validCompound]
};
testSuite({
name: 'No Preferences',
expectation: defaultLaunch
});
testLaunchAndSettingsSuite({
name: 'Empty With Version',
launch: {
'version': '0.2.0'
},
expectation: {
'version': '0.2.0',
'configurations': [],
'compounds': []
}
});
testLaunchAndSettingsSuite({
name: 'Empty With Version And Configurations',
launch: {
'version': '0.2.0',
'configurations': [],
},
expectation: {
'version': '0.2.0',
'configurations': [],
'compounds': []
}
});
testLaunchAndSettingsSuite({
name: 'Empty With Version And Compounds',
launch: {
'version': '0.2.0',
'compounds': []
},
expectation: {
'version': '0.2.0',
'configurations': [],
'compounds': []
}
});
testLaunchAndSettingsSuite({
name: 'Valid Conf',
launch: {
'version': '0.2.0',
'configurations': [validConfiguration]
},
expectation: {
'version': '0.2.0',
'configurations': [validConfiguration],
'compounds': []
}
});
testLaunchAndSettingsSuite({
name: 'Bogus Conf',
launch: {
'version': '0.2.0',
'configurations': [validConfiguration, bogusConfiguration]
},
expectation: {
'version': '0.2.0',
'configurations': [validConfiguration, bogusConfiguration],
'compounds': []
}
});
testLaunchAndSettingsSuite({
name: 'Completely Bogus Conf',
launch: {
'version': '0.2.0',
'configurations': { 'valid': validConfiguration, 'bogus': bogusConfiguration }
},
expectation: {
'version': '0.2.0',
'configurations': { 'valid': validConfiguration, 'bogus': bogusConfiguration },
'compounds': []
}
});
const arrayBogusLaunch = [
'version', '0.2.0',
'configurations', { 'valid': validConfiguration, 'bogus': bogusConfiguration }
];
testSuite({
name: 'Array Bogus Launch Configuration',
launch: arrayBogusLaunch,
expectation: {
'0': 'version',
'1': '0.2.0',
'2': 'configurations',
'3': { 'valid': validConfiguration, 'bogus': bogusConfiguration },
'compounds': [],
'configurations': []
},
inspectExpectation: {
preferenceName: 'launch',
defaultValue: defaultLaunch,
workspaceValue: {
'0': 'version',
'1': '0.2.0',
'2': 'configurations',
'3': { 'valid': validConfiguration, 'bogus': bogusConfiguration }
}
}
});
testSuite({
name: 'Array Bogus Settings Configuration',
settings: {
launch: arrayBogusLaunch
},
expectation: {
'0': 'version',
'1': '0.2.0',
'2': 'configurations',
'3': { 'valid': validConfiguration, 'bogus': bogusConfiguration },
'compounds': [],
'configurations': []
},
inspectExpectation: {
preferenceName: 'launch',
defaultValue: defaultLaunch,
workspaceValue: arrayBogusLaunch
}
});
testSuite({
name: 'Null Bogus Launch Configuration',
// eslint-disable-next-line no-null/no-null
launch: null,
expectation: {
'compounds': [],
'configurations': []
}
});
testSuite({
name: 'Null Bogus Settings Configuration',
settings: {
// eslint-disable-next-line no-null/no-null
'launch': null
},
expectation: {}
});
testLaunchAndSettingsSuite({
name: 'Valid Compound',
launch: {
'version': '0.2.0',
'configurations': [validConfiguration, validConfiguration2],
'compounds': [validCompound]
},
expectation: {
'version': '0.2.0',
'configurations': [validConfiguration, validConfiguration2],
'compounds': [validCompound]
}
});
testLaunchAndSettingsSuite({
name: 'Valid And Bogus',
launch: {
'version': '0.2.0',
'configurations': [validConfiguration, validConfiguration2, bogusConfiguration],
'compounds': [validCompound, bogusCompound, bogusCompound2]
},
expectation: {
'version': '0.2.0',
'configurations': [validConfiguration, validConfiguration2, bogusConfiguration],
'compounds': [validCompound, bogusCompound, bogusCompound2]
}
});
testSuite({
name: 'Mixed',
launch: {
'version': '0.2.0',
'configurations': [validConfiguration, bogusConfiguration],
'compounds': [bogusCompound, bogusCompound2]
},
settings: {
launch: {
'version': '0.2.0',
'configurations': [validConfiguration2],
'compounds': [validCompound]
}
},
expectation: {
'version': '0.2.0',
'configurations': [validConfiguration, bogusConfiguration],
'compounds': [bogusCompound, bogusCompound2]
}
});
testSuite({
name: 'Mixed Launch Without Configurations',
launch: {
'version': '0.2.0',
'compounds': [bogusCompound, bogusCompound2]
},
settings: {
launch: {
'version': '0.2.0',
'configurations': [validConfiguration2],
'compounds': [validCompound]
}
},
expectation: {
'version': '0.2.0',
'configurations': [validConfiguration2],
'compounds': [bogusCompound, bogusCompound2]
},
inspectExpectation: {
preferenceName: 'launch',
defaultValue: defaultLaunch,
workspaceValue: {
'version': '0.2.0',
'configurations': [validConfiguration2],
'compounds': [bogusCompound, bogusCompound2]
}
}
});
/**
* @typedef {Object} LaunchAndSettingsSuiteOptions
* @property {string} name
* @property {any} expectation
* @property {any} [launch]
* @property {boolean} [only]
* @property {ConfigMode} [configMode]
*/
/**
* @type {(options: LaunchAndSettingsSuiteOptions) => void}
*/
function testLaunchAndSettingsSuite({
name, expectation, launch, only, configMode
}) {
testSuite({
name: name + ' Launch Configuration',
launch,
expectation,
only,
configMode
});
testSuite({
name: name + ' Settings Configuration',
settings: {
'launch': launch
},
expectation,
only,
configMode
});
}
/**
* @typedef {Partial<import('@theia/core/src/browser/preferences/preference-service').PreferenceInspection<any>>} PreferenceInspection
*/
/**
* @typedef {Object} SuiteOptions
* @property {string} name
* @property {any} expectation
* @property {PreferenceInspection} [inspectExpectation]
* @property {any} [launch]
* @property {any} [settings]
* @property {boolean} [only]
* @property {ConfigMode} [configMode]
*/
/**
* @type {(options: SuiteOptions) => void}
*/
function testSuite(options) {
describe(options.name, () => {
if (options.configMode) {
testConfigSuite(options);
} else {
testConfigSuite({
...options,
configMode: '.theia'
});
if (options.settings || options.launch) {
testConfigSuite({
...options,
configMode: '.vscode'
});
testConfigSuite({
...options,
configMode: ['.theia', '.vscode']
});
}
}
});
}
const rootUri = workspaceService.tryGetRoots()[0].resource;
/**
* @param uri the URI of the file to modify
* @returns {AbstractResourcePreferenceProvider | undefined} The preference provider matching the provided URI.
*/
function findProvider(uri) {
/**
* @param {PreferenceProvider} provider
* @returns {boolean} whether the provider matches the desired URI.
*/
const isMatch = (provider) => {
const configUri = provider.getConfigUri();
return configUri && uri.isEqual(configUri);
};
for (const provider of userPreferences['providers'].values()) {
if (isMatch(provider) && provider instanceof AbstractResourcePreferenceProvider) {
return provider;
}
}
for (const provider of folderPreferences['providers'].values()) {
if (isMatch(provider) && provider instanceof AbstractResourcePreferenceProvider) {
return provider;
}
}
/** @type {PreferenceProvider} */
const workspaceDelegate = workspacePreferences['delegate'];
if (workspaceDelegate !== folderPreferences) {
if (isMatch(workspaceDelegate) && workspaceDelegate instanceof AbstractResourcePreferenceProvider) {
return workspaceDelegate;
}
}
}
function deleteWorkspacePreferences() {
const promises = [];
for (const configPath of ['.theia', '.vscode']) {
for (const name of ['settings', 'launch']) {
promises.push((async () => {
const uri = rootUri.resolve(configPath + '/' + name + '.json');
const provider = findProvider(uri);
try {
if (provider) {
if (provider.valid) {
await waitForEvent(provider.onDidChangeValidity, 5000);
}
await provider['readPreferencesFromFile']();
await provider['fireDidPreferencesChanged']();
} else {
console.log('Unable to find provider for', uri.path.toString());
}
} catch (e) {
console.error(e);
}
})());
}
}
return Promise.all([
...promises,
fileService.delete(rootUri.resolve('.theia'), { fromUserGesture: false, recursive: true }).catch(() => { }),
fileService.delete(rootUri.resolve('.vscode'), { fromUserGesture: false, recursive: true }).catch(() => { })
]);
}
const originalShouldOverwrite = fileResourceResolver['shouldOverwrite'];
before(async () => {
// fail tests if out of async happens
fileResourceResolver['shouldOverwrite'] = async () => (assert.fail('should be in sync'), false);
await deleteWorkspacePreferences();
});
after(() => {
fileResourceResolver['shouldOverwrite'] = originalShouldOverwrite;
});
/**
* @typedef {Object} ConfigSuiteOptions
* @property {any} expectation
* @property {any} [inspectExpectation]
* @property {any} [launch]
* @property {any} [settings]
* @property {boolean} [only]
* @property {ConfigMode} [configMode]
*/
/**
* @type {(options: ConfigSuiteOptions) => void}
*/
function testConfigSuite({
configMode, expectation, inspectExpectation, settings, launch, only
}) {
describe(JSON.stringify(configMode, undefined, 2), () => {
const configPaths = Array.isArray(configMode) ? configMode : [configMode];
/** @typedef {import('@theia/monaco-editor-core/esm/vs/base/common/lifecycle').IReference<import('@theia/monaco/lib/browser/monaco-editor-model').MonacoEditorModel>} ConfigModelReference */
/** @type {ConfigModelReference[]} */
beforeEach(async () => {
/** @type {Promise<void>[]} */
const promises = [];
/**
* @param {string} name
* @param {Record<string, unknown>} value
*/
const ensureConfigModel = (name, value) => {
for (const configPath of configPaths) {
promises.push((async () => {
try {
const uri = rootUri.resolve(configPath + '/' + name + '.json');
const provider = findProvider(uri);
if (provider) {
await provider['doSetPreference']('', [], value);
} else {
console.log('Unable to find provider for', uri.path.toString());
}
} catch (e) {
console.error(e);
}
})());
}
};
if (settings) {
ensureConfigModel('settings', settings);
}
if (launch) {
ensureConfigModel('launch', launch);
}
await Promise.all(promises);
});
after(() => deleteWorkspacePreferences());
const testItOnly = !!only ? it.only : it;
const testIt = testItOnly;
const settingsLaunch = settings ? settings['launch'] : undefined;
testIt('get from default', () => {
const config = preferences.get('launch');
assert.deepStrictEqual(JSON.parse(JSON.stringify(config)), expectation);
});
testIt('get from undefined', () => {
/** @type {any} */
const config = preferences.get('launch', undefined, undefined);
assert.deepStrictEqual(JSON.parse(JSON.stringify(config)), expectation);
});
testIt('get from rootUri', () => {
/** @type {any} */
const config = preferences.get('launch', undefined, rootUri.toString());
assert.deepStrictEqual(JSON.parse(JSON.stringify(config)), expectation);
});
testIt('inspect in undefined', () => {
const inspect = preferences.inspect('launch');
/** @type {PreferenceInspection} */
let expected = inspectExpectation;
if (!expected) {
expected = {
preferenceName: 'launch',
defaultValue: defaultLaunch
};
const workspaceValue = launch || settingsLaunch;
if (workspaceValue !== undefined) {
Object.assign(expected, { workspaceValue });
}
}
const expectedValue = expected.workspaceFolderValue || expected.workspaceValue || expected.globalValue || expected.defaultValue;
assert.deepStrictEqual(JSON.parse(JSON.stringify(inspect)), { ...expected, value: expectedValue });
});
testIt('inspect in rootUri', () => {
const inspect = preferences.inspect('launch', rootUri.toString());
/** @type {PreferenceInspection} */
const expected = {
preferenceName: 'launch',
defaultValue: defaultLaunch
};
if (inspectExpectation) {
Object.assign(expected, {
workspaceValue: inspectExpectation.workspaceValue,
workspaceFolderValue: inspectExpectation.workspaceValue
});
} else {
const value = launch || settingsLaunch;
if (value !== undefined) {
Object.assign(expected, {
workspaceValue: value,
workspaceFolderValue: value
});
}
}
const expectedValue = expected.workspaceFolderValue || expected.workspaceValue || expected.globalValue || expected.defaultValue;
assert.deepStrictEqual(JSON.parse(JSON.stringify(inspect)), { ...expected, value: expectedValue });
});
testIt('update launch', async () => {
await preferences.set('launch', validLaunch);
const inspect = preferences.inspect('launch');
const actual = inspect && inspect.workspaceValue;
const expected = settingsLaunch && !Array.isArray(settingsLaunch) ? { ...settingsLaunch, ...validLaunch } : validLaunch;
assert.deepStrictEqual(actual, expected);
});
testIt('update launch Workspace', async () => {
await preferences.set('launch', validLaunch, PreferenceScope.Workspace);
const inspect = preferences.inspect('launch');
const actual = inspect && inspect.workspaceValue;
const expected = settingsLaunch && !Array.isArray(settingsLaunch) ? { ...settingsLaunch, ...validLaunch } : validLaunch;
assert.deepStrictEqual(actual, expected);
});
testIt('update launch WorkspaceFolder', async () => {
try {
await preferences.set('launch', validLaunch, PreferenceScope.Folder);
assert.fail('should not be possible to update Workspace Folder Without resource');
} catch (e) {
assert.deepStrictEqual(e.message, 'Unable to write to Folder Settings because no resource is provided.');
}
});
testIt('update launch WorkspaceFolder with resource', async () => {
await preferences.set('launch', validLaunch, PreferenceScope.Folder, rootUri.toString());
const inspect = preferences.inspect('launch');
const actual = inspect && inspect.workspaceValue;
const expected = settingsLaunch && !Array.isArray(settingsLaunch) ? { ...settingsLaunch, ...validLaunch } : validLaunch;
assert.deepStrictEqual(actual, expected);
});
if ((launch && !Array.isArray(launch)) || (settingsLaunch && !Array.isArray(settingsLaunch))) {
testIt('update launch.configurations', async () => {
await preferences.set('launch.configurations', [validConfiguration, validConfiguration2]);
const inspect = preferences.inspect('launch');
const actual = inspect && inspect.workspaceValue && inspect.workspaceValue.configurations;
assert.deepStrictEqual(actual, [validConfiguration, validConfiguration2]);
});
}
testIt('delete launch', async () => {
await preferences.set('launch', undefined);
const actual = preferences.inspect('launch');
let expected = undefined;
if (configPaths[1]) {
expected = launch;
if (Array.isArray(expected)) {
expected = { ...expected };
}
if (expected && !expected.configurations && settingsLaunch && settingsLaunch.configurations !== undefined) {
expected.configurations = settingsLaunch.configurations;
}
}
expected = expected || settingsLaunch;
assert.deepStrictEqual(actual && actual.workspaceValue, expected);
});
if ((launch && !Array.isArray(launch)) || (settingsLaunch && !Array.isArray(settingsLaunch))) {
testIt('delete launch.configurations', async () => {
await preferences.set('launch.configurations', undefined);
const actual = preferences.inspect('launch');
const actualWorkspaceValue = actual && actual.workspaceValue;
let expected = undefined;
if (launch) {
expected = { ...launch };
delete expected['configurations'];
}
if (settings) {
let _settingsLaunch = undefined;
if (typeof settingsLaunch === 'object' && !Array.isArray(settings['launch']) && settings['launch'] !== null) {
_settingsLaunch = settingsLaunch;
} else {
_settingsLaunch = expectation;
}
if (expected) {
if (_settingsLaunch.configurations !== undefined) {
expected.configurations = _settingsLaunch.configurations;
}
} else {
expected = _settingsLaunch;
}
}
assert.deepStrictEqual(actualWorkspaceValue, expected);
});
}
});
}
});