mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 04:09:28 +00:00
1609 lines
86 KiB
TypeScript
1609 lines
86 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
import assert from 'assert';
|
|
import { ResourceMap } from '../../../../base/common/map.js';
|
|
import { join } from '../../../../base/common/path.js';
|
|
import { URI } from '../../../../base/common/uri.js';
|
|
import { ensureNoDisposablesAreLeakedInTestSuite } from '../../../../base/test/common/utils.js';
|
|
import { Configuration, ConfigurationChangeEvent, ConfigurationModel, ConfigurationModelParser, mergeChanges } from '../../common/configurationModels.js';
|
|
import { IConfigurationRegistry, Extensions, ConfigurationScope, IConfigurationNode } from '../../common/configurationRegistry.js';
|
|
import { NullLogService } from '../../../log/common/log.js';
|
|
import { Registry } from '../../../registry/common/platform.js';
|
|
import { WorkspaceFolder } from '../../../workspace/common/workspace.js';
|
|
import { Workspace } from '../../../workspace/test/common/testWorkspace.js';
|
|
|
|
suite('ConfigurationModelParser', () => {
|
|
|
|
ensureNoDisposablesAreLeakedInTestSuite();
|
|
|
|
suiteSetup(() => {
|
|
Registry.as<IConfigurationRegistry>(Extensions.Configuration).registerConfiguration({
|
|
'id': 'ConfigurationModelParserTest',
|
|
'type': 'object',
|
|
'properties': {
|
|
'ConfigurationModelParserTest.windowSetting': {
|
|
'type': 'string',
|
|
'default': 'isSet',
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
test('parse configuration model with single override identifier', () => {
|
|
const testObject = new ConfigurationModelParser('', new NullLogService());
|
|
|
|
testObject.parse(JSON.stringify({ '[x]': { 'a': 1 } }));
|
|
|
|
assert.deepStrictEqual(JSON.stringify(testObject.configurationModel.overrides), JSON.stringify([{ identifiers: ['x'], keys: ['a'], contents: { 'a': 1 } }]));
|
|
});
|
|
|
|
test('parse configuration model with multiple override identifiers', () => {
|
|
const testObject = new ConfigurationModelParser('', new NullLogService());
|
|
|
|
testObject.parse(JSON.stringify({ '[x][y]': { 'a': 1 } }));
|
|
|
|
assert.deepStrictEqual(JSON.stringify(testObject.configurationModel.overrides), JSON.stringify([{ identifiers: ['x', 'y'], keys: ['a'], contents: { 'a': 1 } }]));
|
|
});
|
|
|
|
test('parse configuration model with multiple duplicate override identifiers', () => {
|
|
const testObject = new ConfigurationModelParser('', new NullLogService());
|
|
|
|
testObject.parse(JSON.stringify({ '[x][y][x][z]': { 'a': 1 } }));
|
|
|
|
assert.deepStrictEqual(JSON.stringify(testObject.configurationModel.overrides), JSON.stringify([{ identifiers: ['x', 'y', 'z'], keys: ['a'], contents: { 'a': 1 } }]));
|
|
});
|
|
|
|
test('parse configuration model with exclude option', () => {
|
|
const testObject = new ConfigurationModelParser('', new NullLogService());
|
|
|
|
testObject.parse(JSON.stringify({ 'a': 1, 'b': 2 }), { exclude: ['a'] });
|
|
|
|
assert.strictEqual(testObject.configurationModel.getValue('a'), undefined);
|
|
assert.strictEqual(testObject.configurationModel.getValue('b'), 2);
|
|
});
|
|
|
|
test('parse configuration model with exclude option even included', () => {
|
|
const testObject = new ConfigurationModelParser('', new NullLogService());
|
|
|
|
testObject.parse(JSON.stringify({ 'a': 1, 'b': 2 }), { exclude: ['a'], include: ['a'] });
|
|
|
|
assert.strictEqual(testObject.configurationModel.getValue('a'), undefined);
|
|
assert.strictEqual(testObject.configurationModel.getValue('b'), 2);
|
|
});
|
|
|
|
test('parse configuration model with scopes filter', () => {
|
|
const testObject = new ConfigurationModelParser('', new NullLogService());
|
|
|
|
testObject.parse(JSON.stringify({ 'ConfigurationModelParserTest.windowSetting': '1' }), { scopes: [ConfigurationScope.APPLICATION] });
|
|
|
|
assert.strictEqual(testObject.configurationModel.getValue('ConfigurationModelParserTest.windowSetting'), undefined);
|
|
});
|
|
|
|
test('parse configuration model with include option', () => {
|
|
const testObject = new ConfigurationModelParser('', new NullLogService());
|
|
|
|
testObject.parse(JSON.stringify({ 'ConfigurationModelParserTest.windowSetting': '1' }), { include: ['ConfigurationModelParserTest.windowSetting'], scopes: [ConfigurationScope.APPLICATION] });
|
|
|
|
assert.strictEqual(testObject.configurationModel.getValue('ConfigurationModelParserTest.windowSetting'), '1');
|
|
});
|
|
|
|
test('parse configuration model with invalid setting key', () => {
|
|
const testObject = new ConfigurationModelParser('', new NullLogService());
|
|
|
|
testObject.parse(JSON.stringify({ 'a': null, 'a.b.c': { c: 1 } }));
|
|
|
|
assert.strictEqual(testObject.configurationModel.getValue('a'), null);
|
|
assert.strictEqual(testObject.configurationModel.getValue('a.b'), undefined);
|
|
assert.strictEqual(testObject.configurationModel.getValue('a.b.c'), undefined);
|
|
});
|
|
|
|
});
|
|
|
|
suite('ConfigurationModelParser - Excluded Properties', () => {
|
|
|
|
ensureNoDisposablesAreLeakedInTestSuite();
|
|
|
|
const configurationRegistry = Registry.as<IConfigurationRegistry>(Extensions.Configuration);
|
|
|
|
let testConfigurationNodes: IConfigurationNode[] = [];
|
|
|
|
setup(() => reset());
|
|
teardown(() => reset());
|
|
|
|
function reset() {
|
|
if (testConfigurationNodes.length > 0) {
|
|
configurationRegistry.deregisterConfigurations(testConfigurationNodes);
|
|
testConfigurationNodes = [];
|
|
}
|
|
}
|
|
|
|
function registerTestConfiguration() {
|
|
const node = {
|
|
'id': 'ExcludedPropertiesTest',
|
|
'type': 'object',
|
|
'properties': {
|
|
'regularProperty': {
|
|
'type': 'string' as const,
|
|
'default': 'regular',
|
|
'restricted': false
|
|
},
|
|
'restrictedProperty': {
|
|
'type': 'string' as const,
|
|
'default': 'restricted',
|
|
'restricted': true
|
|
},
|
|
'excludedProperty': {
|
|
'type': 'string' as const,
|
|
'default': 'excluded',
|
|
'restricted': true,
|
|
'included': false
|
|
},
|
|
'excludedNonRestrictedProperty': {
|
|
'type': 'string' as const,
|
|
'default': 'excludedNonRestricted',
|
|
'restricted': false,
|
|
'included': false
|
|
}
|
|
}
|
|
};
|
|
|
|
configurationRegistry.registerConfiguration(node);
|
|
testConfigurationNodes.push(node);
|
|
return node;
|
|
}
|
|
|
|
test('should handle excluded restricted properties correctly', () => {
|
|
registerTestConfiguration();
|
|
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
const testData = {
|
|
'regularProperty': 'regularValue',
|
|
'restrictedProperty': 'restrictedValue',
|
|
'excludedProperty': 'excludedValue',
|
|
'excludedNonRestrictedProperty': 'excludedNonRestrictedValue'
|
|
};
|
|
|
|
testObject.parse(JSON.stringify(testData), { skipRestricted: true });
|
|
|
|
assert.strictEqual(testObject.configurationModel.getValue('regularProperty'), 'regularValue');
|
|
assert.strictEqual(testObject.configurationModel.getValue('restrictedProperty'), undefined);
|
|
assert.strictEqual(testObject.configurationModel.getValue('excludedProperty'), 'excludedValue');
|
|
assert.strictEqual(testObject.configurationModel.getValue('excludedNonRestrictedProperty'), 'excludedNonRestrictedValue');
|
|
assert.ok(testObject.restrictedConfigurations.includes('restrictedProperty'));
|
|
assert.ok(!testObject.restrictedConfigurations.includes('excludedProperty'));
|
|
});
|
|
|
|
test('should find excluded properties when checking for restricted settings', () => {
|
|
registerTestConfiguration();
|
|
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
const testData = {
|
|
'excludedProperty': 'excludedValue'
|
|
};
|
|
|
|
testObject.parse(JSON.stringify(testData));
|
|
|
|
assert.strictEqual(testObject.configurationModel.getValue('excludedProperty'), 'excludedValue');
|
|
assert.ok(!testObject.restrictedConfigurations.includes('excludedProperty'));
|
|
});
|
|
|
|
test('should handle override properties with excluded configurations', () => {
|
|
registerTestConfiguration();
|
|
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
const testData = {
|
|
'[typescript]': {
|
|
'regularProperty': 'overrideRegular',
|
|
'restrictedProperty': 'overrideRestricted',
|
|
'excludedProperty': 'overrideExcluded'
|
|
}
|
|
};
|
|
|
|
testObject.parse(JSON.stringify(testData), { skipRestricted: true });
|
|
|
|
const overrideConfig = testObject.configurationModel.override('typescript');
|
|
assert.strictEqual(overrideConfig.getValue('regularProperty'), 'overrideRegular');
|
|
assert.strictEqual(overrideConfig.getValue('restrictedProperty'), undefined);
|
|
assert.strictEqual(overrideConfig.getValue('excludedProperty'), 'overrideExcluded');
|
|
});
|
|
|
|
test('should handle scope filtering with excluded properties', () => {
|
|
const node = {
|
|
'id': 'ScopeExcludedTest',
|
|
'type': 'object',
|
|
'properties': {
|
|
'windowProperty': {
|
|
'type': 'string' as const,
|
|
'default': 'window',
|
|
'scope': ConfigurationScope.WINDOW
|
|
},
|
|
'applicationProperty': {
|
|
'type': 'string' as const,
|
|
'default': 'application',
|
|
'scope': ConfigurationScope.APPLICATION
|
|
},
|
|
'excludedApplicationProperty': {
|
|
'type': 'string' as const,
|
|
'default': 'excludedApplication',
|
|
'scope': ConfigurationScope.APPLICATION,
|
|
'included': false
|
|
}
|
|
}
|
|
};
|
|
|
|
configurationRegistry.registerConfiguration(node);
|
|
testConfigurationNodes.push(node);
|
|
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
const testData = {
|
|
'windowProperty': 'windowValue',
|
|
'applicationProperty': 'applicationValue',
|
|
'excludedApplicationProperty': 'excludedApplicationValue'
|
|
};
|
|
|
|
testObject.parse(JSON.stringify(testData), { scopes: [ConfigurationScope.WINDOW] });
|
|
|
|
assert.strictEqual(testObject.configurationModel.getValue('windowProperty'), 'windowValue');
|
|
assert.strictEqual(testObject.configurationModel.getValue('applicationProperty'), undefined);
|
|
assert.strictEqual(testObject.configurationModel.getValue('excludedApplicationProperty'), undefined);
|
|
});
|
|
|
|
test('filter should handle include/exclude options with excluded properties', () => {
|
|
registerTestConfiguration();
|
|
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
const testData = {
|
|
'regularProperty': 'regularValue',
|
|
'excludedProperty': 'excludedValue'
|
|
};
|
|
|
|
testObject.parse(JSON.stringify(testData), { include: ['excludedProperty'] });
|
|
|
|
assert.strictEqual(testObject.configurationModel.getValue('regularProperty'), 'regularValue');
|
|
assert.strictEqual(testObject.configurationModel.getValue('excludedProperty'), 'excludedValue');
|
|
});
|
|
|
|
test('should handle exclude options with excluded properties', () => {
|
|
registerTestConfiguration();
|
|
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
const testData = {
|
|
'regularProperty': 'regularValue',
|
|
'excludedProperty': 'excludedValue'
|
|
};
|
|
|
|
testObject.parse(JSON.stringify(testData), { exclude: ['regularProperty'] });
|
|
|
|
assert.strictEqual(testObject.configurationModel.getValue('regularProperty'), undefined);
|
|
assert.strictEqual(testObject.configurationModel.getValue('excludedProperty'), 'excludedValue');
|
|
});
|
|
|
|
test('should report hasExcludedProperties correctly when excluded properties are filtered', () => {
|
|
registerTestConfiguration();
|
|
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
const testData = {
|
|
'regularProperty': 'regularValue',
|
|
'restrictedProperty': 'restrictedValue',
|
|
'excludedProperty': 'excludedValue'
|
|
};
|
|
|
|
testObject.parse(JSON.stringify(testData), { skipRestricted: true });
|
|
|
|
const model = testObject.configurationModel;
|
|
|
|
assert.notStrictEqual(model.raw, undefined, 'Raw should be set when properties are excluded');
|
|
});
|
|
|
|
test('skipUnregistered should exclude unregistered properties', () => {
|
|
registerTestConfiguration();
|
|
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
|
|
testObject.parse(JSON.stringify({
|
|
'unregisteredProperty': 'value3'
|
|
}), { skipUnregistered: true });
|
|
|
|
assert.strictEqual(testObject.configurationModel.getValue('unregisteredProperty'), undefined);
|
|
});
|
|
|
|
test('shouldInclude method works correctly with excluded properties for skipUnregistered', () => {
|
|
registerTestConfiguration();
|
|
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
|
|
testObject.parse(JSON.stringify({
|
|
'regularProperty': 'value1',
|
|
'excludedProperty': 'value2',
|
|
'unregisteredProperty': 'value3'
|
|
}), { skipUnregistered: true });
|
|
|
|
assert.strictEqual(testObject.configurationModel.getValue('regularProperty'), 'value1');
|
|
assert.strictEqual(testObject.configurationModel.getValue('excludedProperty'), undefined);
|
|
assert.strictEqual(testObject.configurationModel.getValue('unregisteredProperty'), undefined);
|
|
});
|
|
|
|
test('excluded properties are found during property schema lookup', () => {
|
|
registerTestConfiguration();
|
|
|
|
const registry = Registry.as<IConfigurationRegistry>(Extensions.Configuration);
|
|
|
|
const excludedProperties = registry.getExcludedConfigurationProperties();
|
|
assert.ok(excludedProperties['excludedProperty'], 'Excluded property should be in excluded properties map');
|
|
assert.ok(excludedProperties['excludedNonRestrictedProperty'], 'Excluded non-restricted property should be in excluded properties map');
|
|
|
|
const regularProperties = registry.getConfigurationProperties();
|
|
assert.strictEqual(regularProperties['excludedProperty'], undefined, 'Excluded property should not be in regular properties map');
|
|
assert.strictEqual(regularProperties['excludedNonRestrictedProperty'], undefined, 'Excluded non-restricted property should not be in regular properties map');
|
|
|
|
assert.ok(regularProperties['regularProperty'], 'Regular property should be in regular properties map');
|
|
assert.ok(regularProperties['restrictedProperty'], 'Restricted property should be in regular properties map');
|
|
});
|
|
|
|
test('should correctly use shouldInclude with excluded properties for scope and unregistered filtering', () => {
|
|
registerTestConfiguration();
|
|
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
const testData = {
|
|
'regularProperty': 'regularValue',
|
|
'restrictedProperty': 'restrictedValue',
|
|
'excludedProperty': 'excludedValue',
|
|
'excludedNonRestrictedProperty': 'excludedNonRestrictedValue',
|
|
'unknownProperty': 'unknownValue'
|
|
};
|
|
|
|
testObject.parse(JSON.stringify(testData), { skipRestricted: true });
|
|
|
|
assert.strictEqual(testObject.configurationModel.getValue('regularProperty'), 'regularValue');
|
|
assert.strictEqual(testObject.configurationModel.getValue('restrictedProperty'), undefined);
|
|
assert.ok(testObject.restrictedConfigurations.includes('restrictedProperty'));
|
|
assert.strictEqual(testObject.configurationModel.getValue('excludedProperty'), 'excludedValue');
|
|
assert.ok(!testObject.restrictedConfigurations.includes('excludedProperty'));
|
|
assert.strictEqual(testObject.configurationModel.getValue('excludedNonRestrictedProperty'), 'excludedNonRestrictedValue');
|
|
assert.strictEqual(testObject.configurationModel.getValue('unknownProperty'), 'unknownValue');
|
|
});
|
|
});
|
|
|
|
suite('ConfigurationModel', () => {
|
|
|
|
ensureNoDisposablesAreLeakedInTestSuite();
|
|
|
|
test('setValue for a key that has no sections and not defined', () => {
|
|
const testObject = new ConfigurationModel({ 'a': { 'b': 1 } }, ['a.b'], [], undefined, new NullLogService());
|
|
|
|
testObject.setValue('f', 1);
|
|
|
|
assert.deepStrictEqual(testObject.contents, { 'a': { 'b': 1 }, 'f': 1 });
|
|
assert.deepStrictEqual(testObject.keys, ['a.b', 'f']);
|
|
});
|
|
|
|
test('setValue for a key that has no sections and defined', () => {
|
|
const testObject = new ConfigurationModel({ 'a': { 'b': 1 }, 'f': 1 }, ['a.b', 'f'], [], undefined, new NullLogService());
|
|
|
|
testObject.setValue('f', 3);
|
|
|
|
assert.deepStrictEqual(testObject.contents, { 'a': { 'b': 1 }, 'f': 3 });
|
|
assert.deepStrictEqual(testObject.keys, ['a.b', 'f']);
|
|
});
|
|
|
|
test('setValue for a key that has sections and not defined', () => {
|
|
const testObject = new ConfigurationModel({ 'a': { 'b': 1 }, 'f': 1 }, ['a.b', 'f'], [], undefined, new NullLogService());
|
|
|
|
testObject.setValue('b.c', 1);
|
|
|
|
const expected: Record<string, unknown> = {};
|
|
expected['a'] = { 'b': 1 };
|
|
expected['f'] = 1;
|
|
expected['b'] = Object.create(null);
|
|
(expected['b'] as Record<string, unknown>)['c'] = 1;
|
|
assert.deepStrictEqual(testObject.contents, expected);
|
|
assert.deepStrictEqual(testObject.keys, ['a.b', 'f', 'b.c']);
|
|
});
|
|
|
|
test('setValue for a key that has sections and defined', () => {
|
|
const testObject = new ConfigurationModel({ 'a': { 'b': 1 }, 'b': { 'c': 1 }, 'f': 1 }, ['a.b', 'b.c', 'f'], [], undefined, new NullLogService());
|
|
|
|
testObject.setValue('b.c', 3);
|
|
|
|
assert.deepStrictEqual(testObject.contents, { 'a': { 'b': 1 }, 'b': { 'c': 3 }, 'f': 1 });
|
|
assert.deepStrictEqual(testObject.keys, ['a.b', 'b.c', 'f']);
|
|
});
|
|
|
|
test('setValue for a key that has sections and sub section not defined', () => {
|
|
const testObject = new ConfigurationModel({ 'a': { 'b': 1 }, 'f': 1 }, ['a.b', 'f'], [], undefined, new NullLogService());
|
|
|
|
testObject.setValue('a.c', 1);
|
|
|
|
assert.deepStrictEqual(testObject.contents, { 'a': { 'b': 1, 'c': 1 }, 'f': 1 });
|
|
assert.deepStrictEqual(testObject.keys, ['a.b', 'f', 'a.c']);
|
|
});
|
|
|
|
test('setValue for a key that has sections and sub section defined', () => {
|
|
const testObject = new ConfigurationModel({ 'a': { 'b': 1, 'c': 1 }, 'f': 1 }, ['a.b', 'a.c', 'f'], [], undefined, new NullLogService());
|
|
|
|
testObject.setValue('a.c', 3);
|
|
|
|
assert.deepStrictEqual(testObject.contents, { 'a': { 'b': 1, 'c': 3 }, 'f': 1 });
|
|
assert.deepStrictEqual(testObject.keys, ['a.b', 'a.c', 'f']);
|
|
});
|
|
|
|
test('setValue for a key that has sections and last section is added', () => {
|
|
const testObject = new ConfigurationModel({ 'a': { 'b': {} }, 'f': 1 }, ['a.b', 'f'], [], undefined, new NullLogService());
|
|
|
|
testObject.setValue('a.b.c', 1);
|
|
|
|
assert.deepStrictEqual(testObject.contents, { 'a': { 'b': { 'c': 1 } }, 'f': 1 });
|
|
assert.deepStrictEqual(testObject.keys, ['a.b', 'f', 'a.b.c']);
|
|
});
|
|
|
|
test('removeValue: remove a non existing key', () => {
|
|
const testObject = new ConfigurationModel({ 'a': { 'b': 2 } }, ['a.b'], [], undefined, new NullLogService());
|
|
|
|
testObject.removeValue('a.b.c');
|
|
|
|
assert.deepStrictEqual(testObject.contents, { 'a': { 'b': 2 } });
|
|
assert.deepStrictEqual(testObject.keys, ['a.b']);
|
|
});
|
|
|
|
test('removeValue: remove a single segmented key', () => {
|
|
const testObject = new ConfigurationModel({ 'a': 1 }, ['a'], [], undefined, new NullLogService());
|
|
|
|
testObject.removeValue('a');
|
|
|
|
assert.deepStrictEqual(testObject.contents, {});
|
|
assert.deepStrictEqual(testObject.keys, []);
|
|
});
|
|
|
|
test('removeValue: remove a multi segmented key', () => {
|
|
const testObject = new ConfigurationModel({ 'a': { 'b': 1 } }, ['a.b'], [], undefined, new NullLogService());
|
|
|
|
testObject.removeValue('a.b');
|
|
|
|
assert.deepStrictEqual(testObject.contents, {});
|
|
assert.deepStrictEqual(testObject.keys, []);
|
|
});
|
|
|
|
test('get overriding configuration model for an existing identifier', () => {
|
|
const testObject = new ConfigurationModel(
|
|
{ 'a': { 'b': 1 }, 'f': 1 }, [],
|
|
[{ identifiers: ['c'], contents: { 'a': { 'd': 1 } }, keys: ['a'] }], [], new NullLogService());
|
|
|
|
assert.deepStrictEqual(testObject.override('c').contents, { 'a': { 'b': 1, 'd': 1 }, 'f': 1 });
|
|
});
|
|
|
|
test('get overriding configuration model for an identifier that does not exist', () => {
|
|
const testObject = new ConfigurationModel(
|
|
{ 'a': { 'b': 1 }, 'f': 1 }, [],
|
|
[{ identifiers: ['c'], contents: { 'a': { 'd': 1 } }, keys: ['a'] }], [], new NullLogService());
|
|
|
|
assert.deepStrictEqual(testObject.override('xyz').contents, { 'a': { 'b': 1 }, 'f': 1 });
|
|
});
|
|
|
|
test('get overriding configuration when one of the keys does not exist in base', () => {
|
|
const testObject = new ConfigurationModel(
|
|
{ 'a': { 'b': 1 }, 'f': 1 }, [],
|
|
[{ identifiers: ['c'], contents: { 'a': { 'd': 1 }, 'g': 1 }, keys: ['a', 'g'] }], [], new NullLogService());
|
|
|
|
assert.deepStrictEqual(testObject.override('c').contents, { 'a': { 'b': 1, 'd': 1 }, 'f': 1, 'g': 1 });
|
|
});
|
|
|
|
test('get overriding configuration when one of the key in base is not of object type', () => {
|
|
const testObject = new ConfigurationModel(
|
|
{ 'a': { 'b': 1 }, 'f': 1 }, [],
|
|
[{ identifiers: ['c'], contents: { 'a': { 'd': 1 }, 'f': { 'g': 1 } }, keys: ['a', 'f'] }], [], new NullLogService());
|
|
|
|
assert.deepStrictEqual(testObject.override('c').contents, { 'a': { 'b': 1, 'd': 1 }, 'f': { 'g': 1 } });
|
|
});
|
|
|
|
test('get overriding configuration when one of the key in overriding contents is not of object type', () => {
|
|
const testObject = new ConfigurationModel(
|
|
{ 'a': { 'b': 1 }, 'f': { 'g': 1 } }, [],
|
|
[{ identifiers: ['c'], contents: { 'a': { 'd': 1 }, 'f': 1 }, keys: ['a', 'f'] }], [], new NullLogService());
|
|
|
|
assert.deepStrictEqual(testObject.override('c').contents, { 'a': { 'b': 1, 'd': 1 }, 'f': 1 });
|
|
});
|
|
|
|
test('get overriding configuration if the value of overriding identifier is not object', () => {
|
|
const testObject = new ConfigurationModel(
|
|
{ 'a': { 'b': 1 }, 'f': { 'g': 1 } }, [],
|
|
[{ identifiers: ['c'], contents: 'abc' as unknown as Record<string, unknown>, keys: [] }], [], new NullLogService());
|
|
|
|
assert.deepStrictEqual(testObject.override('c').contents, { 'a': { 'b': 1 }, 'f': { 'g': 1 } });
|
|
});
|
|
|
|
test('get overriding configuration if the value of overriding identifier is an empty object', () => {
|
|
const testObject = new ConfigurationModel(
|
|
{ 'a': { 'b': 1 }, 'f': { 'g': 1 } }, [],
|
|
[{ identifiers: ['c'], contents: {}, keys: [] }], [], new NullLogService());
|
|
|
|
assert.deepStrictEqual(testObject.override('c').contents, { 'a': { 'b': 1 }, 'f': { 'g': 1 } });
|
|
});
|
|
|
|
test('simple merge', () => {
|
|
const base = new ConfigurationModel({ 'a': 1, 'b': 2 }, ['a', 'b'], [], undefined, new NullLogService());
|
|
const add = new ConfigurationModel({ 'a': 3, 'c': 4 }, ['a', 'c'], [], undefined, new NullLogService());
|
|
const result = base.merge(add);
|
|
|
|
assert.deepStrictEqual(result.contents, { 'a': 3, 'b': 2, 'c': 4 });
|
|
assert.deepStrictEqual(result.keys, ['a', 'b', 'c']);
|
|
});
|
|
|
|
test('recursive merge', () => {
|
|
const base = new ConfigurationModel({ 'a': { 'b': 1 } }, ['a.b'], [], undefined, new NullLogService());
|
|
const add = new ConfigurationModel({ 'a': { 'b': 2 } }, ['a.b'], [], undefined, new NullLogService());
|
|
const result = base.merge(add);
|
|
|
|
assert.deepStrictEqual(result.contents, { 'a': { 'b': 2 } });
|
|
assert.deepStrictEqual(result.getValue('a'), { 'b': 2 });
|
|
assert.deepStrictEqual(result.keys, ['a.b']);
|
|
});
|
|
|
|
test('simple merge overrides', () => {
|
|
const base = new ConfigurationModel({ 'a': { 'b': 1 } }, ['a.b'], [{ identifiers: ['c'], contents: { 'a': 2 }, keys: ['a'] }], undefined, new NullLogService());
|
|
const add = new ConfigurationModel({ 'a': { 'b': 2 } }, ['a.b'], [{ identifiers: ['c'], contents: { 'b': 2 }, keys: ['b'] }], undefined, new NullLogService());
|
|
const result = base.merge(add);
|
|
|
|
assert.deepStrictEqual(result.contents, { 'a': { 'b': 2 } });
|
|
assert.deepStrictEqual(result.overrides, [{ identifiers: ['c'], contents: { 'a': 2, 'b': 2 }, keys: ['a', 'b'] }]);
|
|
assert.deepStrictEqual(result.override('c').contents, { 'a': 2, 'b': 2 });
|
|
assert.deepStrictEqual(result.keys, ['a.b']);
|
|
});
|
|
|
|
test('recursive merge overrides', () => {
|
|
const base = new ConfigurationModel({ 'a': { 'b': 1 }, 'f': 1 }, ['a.b', 'f'], [{ identifiers: ['c'], contents: { 'a': { 'd': 1 } }, keys: ['a'] }], undefined, new NullLogService());
|
|
const add = new ConfigurationModel({ 'a': { 'b': 2 } }, ['a.b'], [{ identifiers: ['c'], contents: { 'a': { 'e': 2 } }, keys: ['a'] }], undefined, new NullLogService());
|
|
const result = base.merge(add);
|
|
|
|
assert.deepStrictEqual(result.contents, { 'a': { 'b': 2 }, 'f': 1 });
|
|
assert.deepStrictEqual(result.overrides, [{ identifiers: ['c'], contents: { 'a': { 'd': 1, 'e': 2 } }, keys: ['a'] }]);
|
|
assert.deepStrictEqual(result.override('c').contents, { 'a': { 'b': 2, 'd': 1, 'e': 2 }, 'f': 1 });
|
|
assert.deepStrictEqual(result.keys, ['a.b', 'f']);
|
|
});
|
|
|
|
test('Test contents while getting an existing property', () => {
|
|
let testObject = new ConfigurationModel({ 'a': 1 }, [], [], undefined, new NullLogService());
|
|
assert.deepStrictEqual(testObject.getValue('a'), 1);
|
|
|
|
testObject = new ConfigurationModel({ 'a': { 'b': 1 } }, [], [], undefined, new NullLogService());
|
|
assert.deepStrictEqual(testObject.getValue('a'), { 'b': 1 });
|
|
});
|
|
|
|
test('Test contents are undefined for non existing properties', () => {
|
|
const testObject = new ConfigurationModel({ awesome: true }, [], [], undefined, new NullLogService());
|
|
|
|
assert.deepStrictEqual(testObject.getValue('unknownproperty'), undefined);
|
|
});
|
|
|
|
test('Test override gives all content merged with overrides', () => {
|
|
const testObject = new ConfigurationModel({ 'a': 1, 'c': 1 }, [], [{ identifiers: ['b'], contents: { 'a': 2 }, keys: ['a'] }], undefined, new NullLogService());
|
|
|
|
assert.deepStrictEqual(testObject.override('b').contents, { 'a': 2, 'c': 1 });
|
|
});
|
|
|
|
test('Test override when an override has multiple identifiers', () => {
|
|
const testObject = new ConfigurationModel({ 'a': 1, 'c': 1 }, ['a', 'c'], [{ identifiers: ['x', 'y'], contents: { 'a': 2 }, keys: ['a'] }], undefined, new NullLogService());
|
|
|
|
let actual = testObject.override('x');
|
|
assert.deepStrictEqual(actual.contents, { 'a': 2, 'c': 1 });
|
|
assert.deepStrictEqual(actual.keys, ['a', 'c']);
|
|
assert.deepStrictEqual(testObject.getKeysForOverrideIdentifier('x'), ['a']);
|
|
|
|
actual = testObject.override('y');
|
|
assert.deepStrictEqual(actual.contents, { 'a': 2, 'c': 1 });
|
|
assert.deepStrictEqual(actual.keys, ['a', 'c']);
|
|
assert.deepStrictEqual(testObject.getKeysForOverrideIdentifier('y'), ['a']);
|
|
});
|
|
|
|
test('Test override when an identifier is defined in multiple overrides', () => {
|
|
const testObject = new ConfigurationModel({ 'a': 1, 'c': 1 }, ['a', 'c'], [{ identifiers: ['x'], contents: { 'a': 3, 'b': 1 }, keys: ['a', 'b'] }, { identifiers: ['x', 'y'], contents: { 'a': 2 }, keys: ['a'] }], undefined, new NullLogService());
|
|
|
|
const actual = testObject.override('x');
|
|
assert.deepStrictEqual(actual.contents, { 'a': 3, 'c': 1, 'b': 1 });
|
|
assert.deepStrictEqual(actual.keys, ['a', 'c']);
|
|
|
|
assert.deepStrictEqual(testObject.getKeysForOverrideIdentifier('x'), ['a', 'b']);
|
|
});
|
|
|
|
test('Test merge when configuration models have multiple identifiers', () => {
|
|
const testObject = new ConfigurationModel({ 'a': 1, 'c': 1 }, ['a', 'c'], [{ identifiers: ['y'], contents: { 'c': 1 }, keys: ['c'] }, { identifiers: ['x', 'y'], contents: { 'a': 2 }, keys: ['a'] }], undefined, new NullLogService());
|
|
const target = new ConfigurationModel({ 'a': 2, 'b': 1 }, ['a', 'b'], [{ identifiers: ['x'], contents: { 'a': 3, 'b': 2 }, keys: ['a', 'b'] }, { identifiers: ['x', 'y'], contents: { 'b': 3 }, keys: ['b'] }], undefined, new NullLogService());
|
|
|
|
const actual = testObject.merge(target);
|
|
|
|
assert.deepStrictEqual(actual.contents, { 'a': 2, 'c': 1, 'b': 1 });
|
|
assert.deepStrictEqual(actual.keys, ['a', 'c', 'b']);
|
|
assert.deepStrictEqual(actual.overrides, [
|
|
{ identifiers: ['y'], contents: { 'c': 1 }, keys: ['c'] },
|
|
{ identifiers: ['x', 'y'], contents: { 'a': 2, 'b': 3 }, keys: ['a', 'b'] },
|
|
{ identifiers: ['x'], contents: { 'a': 3, 'b': 2 }, keys: ['a', 'b'] },
|
|
]);
|
|
});
|
|
|
|
test('inspect when raw is same', () => {
|
|
const testObject = new ConfigurationModel({ 'a': 1, 'c': 1 }, ['a', 'c'], [{ identifiers: ['x', 'y'], contents: { 'a': 2, 'b': 1 }, keys: ['a'] }], undefined, new NullLogService());
|
|
|
|
assert.deepStrictEqual(testObject.inspect('a'), { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(testObject.inspect('a', 'x'), { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(testObject.inspect('b', 'x'), { value: undefined, override: 1, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 1 }] });
|
|
assert.deepStrictEqual(testObject.inspect('d'), { value: undefined, override: undefined, merged: undefined, overrides: undefined });
|
|
});
|
|
|
|
test('inspect when raw is not same', () => {
|
|
const testObject = new ConfigurationModel({ 'a': 1, 'c': 1 }, ['a', 'c'], [{ identifiers: ['x', 'y'], contents: { 'a': 2, }, keys: ['a'] }], {
|
|
'a': 1,
|
|
'b': 2,
|
|
'c': 1,
|
|
'd': 3,
|
|
'[x][y]': {
|
|
'a': 2,
|
|
'b': 1
|
|
}
|
|
}, new NullLogService());
|
|
|
|
assert.deepStrictEqual(testObject.inspect('a'), { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(testObject.inspect('a', 'x'), { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(testObject.inspect('b', 'x'), { value: 2, override: 1, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 1 }] });
|
|
assert.deepStrictEqual(testObject.inspect('d'), { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(testObject.inspect('e'), { value: undefined, override: undefined, merged: undefined, overrides: undefined });
|
|
});
|
|
|
|
test('inspect in merged configuration when raw is same', () => {
|
|
const target1 = new ConfigurationModel({ 'a': 1 }, ['a'], [{ identifiers: ['x', 'y'], contents: { 'a': 2, }, keys: ['a'] }], undefined, new NullLogService());
|
|
const target2 = new ConfigurationModel({ 'b': 3 }, ['b'], [], undefined, new NullLogService());
|
|
const testObject = target1.merge(target2);
|
|
|
|
assert.deepStrictEqual(testObject.inspect('a'), { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(testObject.inspect('a', 'x'), { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(testObject.inspect('b'), { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(testObject.inspect('b', 'y'), { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(testObject.inspect('c'), { value: undefined, override: undefined, merged: undefined, overrides: undefined });
|
|
});
|
|
|
|
test('inspect in merged configuration when raw is not same for one model', () => {
|
|
const target1 = new ConfigurationModel({ 'a': 1 }, ['a'], [{ identifiers: ['x', 'y'], contents: { 'a': 2, }, keys: ['a'] }], {
|
|
'a': 1,
|
|
'b': 2,
|
|
'c': 3,
|
|
'[x][y]': {
|
|
'a': 2,
|
|
'b': 4,
|
|
}
|
|
}, new NullLogService());
|
|
const target2 = new ConfigurationModel({ 'b': 3 }, ['b'], [], undefined, new NullLogService());
|
|
const testObject = target1.merge(target2);
|
|
|
|
assert.deepStrictEqual(testObject.inspect('a'), { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(testObject.inspect('a', 'x'), { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(testObject.inspect('b'), { value: 3, override: undefined, merged: 3, overrides: [{ identifiers: ['x', 'y'], value: 4 }] });
|
|
assert.deepStrictEqual(testObject.inspect('b', 'y'), { value: 3, override: 4, merged: 4, overrides: [{ identifiers: ['x', 'y'], value: 4 }] });
|
|
assert.deepStrictEqual(testObject.inspect('c'), { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
});
|
|
|
|
test('inspect: return all overrides', () => {
|
|
const testObject = new ConfigurationModel({ 'a': 1, 'c': 1 }, ['a', 'c'], [
|
|
{ identifiers: ['x', 'y'], contents: { 'a': 2, 'b': 1 }, keys: ['a', 'b'] },
|
|
{ identifiers: ['x'], contents: { 'a': 3 }, keys: ['a'] },
|
|
{ identifiers: ['y'], contents: { 'b': 3 }, keys: ['b'] }
|
|
], undefined, new NullLogService());
|
|
|
|
assert.deepStrictEqual(testObject.inspect('a').overrides, [
|
|
{ identifiers: ['x', 'y'], value: 2 },
|
|
{ identifiers: ['x'], value: 3 }
|
|
]);
|
|
});
|
|
|
|
test('inspect when no overrides', () => {
|
|
const testObject = new ConfigurationModel({ 'a': 1, 'c': 1 }, ['a', 'c'], [], undefined, new NullLogService());
|
|
|
|
assert.strictEqual(testObject.inspect('a').overrides, undefined);
|
|
});
|
|
|
|
});
|
|
|
|
suite('CustomConfigurationModel', () => {
|
|
|
|
ensureNoDisposablesAreLeakedInTestSuite();
|
|
|
|
test('simple merge using models', () => {
|
|
const base = new ConfigurationModelParser('base', new NullLogService());
|
|
base.parse(JSON.stringify({ 'a': 1, 'b': 2 }));
|
|
|
|
const add = new ConfigurationModelParser('add', new NullLogService());
|
|
add.parse(JSON.stringify({ 'a': 3, 'c': 4 }));
|
|
|
|
const result = base.configurationModel.merge(add.configurationModel);
|
|
assert.deepStrictEqual(result.contents, { 'a': 3, 'b': 2, 'c': 4 });
|
|
});
|
|
|
|
test('simple merge with an undefined contents', () => {
|
|
let base = new ConfigurationModelParser('base', new NullLogService());
|
|
base.parse(JSON.stringify({ 'a': 1, 'b': 2 }));
|
|
let add = new ConfigurationModelParser('add', new NullLogService());
|
|
let result = base.configurationModel.merge(add.configurationModel);
|
|
assert.deepStrictEqual(result.contents, { 'a': 1, 'b': 2 });
|
|
|
|
base = new ConfigurationModelParser('base', new NullLogService());
|
|
add = new ConfigurationModelParser('add', new NullLogService());
|
|
add.parse(JSON.stringify({ 'a': 1, 'b': 2 }));
|
|
result = base.configurationModel.merge(add.configurationModel);
|
|
assert.deepStrictEqual(result.contents, { 'a': 1, 'b': 2 });
|
|
|
|
base = new ConfigurationModelParser('base', new NullLogService());
|
|
add = new ConfigurationModelParser('add', new NullLogService());
|
|
result = base.configurationModel.merge(add.configurationModel);
|
|
assert.deepStrictEqual(result.contents, {});
|
|
});
|
|
|
|
test('Recursive merge using config models', () => {
|
|
const base = new ConfigurationModelParser('base', new NullLogService());
|
|
base.parse(JSON.stringify({ 'a': { 'b': 1 } }));
|
|
const add = new ConfigurationModelParser('add', new NullLogService());
|
|
add.parse(JSON.stringify({ 'a': { 'b': 2 } }));
|
|
const result = base.configurationModel.merge(add.configurationModel);
|
|
assert.deepStrictEqual(result.contents, { 'a': { 'b': 2 } });
|
|
});
|
|
|
|
test('Test contents while getting an existing property', () => {
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
testObject.parse(JSON.stringify({ 'a': 1 }));
|
|
assert.deepStrictEqual(testObject.configurationModel.getValue('a'), 1);
|
|
|
|
testObject.parse(JSON.stringify({ 'a': { 'b': 1 } }));
|
|
assert.deepStrictEqual(testObject.configurationModel.getValue('a'), { 'b': 1 });
|
|
});
|
|
|
|
test('Test contents are undefined for non existing properties', () => {
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
testObject.parse(JSON.stringify({
|
|
awesome: true
|
|
}));
|
|
|
|
assert.deepStrictEqual(testObject.configurationModel.getValue('unknownproperty'), undefined);
|
|
});
|
|
|
|
test('Test contents are undefined for undefined config', () => {
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
|
|
assert.deepStrictEqual(testObject.configurationModel.getValue('unknownproperty'), undefined);
|
|
});
|
|
|
|
test('Test configWithOverrides gives all content merged with overrides', () => {
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
testObject.parse(JSON.stringify({ 'a': 1, 'c': 1, '[b]': { 'a': 2 } }));
|
|
|
|
assert.deepStrictEqual(testObject.configurationModel.override('b').contents, { 'a': 2, 'c': 1, '[b]': { 'a': 2 } });
|
|
});
|
|
|
|
test('Test configWithOverrides gives empty contents', () => {
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
|
|
assert.deepStrictEqual(testObject.configurationModel.override('b').contents, {});
|
|
});
|
|
|
|
test('Test update with empty data', () => {
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
testObject.parse('');
|
|
|
|
assert.deepStrictEqual(testObject.configurationModel.contents, Object.create(null));
|
|
assert.deepStrictEqual(testObject.configurationModel.keys, []);
|
|
|
|
testObject.parse(null);
|
|
|
|
assert.deepStrictEqual(testObject.configurationModel.contents, Object.create(null));
|
|
assert.deepStrictEqual(testObject.configurationModel.keys, []);
|
|
|
|
testObject.parse(undefined);
|
|
|
|
assert.deepStrictEqual(testObject.configurationModel.contents, Object.create(null));
|
|
assert.deepStrictEqual(testObject.configurationModel.keys, []);
|
|
});
|
|
|
|
test('Test empty property is not ignored', () => {
|
|
const testObject = new ConfigurationModelParser('test', new NullLogService());
|
|
testObject.parse(JSON.stringify({ '': 1 }));
|
|
|
|
// deepStrictEqual seems to ignore empty properties, fall back
|
|
// to comparing the output of JSON.stringify
|
|
assert.strictEqual(JSON.stringify(testObject.configurationModel.contents), JSON.stringify({ '': 1 }));
|
|
assert.deepStrictEqual(testObject.configurationModel.keys, ['']);
|
|
});
|
|
|
|
});
|
|
|
|
export class TestConfiguration extends Configuration {
|
|
|
|
constructor(
|
|
defaultConfiguration: ConfigurationModel,
|
|
policyConfiguration: ConfigurationModel,
|
|
applicationConfiguration: ConfigurationModel,
|
|
localUserConfiguration: ConfigurationModel,
|
|
remoteUserConfiguration?: ConfigurationModel,
|
|
) {
|
|
super(
|
|
defaultConfiguration,
|
|
policyConfiguration,
|
|
applicationConfiguration,
|
|
localUserConfiguration,
|
|
remoteUserConfiguration ?? ConfigurationModel.createEmptyModel(new NullLogService()),
|
|
ConfigurationModel.createEmptyModel(new NullLogService()),
|
|
new ResourceMap<ConfigurationModel>(),
|
|
ConfigurationModel.createEmptyModel(new NullLogService()),
|
|
new ResourceMap<ConfigurationModel>(),
|
|
new NullLogService()
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
suite('Configuration', () => {
|
|
|
|
ensureNoDisposablesAreLeakedInTestSuite();
|
|
|
|
test('Test inspect for overrideIdentifiers', () => {
|
|
const defaultConfigurationModel = parseConfigurationModel({ '[l1]': { 'a': 1 }, '[l2]': { 'b': 1 } });
|
|
const userConfigurationModel = parseConfigurationModel({ '[l3]': { 'a': 2 } });
|
|
const workspaceConfigurationModel = parseConfigurationModel({ '[l1]': { 'a': 3 }, '[l4]': { 'a': 3 } });
|
|
const testObject: Configuration = new TestConfiguration(defaultConfigurationModel, ConfigurationModel.createEmptyModel(new NullLogService()), userConfigurationModel, workspaceConfigurationModel);
|
|
|
|
const { overrideIdentifiers } = testObject.inspect('a', {}, undefined);
|
|
|
|
assert.deepStrictEqual(overrideIdentifiers, ['l1', 'l3', 'l4']);
|
|
});
|
|
|
|
test('Test update value', () => {
|
|
const parser = new ConfigurationModelParser('test', new NullLogService());
|
|
parser.parse(JSON.stringify({ 'a': 1 }));
|
|
const testObject: Configuration = new TestConfiguration(parser.configurationModel, ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
|
|
testObject.updateValue('a', 2);
|
|
|
|
assert.strictEqual(testObject.getValue('a', {}, undefined), 2);
|
|
});
|
|
|
|
test('Test update value after inspect', () => {
|
|
const parser = new ConfigurationModelParser('test', new NullLogService());
|
|
parser.parse(JSON.stringify({ 'a': 1 }));
|
|
const testObject: Configuration = new TestConfiguration(parser.configurationModel, ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
|
|
testObject.inspect('a', {}, undefined);
|
|
testObject.updateValue('a', 2);
|
|
|
|
assert.strictEqual(testObject.getValue('a', {}, undefined), 2);
|
|
});
|
|
|
|
test('Test compare and update default configuration', () => {
|
|
const testObject = new TestConfiguration(ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
testObject.updateDefaultConfiguration(toConfigurationModel({
|
|
'editor.lineNumbers': 'on',
|
|
}));
|
|
|
|
const actual = testObject.compareAndUpdateDefaultConfiguration(toConfigurationModel({
|
|
'editor.lineNumbers': 'off',
|
|
'[markdown]': {
|
|
'editor.wordWrap': 'off'
|
|
}
|
|
}), ['editor.lineNumbers', '[markdown]']);
|
|
|
|
assert.deepStrictEqual(actual, { keys: ['editor.lineNumbers', '[markdown]'], overrides: [['markdown', ['editor.wordWrap']]] });
|
|
|
|
});
|
|
|
|
test('Test compare and update application configuration', () => {
|
|
const testObject = new TestConfiguration(ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
testObject.updateApplicationConfiguration(toConfigurationModel({
|
|
'update.mode': 'on',
|
|
}));
|
|
|
|
const actual = testObject.compareAndUpdateApplicationConfiguration(toConfigurationModel({
|
|
'update.mode': 'none',
|
|
'[typescript]': {
|
|
'editor.wordWrap': 'off'
|
|
}
|
|
}));
|
|
|
|
assert.deepStrictEqual(actual, { keys: ['[typescript]', 'update.mode',], overrides: [['typescript', ['editor.wordWrap']]] });
|
|
|
|
});
|
|
|
|
test('Test compare and update user configuration', () => {
|
|
const testObject = new TestConfiguration(ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
testObject.updateLocalUserConfiguration(toConfigurationModel({
|
|
'editor.lineNumbers': 'off',
|
|
'editor.fontSize': 12,
|
|
'[typescript]': {
|
|
'editor.wordWrap': 'off'
|
|
}
|
|
}));
|
|
|
|
const actual = testObject.compareAndUpdateLocalUserConfiguration(toConfigurationModel({
|
|
'editor.lineNumbers': 'on',
|
|
'window.zoomLevel': 1,
|
|
'[typescript]': {
|
|
'editor.wordWrap': 'on',
|
|
'editor.insertSpaces': false
|
|
}
|
|
}));
|
|
|
|
assert.deepStrictEqual(actual, { keys: ['window.zoomLevel', 'editor.lineNumbers', '[typescript]', 'editor.fontSize'], overrides: [['typescript', ['editor.insertSpaces', 'editor.wordWrap']]] });
|
|
|
|
});
|
|
|
|
test('Test compare and update workspace configuration', () => {
|
|
const testObject = new TestConfiguration(ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
testObject.updateWorkspaceConfiguration(toConfigurationModel({
|
|
'editor.lineNumbers': 'off',
|
|
'editor.fontSize': 12,
|
|
'[typescript]': {
|
|
'editor.wordWrap': 'off'
|
|
}
|
|
}));
|
|
|
|
const actual = testObject.compareAndUpdateWorkspaceConfiguration(toConfigurationModel({
|
|
'editor.lineNumbers': 'on',
|
|
'window.zoomLevel': 1,
|
|
'[typescript]': {
|
|
'editor.wordWrap': 'on',
|
|
'editor.insertSpaces': false
|
|
}
|
|
}));
|
|
|
|
assert.deepStrictEqual(actual, { keys: ['window.zoomLevel', 'editor.lineNumbers', '[typescript]', 'editor.fontSize'], overrides: [['typescript', ['editor.insertSpaces', 'editor.wordWrap']]] });
|
|
|
|
});
|
|
|
|
test('Test compare and update workspace folder configuration', () => {
|
|
const testObject = new TestConfiguration(ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
testObject.updateFolderConfiguration(URI.file('file1'), toConfigurationModel({
|
|
'editor.lineNumbers': 'off',
|
|
'editor.fontSize': 12,
|
|
'[typescript]': {
|
|
'editor.wordWrap': 'off'
|
|
}
|
|
}));
|
|
|
|
const actual = testObject.compareAndUpdateFolderConfiguration(URI.file('file1'), toConfigurationModel({
|
|
'editor.lineNumbers': 'on',
|
|
'window.zoomLevel': 1,
|
|
'[typescript]': {
|
|
'editor.wordWrap': 'on',
|
|
'editor.insertSpaces': false
|
|
}
|
|
}));
|
|
|
|
assert.deepStrictEqual(actual, { keys: ['window.zoomLevel', 'editor.lineNumbers', '[typescript]', 'editor.fontSize'], overrides: [['typescript', ['editor.insertSpaces', 'editor.wordWrap']]] });
|
|
|
|
});
|
|
|
|
test('Test compare and delete workspace folder configuration', () => {
|
|
const testObject = new TestConfiguration(ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
testObject.updateFolderConfiguration(URI.file('file1'), toConfigurationModel({
|
|
'editor.lineNumbers': 'off',
|
|
'editor.fontSize': 12,
|
|
'[typescript]': {
|
|
'editor.wordWrap': 'off'
|
|
}
|
|
}));
|
|
|
|
const actual = testObject.compareAndDeleteFolderConfiguration(URI.file('file1'));
|
|
|
|
assert.deepStrictEqual(actual, { keys: ['editor.lineNumbers', 'editor.fontSize', '[typescript]'], overrides: [['typescript', ['editor.wordWrap']]] });
|
|
|
|
});
|
|
|
|
function parseConfigurationModel(content: Record<string, unknown>): ConfigurationModel {
|
|
const parser = new ConfigurationModelParser('test', new NullLogService());
|
|
parser.parse(JSON.stringify(content));
|
|
return parser.configurationModel;
|
|
}
|
|
|
|
});
|
|
|
|
suite('ConfigurationChangeEvent', () => {
|
|
|
|
ensureNoDisposablesAreLeakedInTestSuite();
|
|
|
|
test('changeEvent affecting keys with new configuration', () => {
|
|
const configuration = new TestConfiguration(ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
const change = configuration.compareAndUpdateLocalUserConfiguration(toConfigurationModel({
|
|
'window.zoomLevel': 1,
|
|
'workbench.editor.enablePreview': false,
|
|
'files.autoSave': 'off',
|
|
}));
|
|
const testObject = new ConfigurationChangeEvent(change, undefined, configuration, undefined, new NullLogService());
|
|
|
|
assert.deepStrictEqual([...testObject.affectedKeys], ['window.zoomLevel', 'workbench.editor.enablePreview', 'files.autoSave']);
|
|
|
|
assert.ok(testObject.affectsConfiguration('window.zoomLevel'));
|
|
assert.ok(testObject.affectsConfiguration('window'));
|
|
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor.enablePreview'));
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor'));
|
|
assert.ok(testObject.affectsConfiguration('workbench'));
|
|
|
|
assert.ok(testObject.affectsConfiguration('files'));
|
|
assert.ok(testObject.affectsConfiguration('files.autoSave'));
|
|
assert.ok(!testObject.affectsConfiguration('files.exclude'));
|
|
|
|
assert.ok(!testObject.affectsConfiguration('[markdown]'));
|
|
assert.ok(!testObject.affectsConfiguration('editor'));
|
|
});
|
|
|
|
test('changeEvent affecting keys when configuration changed', () => {
|
|
const configuration = new TestConfiguration(ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
configuration.updateLocalUserConfiguration(toConfigurationModel({
|
|
'window.zoomLevel': 2,
|
|
'workbench.editor.enablePreview': true,
|
|
'files.autoSave': 'off',
|
|
}));
|
|
const data = configuration.toData();
|
|
const change = configuration.compareAndUpdateLocalUserConfiguration(toConfigurationModel({
|
|
'window.zoomLevel': 1,
|
|
'workbench.editor.enablePreview': false,
|
|
'files.autoSave': 'off',
|
|
}));
|
|
const testObject = new ConfigurationChangeEvent(change, { data }, configuration, undefined, new NullLogService());
|
|
|
|
assert.deepStrictEqual([...testObject.affectedKeys], ['window.zoomLevel', 'workbench.editor.enablePreview']);
|
|
|
|
assert.ok(testObject.affectsConfiguration('window.zoomLevel'));
|
|
assert.ok(testObject.affectsConfiguration('window'));
|
|
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor.enablePreview'));
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor'));
|
|
assert.ok(testObject.affectsConfiguration('workbench'));
|
|
|
|
assert.ok(!testObject.affectsConfiguration('files'));
|
|
assert.ok(!testObject.affectsConfiguration('[markdown]'));
|
|
assert.ok(!testObject.affectsConfiguration('editor'));
|
|
});
|
|
|
|
test('changeEvent affecting overrides with new configuration', () => {
|
|
const configuration = new TestConfiguration(ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
const change = configuration.compareAndUpdateLocalUserConfiguration(toConfigurationModel({
|
|
'files.autoSave': 'off',
|
|
'[markdown]': {
|
|
'editor.wordWrap': 'off'
|
|
},
|
|
'[typescript][jsonc]': {
|
|
'editor.lineNumbers': 'off'
|
|
}
|
|
}));
|
|
const testObject = new ConfigurationChangeEvent(change, undefined, configuration, undefined, new NullLogService());
|
|
|
|
assert.deepStrictEqual([...testObject.affectedKeys], ['files.autoSave', '[markdown]', '[typescript][jsonc]', 'editor.wordWrap', 'editor.lineNumbers']);
|
|
|
|
assert.ok(testObject.affectsConfiguration('files'));
|
|
assert.ok(testObject.affectsConfiguration('files.autoSave'));
|
|
assert.ok(!testObject.affectsConfiguration('files.exclude'));
|
|
|
|
assert.ok(testObject.affectsConfiguration('[markdown]'));
|
|
assert.ok(!testObject.affectsConfiguration('[markdown].editor'));
|
|
assert.ok(!testObject.affectsConfiguration('[markdown].workbench'));
|
|
|
|
assert.ok(testObject.affectsConfiguration('editor'));
|
|
assert.ok(testObject.affectsConfiguration('editor.wordWrap'));
|
|
assert.ok(testObject.affectsConfiguration('editor.lineNumbers'));
|
|
assert.ok(testObject.affectsConfiguration('editor', { overrideIdentifier: 'markdown' }));
|
|
assert.ok(testObject.affectsConfiguration('editor', { overrideIdentifier: 'jsonc' }));
|
|
assert.ok(testObject.affectsConfiguration('editor', { overrideIdentifier: 'typescript' }));
|
|
assert.ok(testObject.affectsConfiguration('editor.wordWrap', { overrideIdentifier: 'markdown' }));
|
|
assert.ok(!testObject.affectsConfiguration('editor.wordWrap', { overrideIdentifier: 'jsonc' }));
|
|
assert.ok(!testObject.affectsConfiguration('editor.wordWrap', { overrideIdentifier: 'typescript' }));
|
|
assert.ok(!testObject.affectsConfiguration('editor.lineNumbers', { overrideIdentifier: 'markdown' }));
|
|
assert.ok(testObject.affectsConfiguration('editor.lineNumbers', { overrideIdentifier: 'typescript' }));
|
|
assert.ok(testObject.affectsConfiguration('editor.lineNumbers', { overrideIdentifier: 'jsonc' }));
|
|
assert.ok(!testObject.affectsConfiguration('editor', { overrideIdentifier: 'json' }));
|
|
assert.ok(!testObject.affectsConfiguration('editor.fontSize', { overrideIdentifier: 'markdown' }));
|
|
|
|
assert.ok(!testObject.affectsConfiguration('editor.fontSize'));
|
|
assert.ok(!testObject.affectsConfiguration('window'));
|
|
});
|
|
|
|
test('changeEvent affecting overrides when configuration changed', () => {
|
|
const configuration = new TestConfiguration(ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
configuration.updateLocalUserConfiguration(toConfigurationModel({
|
|
'workbench.editor.enablePreview': true,
|
|
'[markdown]': {
|
|
'editor.fontSize': 12,
|
|
'editor.wordWrap': 'off'
|
|
},
|
|
'[css][scss]': {
|
|
'editor.lineNumbers': 'off',
|
|
'css.lint.emptyRules': 'error'
|
|
},
|
|
'files.autoSave': 'off',
|
|
}));
|
|
const data = configuration.toData();
|
|
const change = configuration.compareAndUpdateLocalUserConfiguration(toConfigurationModel({
|
|
'files.autoSave': 'off',
|
|
'[markdown]': {
|
|
'editor.fontSize': 13,
|
|
'editor.wordWrap': 'off'
|
|
},
|
|
'[css][scss]': {
|
|
'editor.lineNumbers': 'relative',
|
|
'css.lint.emptyRules': 'error'
|
|
},
|
|
'window.zoomLevel': 1,
|
|
}));
|
|
const testObject = new ConfigurationChangeEvent(change, { data }, configuration, undefined, new NullLogService());
|
|
|
|
assert.deepStrictEqual([...testObject.affectedKeys], ['window.zoomLevel', '[markdown]', '[css][scss]', 'workbench.editor.enablePreview', 'editor.fontSize', 'editor.lineNumbers']);
|
|
|
|
assert.ok(!testObject.affectsConfiguration('files'));
|
|
|
|
assert.ok(testObject.affectsConfiguration('[markdown]'));
|
|
assert.ok(!testObject.affectsConfiguration('[markdown].editor'));
|
|
assert.ok(!testObject.affectsConfiguration('[markdown].editor.fontSize'));
|
|
assert.ok(!testObject.affectsConfiguration('[markdown].editor.wordWrap'));
|
|
assert.ok(!testObject.affectsConfiguration('[markdown].workbench'));
|
|
assert.ok(testObject.affectsConfiguration('[css][scss]'));
|
|
|
|
assert.ok(testObject.affectsConfiguration('editor'));
|
|
assert.ok(testObject.affectsConfiguration('editor', { overrideIdentifier: 'markdown' }));
|
|
assert.ok(testObject.affectsConfiguration('editor', { overrideIdentifier: 'css' }));
|
|
assert.ok(testObject.affectsConfiguration('editor', { overrideIdentifier: 'scss' }));
|
|
assert.ok(testObject.affectsConfiguration('editor.fontSize', { overrideIdentifier: 'markdown' }));
|
|
assert.ok(!testObject.affectsConfiguration('editor.fontSize', { overrideIdentifier: 'css' }));
|
|
assert.ok(!testObject.affectsConfiguration('editor.fontSize', { overrideIdentifier: 'scss' }));
|
|
assert.ok(testObject.affectsConfiguration('editor.lineNumbers', { overrideIdentifier: 'scss' }));
|
|
assert.ok(testObject.affectsConfiguration('editor.lineNumbers', { overrideIdentifier: 'css' }));
|
|
assert.ok(!testObject.affectsConfiguration('editor.lineNumbers', { overrideIdentifier: 'markdown' }));
|
|
assert.ok(!testObject.affectsConfiguration('editor.wordWrap'));
|
|
assert.ok(!testObject.affectsConfiguration('editor.wordWrap', { overrideIdentifier: 'markdown' }));
|
|
assert.ok(!testObject.affectsConfiguration('editor', { overrideIdentifier: 'json' }));
|
|
assert.ok(!testObject.affectsConfiguration('editor.fontSize', { overrideIdentifier: 'json' }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('window'));
|
|
assert.ok(testObject.affectsConfiguration('window.zoomLevel'));
|
|
assert.ok(testObject.affectsConfiguration('window', { overrideIdentifier: 'markdown' }));
|
|
assert.ok(testObject.affectsConfiguration('window.zoomLevel', { overrideIdentifier: 'markdown' }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('workbench'));
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor'));
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor.enablePreview'));
|
|
assert.ok(testObject.affectsConfiguration('workbench', { overrideIdentifier: 'markdown' }));
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor', { overrideIdentifier: 'markdown' }));
|
|
});
|
|
|
|
test('changeEvent affecting workspace folders', () => {
|
|
const configuration = new TestConfiguration(ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
configuration.updateWorkspaceConfiguration(toConfigurationModel({ 'window.title': 'custom' }));
|
|
configuration.updateFolderConfiguration(URI.file('folder1'), toConfigurationModel({ 'window.zoomLevel': 2, 'window.restoreFullscreen': true }));
|
|
configuration.updateFolderConfiguration(URI.file('folder2'), toConfigurationModel({ 'workbench.editor.enablePreview': true, 'window.restoreWindows': true }));
|
|
const data = configuration.toData();
|
|
const workspace = new Workspace('a', [new WorkspaceFolder({ index: 0, name: 'a', uri: URI.file('folder1') }), new WorkspaceFolder({ index: 1, name: 'b', uri: URI.file('folder2') }), new WorkspaceFolder({ index: 2, name: 'c', uri: URI.file('folder3') })]);
|
|
const change = mergeChanges(
|
|
configuration.compareAndUpdateWorkspaceConfiguration(toConfigurationModel({ 'window.title': 'native' })),
|
|
configuration.compareAndUpdateFolderConfiguration(URI.file('folder1'), toConfigurationModel({ 'window.zoomLevel': 1, 'window.restoreFullscreen': false })),
|
|
configuration.compareAndUpdateFolderConfiguration(URI.file('folder2'), toConfigurationModel({ 'workbench.editor.enablePreview': false, 'window.restoreWindows': false }))
|
|
);
|
|
const testObject = new ConfigurationChangeEvent(change, { data, workspace }, configuration, workspace, new NullLogService());
|
|
|
|
assert.deepStrictEqual([...testObject.affectedKeys], ['window.title', 'window.zoomLevel', 'window.restoreFullscreen', 'workbench.editor.enablePreview', 'window.restoreWindows']);
|
|
|
|
assert.ok(testObject.affectsConfiguration('window.zoomLevel'));
|
|
assert.ok(testObject.affectsConfiguration('window.zoomLevel', { resource: URI.file('folder1') }));
|
|
assert.ok(testObject.affectsConfiguration('window.zoomLevel', { resource: URI.file(join('folder1', 'file1')) }));
|
|
assert.ok(!testObject.affectsConfiguration('window.zoomLevel', { resource: URI.file('file1') }));
|
|
assert.ok(!testObject.affectsConfiguration('window.zoomLevel', { resource: URI.file('file2') }));
|
|
assert.ok(!testObject.affectsConfiguration('window.zoomLevel', { resource: URI.file(join('folder2', 'file2')) }));
|
|
assert.ok(!testObject.affectsConfiguration('window.zoomLevel', { resource: URI.file(join('folder3', 'file3')) }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('window.restoreFullscreen'));
|
|
assert.ok(testObject.affectsConfiguration('window.restoreFullscreen', { resource: URI.file(join('folder1', 'file1')) }));
|
|
assert.ok(testObject.affectsConfiguration('window.restoreFullscreen', { resource: URI.file('folder1') }));
|
|
assert.ok(!testObject.affectsConfiguration('window.restoreFullscreen', { resource: URI.file('file1') }));
|
|
assert.ok(!testObject.affectsConfiguration('window.restoreFullscreen', { resource: URI.file('file2') }));
|
|
assert.ok(!testObject.affectsConfiguration('window.restoreFullscreen', { resource: URI.file(join('folder2', 'file2')) }));
|
|
assert.ok(!testObject.affectsConfiguration('window.restoreFullscreen', { resource: URI.file(join('folder3', 'file3')) }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('window.restoreWindows'));
|
|
assert.ok(testObject.affectsConfiguration('window.restoreWindows', { resource: URI.file('folder2') }));
|
|
assert.ok(testObject.affectsConfiguration('window.restoreWindows', { resource: URI.file(join('folder2', 'file2')) }));
|
|
assert.ok(!testObject.affectsConfiguration('window.restoreWindows', { resource: URI.file('file2') }));
|
|
assert.ok(!testObject.affectsConfiguration('window.restoreWindows', { resource: URI.file(join('folder1', 'file1')) }));
|
|
assert.ok(!testObject.affectsConfiguration('window.restoreWindows', { resource: URI.file(join('folder3', 'file3')) }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('window.title'));
|
|
assert.ok(testObject.affectsConfiguration('window.title', { resource: URI.file('folder1') }));
|
|
assert.ok(testObject.affectsConfiguration('window.title', { resource: URI.file(join('folder1', 'file1')) }));
|
|
assert.ok(testObject.affectsConfiguration('window.title', { resource: URI.file('folder2') }));
|
|
assert.ok(testObject.affectsConfiguration('window.title', { resource: URI.file(join('folder2', 'file2')) }));
|
|
assert.ok(testObject.affectsConfiguration('window.title', { resource: URI.file('folder3') }));
|
|
assert.ok(testObject.affectsConfiguration('window.title', { resource: URI.file(join('folder3', 'file3')) }));
|
|
assert.ok(testObject.affectsConfiguration('window.title', { resource: URI.file('file1') }));
|
|
assert.ok(testObject.affectsConfiguration('window.title', { resource: URI.file('file2') }));
|
|
assert.ok(testObject.affectsConfiguration('window.title', { resource: URI.file('file3') }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('window'));
|
|
assert.ok(testObject.affectsConfiguration('window', { resource: URI.file('folder1') }));
|
|
assert.ok(testObject.affectsConfiguration('window', { resource: URI.file(join('folder1', 'file1')) }));
|
|
assert.ok(testObject.affectsConfiguration('window', { resource: URI.file('folder2') }));
|
|
assert.ok(testObject.affectsConfiguration('window', { resource: URI.file(join('folder2', 'file2')) }));
|
|
assert.ok(testObject.affectsConfiguration('window', { resource: URI.file('folder3') }));
|
|
assert.ok(testObject.affectsConfiguration('window', { resource: URI.file(join('folder3', 'file3')) }));
|
|
assert.ok(testObject.affectsConfiguration('window', { resource: URI.file('file1') }));
|
|
assert.ok(testObject.affectsConfiguration('window', { resource: URI.file('file2') }));
|
|
assert.ok(testObject.affectsConfiguration('window', { resource: URI.file('file3') }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor.enablePreview'));
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor.enablePreview', { resource: URI.file('folder2') }));
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor.enablePreview', { resource: URI.file(join('folder2', 'file2')) }));
|
|
assert.ok(!testObject.affectsConfiguration('workbench.editor.enablePreview', { resource: URI.file('folder1') }));
|
|
assert.ok(!testObject.affectsConfiguration('workbench.editor.enablePreview', { resource: URI.file(join('folder1', 'file1')) }));
|
|
assert.ok(!testObject.affectsConfiguration('workbench.editor.enablePreview', { resource: URI.file('folder3') }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor'));
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor', { resource: URI.file('folder2') }));
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor', { resource: URI.file(join('folder2', 'file2')) }));
|
|
assert.ok(!testObject.affectsConfiguration('workbench.editor', { resource: URI.file('folder1') }));
|
|
assert.ok(!testObject.affectsConfiguration('workbench.editor', { resource: URI.file(join('folder1', 'file1')) }));
|
|
assert.ok(!testObject.affectsConfiguration('workbench.editor', { resource: URI.file('folder3') }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('workbench'));
|
|
assert.ok(testObject.affectsConfiguration('workbench', { resource: URI.file('folder2') }));
|
|
assert.ok(testObject.affectsConfiguration('workbench', { resource: URI.file(join('folder2', 'file2')) }));
|
|
assert.ok(!testObject.affectsConfiguration('workbench', { resource: URI.file('folder1') }));
|
|
assert.ok(!testObject.affectsConfiguration('workbench', { resource: URI.file('folder3') }));
|
|
|
|
assert.ok(!testObject.affectsConfiguration('files'));
|
|
assert.ok(!testObject.affectsConfiguration('files', { resource: URI.file('folder1') }));
|
|
assert.ok(!testObject.affectsConfiguration('files', { resource: URI.file(join('folder1', 'file1')) }));
|
|
assert.ok(!testObject.affectsConfiguration('files', { resource: URI.file('folder2') }));
|
|
assert.ok(!testObject.affectsConfiguration('files', { resource: URI.file(join('folder2', 'file2')) }));
|
|
assert.ok(!testObject.affectsConfiguration('files', { resource: URI.file('folder3') }));
|
|
assert.ok(!testObject.affectsConfiguration('files', { resource: URI.file(join('folder3', 'file3')) }));
|
|
});
|
|
|
|
test('changeEvent - all', () => {
|
|
const configuration = new TestConfiguration(ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
configuration.updateFolderConfiguration(URI.file('file1'), toConfigurationModel({ 'window.zoomLevel': 2, 'window.restoreFullscreen': true }));
|
|
const data = configuration.toData();
|
|
const change = mergeChanges(
|
|
configuration.compareAndUpdateDefaultConfiguration(toConfigurationModel({
|
|
'editor.lineNumbers': 'off',
|
|
'[markdown]': {
|
|
'editor.wordWrap': 'off'
|
|
}
|
|
}), ['editor.lineNumbers', '[markdown]']),
|
|
configuration.compareAndUpdateLocalUserConfiguration(toConfigurationModel({
|
|
'[json]': {
|
|
'editor.lineNumbers': 'relative'
|
|
}
|
|
})),
|
|
configuration.compareAndUpdateWorkspaceConfiguration(toConfigurationModel({ 'window.title': 'custom' })),
|
|
configuration.compareAndDeleteFolderConfiguration(URI.file('file1')),
|
|
configuration.compareAndUpdateFolderConfiguration(URI.file('file2'), toConfigurationModel({ 'workbench.editor.enablePreview': true, 'window.restoreWindows': true })));
|
|
const workspace = new Workspace('a', [new WorkspaceFolder({ index: 0, name: 'a', uri: URI.file('file1') }), new WorkspaceFolder({ index: 1, name: 'b', uri: URI.file('file2') }), new WorkspaceFolder({ index: 2, name: 'c', uri: URI.file('folder3') })]);
|
|
const testObject = new ConfigurationChangeEvent(change, { data, workspace }, configuration, workspace, new NullLogService());
|
|
|
|
assert.deepStrictEqual([...testObject.affectedKeys], ['editor.lineNumbers', '[markdown]', '[json]', 'window.title', 'window.zoomLevel', 'window.restoreFullscreen', 'workbench.editor.enablePreview', 'window.restoreWindows', 'editor.wordWrap']);
|
|
|
|
assert.ok(testObject.affectsConfiguration('window.title'));
|
|
assert.ok(testObject.affectsConfiguration('window.title', { resource: URI.file('file1') }));
|
|
assert.ok(testObject.affectsConfiguration('window.title', { resource: URI.file('file2') }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('window'));
|
|
assert.ok(testObject.affectsConfiguration('window', { resource: URI.file('file1') }));
|
|
assert.ok(testObject.affectsConfiguration('window', { resource: URI.file('file2') }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('window.zoomLevel'));
|
|
assert.ok(testObject.affectsConfiguration('window.zoomLevel', { resource: URI.file('file1') }));
|
|
assert.ok(!testObject.affectsConfiguration('window.zoomLevel', { resource: URI.file('file2') }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('window.restoreFullscreen'));
|
|
assert.ok(testObject.affectsConfiguration('window.restoreFullscreen', { resource: URI.file('file1') }));
|
|
assert.ok(!testObject.affectsConfiguration('window.restoreFullscreen', { resource: URI.file('file2') }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('window.restoreWindows'));
|
|
assert.ok(testObject.affectsConfiguration('window.restoreWindows', { resource: URI.file('file2') }));
|
|
assert.ok(!testObject.affectsConfiguration('window.restoreWindows', { resource: URI.file('file1') }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor.enablePreview'));
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor.enablePreview', { resource: URI.file('file2') }));
|
|
assert.ok(!testObject.affectsConfiguration('workbench.editor.enablePreview', { resource: URI.file('file1') }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor'));
|
|
assert.ok(testObject.affectsConfiguration('workbench.editor', { resource: URI.file('file2') }));
|
|
assert.ok(!testObject.affectsConfiguration('workbench.editor', { resource: URI.file('file1') }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('workbench'));
|
|
assert.ok(testObject.affectsConfiguration('workbench', { resource: URI.file('file2') }));
|
|
assert.ok(!testObject.affectsConfiguration('workbench', { resource: URI.file('file1') }));
|
|
|
|
assert.ok(!testObject.affectsConfiguration('files'));
|
|
assert.ok(!testObject.affectsConfiguration('files', { resource: URI.file('file1') }));
|
|
assert.ok(!testObject.affectsConfiguration('files', { resource: URI.file('file2') }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('editor'));
|
|
assert.ok(testObject.affectsConfiguration('editor', { resource: URI.file('file1') }));
|
|
assert.ok(testObject.affectsConfiguration('editor', { resource: URI.file('file2') }));
|
|
assert.ok(testObject.affectsConfiguration('editor', { resource: URI.file('file1'), overrideIdentifier: 'json' }));
|
|
assert.ok(testObject.affectsConfiguration('editor', { resource: URI.file('file1'), overrideIdentifier: 'markdown' }));
|
|
assert.ok(testObject.affectsConfiguration('editor', { resource: URI.file('file1'), overrideIdentifier: 'typescript' }));
|
|
assert.ok(testObject.affectsConfiguration('editor', { resource: URI.file('file2'), overrideIdentifier: 'json' }));
|
|
assert.ok(testObject.affectsConfiguration('editor', { resource: URI.file('file2'), overrideIdentifier: 'markdown' }));
|
|
assert.ok(testObject.affectsConfiguration('editor', { resource: URI.file('file2'), overrideIdentifier: 'typescript' }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('editor.lineNumbers'));
|
|
assert.ok(testObject.affectsConfiguration('editor.lineNumbers', { resource: URI.file('file1') }));
|
|
assert.ok(testObject.affectsConfiguration('editor.lineNumbers', { resource: URI.file('file2') }));
|
|
assert.ok(testObject.affectsConfiguration('editor.lineNumbers', { resource: URI.file('file1'), overrideIdentifier: 'json' }));
|
|
assert.ok(testObject.affectsConfiguration('editor.lineNumbers', { resource: URI.file('file1'), overrideIdentifier: 'markdown' }));
|
|
assert.ok(testObject.affectsConfiguration('editor.lineNumbers', { resource: URI.file('file1'), overrideIdentifier: 'typescript' }));
|
|
assert.ok(testObject.affectsConfiguration('editor.lineNumbers', { resource: URI.file('file2'), overrideIdentifier: 'json' }));
|
|
assert.ok(testObject.affectsConfiguration('editor.lineNumbers', { resource: URI.file('file2'), overrideIdentifier: 'markdown' }));
|
|
assert.ok(testObject.affectsConfiguration('editor.lineNumbers', { resource: URI.file('file2'), overrideIdentifier: 'typescript' }));
|
|
|
|
assert.ok(testObject.affectsConfiguration('editor.wordWrap'));
|
|
assert.ok(!testObject.affectsConfiguration('editor.wordWrap', { resource: URI.file('file1') }));
|
|
assert.ok(!testObject.affectsConfiguration('editor.wordWrap', { resource: URI.file('file2') }));
|
|
assert.ok(!testObject.affectsConfiguration('editor.wordWrap', { resource: URI.file('file1'), overrideIdentifier: 'json' }));
|
|
assert.ok(testObject.affectsConfiguration('editor.wordWrap', { resource: URI.file('file1'), overrideIdentifier: 'markdown' }));
|
|
assert.ok(!testObject.affectsConfiguration('editor.wordWrap', { resource: URI.file('file1'), overrideIdentifier: 'typescript' }));
|
|
assert.ok(!testObject.affectsConfiguration('editor.wordWrap', { resource: URI.file('file2'), overrideIdentifier: 'json' }));
|
|
assert.ok(testObject.affectsConfiguration('editor.wordWrap', { resource: URI.file('file2'), overrideIdentifier: 'markdown' }));
|
|
assert.ok(!testObject.affectsConfiguration('editor.wordWrap', { resource: URI.file('file2'), overrideIdentifier: 'typescript' }));
|
|
|
|
assert.ok(!testObject.affectsConfiguration('editor.fontSize'));
|
|
assert.ok(!testObject.affectsConfiguration('editor.fontSize', { resource: URI.file('file1') }));
|
|
assert.ok(!testObject.affectsConfiguration('editor.fontSize', { resource: URI.file('file2') }));
|
|
});
|
|
|
|
test('changeEvent affecting tasks and launches', () => {
|
|
const configuration = new TestConfiguration(ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
const change = configuration.compareAndUpdateLocalUserConfiguration(toConfigurationModel({
|
|
'launch': {
|
|
'configuraiton': {}
|
|
},
|
|
'launch.version': 1,
|
|
'tasks': {
|
|
'version': 2
|
|
}
|
|
}));
|
|
const testObject = new ConfigurationChangeEvent(change, undefined, configuration, undefined, new NullLogService());
|
|
|
|
assert.deepStrictEqual([...testObject.affectedKeys], ['launch', 'launch.version', 'tasks']);
|
|
assert.ok(testObject.affectsConfiguration('launch'));
|
|
assert.ok(testObject.affectsConfiguration('launch.version'));
|
|
assert.ok(testObject.affectsConfiguration('tasks'));
|
|
});
|
|
|
|
test('affectsConfiguration returns false for empty string', () => {
|
|
const configuration = new TestConfiguration(ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()), ConfigurationModel.createEmptyModel(new NullLogService()));
|
|
const change = configuration.compareAndUpdateLocalUserConfiguration(toConfigurationModel({ 'window.zoomLevel': 1 }));
|
|
const testObject = new ConfigurationChangeEvent(change, undefined, configuration, undefined, new NullLogService());
|
|
|
|
assert.strictEqual(false, testObject.affectsConfiguration(''));
|
|
});
|
|
|
|
});
|
|
|
|
suite('Configuration.Parse', () => {
|
|
|
|
const logService = new NullLogService();
|
|
ensureNoDisposablesAreLeakedInTestSuite();
|
|
|
|
test('parsing configuration only with local user configuration and raw is same', () => {
|
|
const configuration = new TestConfiguration(
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
new ConfigurationModel({ 'a': 1, 'c': 1 }, ['a', 'c'], [{ identifiers: ['x', 'y'], contents: { 'a': 2, 'b': 1 }, keys: ['a'] }], undefined, logService)
|
|
);
|
|
|
|
const actual = Configuration.parse(configuration.toData(), logService);
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).userLocal, { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).userLocal, { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'x' }, undefined).userLocal, { value: undefined, override: 1, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 1 }] });
|
|
assert.deepStrictEqual(actual.inspect('d', {}, undefined).userLocal, undefined);
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).userRemote, undefined);
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).userRemote, undefined);
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'x' }, undefined).userRemote, undefined);
|
|
assert.deepStrictEqual(actual.inspect('d', {}, undefined).userRemote, undefined);
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).user, { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).user, { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'x' }, undefined).user, { value: undefined, override: 1, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 1 }] });
|
|
assert.deepStrictEqual(actual.inspect('d', {}, undefined).user, undefined);
|
|
});
|
|
|
|
test('parsing configuration only with local user configuration and raw is not same', () => {
|
|
const configuration = new TestConfiguration(
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
new ConfigurationModel({ 'a': 1, 'c': 1 }, ['a', 'c'], [{ identifiers: ['x', 'y'], contents: { 'a': 2, }, keys: ['a'] }], {
|
|
'a': 1,
|
|
'b': 2,
|
|
'c': 1,
|
|
'd': 3,
|
|
'[x][y]': {
|
|
'a': 2,
|
|
'b': 1
|
|
}
|
|
}, logService)
|
|
);
|
|
|
|
const actual = Configuration.parse(configuration.toData(), logService);
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).userLocal, { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).userLocal, { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'x' }, undefined).userLocal, { value: 2, override: 1, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 1 }] });
|
|
assert.deepStrictEqual(actual.inspect('d', {}, undefined).userLocal, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('e', {}, undefined).userLocal, undefined);
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).userRemote, undefined);
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).userRemote, undefined);
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'x' }, undefined).userRemote, undefined);
|
|
assert.deepStrictEqual(actual.inspect('d', {}, undefined).userRemote, undefined);
|
|
assert.deepStrictEqual(actual.inspect('e', {}, undefined).userRemote, undefined);
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).user, { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).user, { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'x' }, undefined).user, { value: 2, override: 1, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 1 }] });
|
|
assert.deepStrictEqual(actual.inspect('d', {}, undefined).user, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('e', {}, undefined).user, undefined);
|
|
});
|
|
|
|
test('parsing configuration with local and remote user configuration and raw is same for both', () => {
|
|
const configuration = new TestConfiguration(
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
new ConfigurationModel({ 'a': 1 }, ['a'], [{ identifiers: ['x', 'y'], contents: { 'a': 2, }, keys: ['a'] }], undefined, logService),
|
|
new ConfigurationModel({ 'b': 3 }, ['b'], [], undefined, logService)
|
|
);
|
|
|
|
const actual = Configuration.parse(configuration.toData(), logService);
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).userLocal, { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).userLocal, { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('b', {}, undefined).userLocal, undefined);
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'y' }, undefined).userLocal, undefined);
|
|
assert.deepStrictEqual(actual.inspect('c', {}, undefined).userLocal, undefined);
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).userRemote, undefined);
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).userRemote, undefined);
|
|
assert.deepStrictEqual(actual.inspect('b', {}, undefined).userRemote, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'y' }, undefined).userRemote, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('c', {}, undefined).userRemote, undefined);
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).user, { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).user, { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('b', {}, undefined).user, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'y' }, undefined).user, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('c', {}, undefined).user, undefined);
|
|
});
|
|
|
|
test('parsing configuration with local and remote user configuration and raw is not same for local user', () => {
|
|
const configuration = new TestConfiguration(
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
new ConfigurationModel({ 'a': 1 }, ['a'], [{ identifiers: ['x', 'y'], contents: { 'a': 2, }, keys: ['a'] }], {
|
|
'a': 1,
|
|
'b': 2,
|
|
'c': 3,
|
|
'[x][y]': {
|
|
'a': 2,
|
|
'b': 4,
|
|
}
|
|
}, logService),
|
|
new ConfigurationModel({ 'b': 3 }, ['b'], [], undefined, logService)
|
|
);
|
|
|
|
const actual = Configuration.parse(configuration.toData(), logService);
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).userLocal, { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).userLocal, { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('b', {}, undefined).userLocal, { value: 2, override: undefined, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 4 }] });
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'y' }, undefined).userLocal, { value: 2, override: 4, merged: 4, overrides: [{ identifiers: ['x', 'y'], value: 4 }] });
|
|
assert.deepStrictEqual(actual.inspect('c', {}, undefined).userLocal, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).userRemote, undefined);
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).userRemote, undefined);
|
|
assert.deepStrictEqual(actual.inspect('b', {}, undefined).userRemote, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'y' }, undefined).userRemote, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('c', {}, undefined).userRemote, undefined);
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).user, { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).user, { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('b', {}, undefined).user, { value: 3, merged: 3, override: undefined, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'y' }, undefined).user, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('c', {}, undefined).user, undefined);
|
|
});
|
|
|
|
test('parsing configuration with local and remote user configuration and raw is not same for remote user', () => {
|
|
const configuration = new TestConfiguration(
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
new ConfigurationModel({ 'b': 3 }, ['b'], [], undefined, logService),
|
|
new ConfigurationModel({ 'a': 1 }, ['a'], [{ identifiers: ['x', 'y'], contents: { 'a': 2, }, keys: ['a'] }], {
|
|
'a': 1,
|
|
'b': 2,
|
|
'c': 3,
|
|
'[x][y]': {
|
|
'a': 2,
|
|
'b': 4,
|
|
}
|
|
}, logService),
|
|
);
|
|
|
|
const actual = Configuration.parse(configuration.toData(), logService);
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).userLocal, undefined);
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).userLocal, undefined);
|
|
assert.deepStrictEqual(actual.inspect('b', {}, undefined).userLocal, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'y' }, undefined).userLocal, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('c', {}, undefined).userLocal, undefined);
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).userRemote, { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).userRemote, { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('b', {}, undefined).userRemote, { value: 2, override: undefined, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 4 }] });
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'y' }, undefined).userRemote, { value: 2, override: 4, merged: 4, overrides: [{ identifiers: ['x', 'y'], value: 4 }] });
|
|
assert.deepStrictEqual(actual.inspect('c', {}, undefined).userRemote, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).user, { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).user, { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('b', {}, undefined).user, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'y' }, undefined).user, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('c', {}, undefined).user, undefined);
|
|
});
|
|
|
|
test('parsing configuration with local and remote user configuration and raw is not same for both', () => {
|
|
const configuration = new TestConfiguration(
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
ConfigurationModel.createEmptyModel(logService),
|
|
new ConfigurationModel({ 'b': 3 }, ['b'], [], {
|
|
'a': 4,
|
|
'b': 3
|
|
}, logService),
|
|
new ConfigurationModel({ 'a': 1 }, ['a'], [{ identifiers: ['x', 'y'], contents: { 'a': 2, }, keys: ['a'] }], {
|
|
'a': 1,
|
|
'b': 2,
|
|
'c': 3,
|
|
'[x][y]': {
|
|
'a': 2,
|
|
'b': 4,
|
|
}
|
|
}, logService),
|
|
);
|
|
|
|
const actual = Configuration.parse(configuration.toData(), logService);
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).userLocal, { value: 4, override: undefined, merged: 4, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).userLocal, { value: 4, override: undefined, merged: 4, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('b', {}, undefined).userLocal, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'y' }, undefined).userLocal, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('c', {}, undefined).userLocal, undefined);
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).userRemote, { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).userRemote, { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('b', {}, undefined).userRemote, { value: 2, override: undefined, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 4 }] });
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'y' }, undefined).userRemote, { value: 2, override: 4, merged: 4, overrides: [{ identifiers: ['x', 'y'], value: 4 }] });
|
|
assert.deepStrictEqual(actual.inspect('c', {}, undefined).userRemote, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
|
|
assert.deepStrictEqual(actual.inspect('a', {}, undefined).user, { value: 1, override: undefined, merged: 1, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('a', { overrideIdentifier: 'x' }, undefined).user, { value: 1, override: 2, merged: 2, overrides: [{ identifiers: ['x', 'y'], value: 2 }] });
|
|
assert.deepStrictEqual(actual.inspect('b', {}, undefined).user, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('b', { overrideIdentifier: 'y' }, undefined).user, { value: 3, override: undefined, merged: 3, overrides: undefined });
|
|
assert.deepStrictEqual(actual.inspect('c', {}, undefined).user, undefined);
|
|
});
|
|
|
|
|
|
});
|
|
|
|
function toConfigurationModel(obj: Record<string, unknown>): ConfigurationModel {
|
|
const parser = new ConfigurationModelParser('test', new NullLogService());
|
|
parser.parse(JSON.stringify(obj));
|
|
return parser.configurationModel;
|
|
}
|