mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-20 10:19:02 +00:00
* Run our build scripts directly as typescript #277567 Follow up on #276864 For #277526 * Remove a few more ts-node references * Fix linux and script reference * Remove `_build-script` ref * Fix script missing closing quote * use type only import * Fix export * Make sure to run copy-policy-dto * Make sure we run the copy-policy-dto script * Enable `verbatimModuleSyntax` * Pipelines fixes * Try adding explicit ext to path * Fix bad edit * Revert extra `--` --------- Co-authored-by: João Moreno <joaomoreno@users.noreply.github.com>
169 lines
6.0 KiB
TypeScript
169 lines
6.0 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 { BooleanPolicy } from '../policies/booleanPolicy.ts';
|
|
import { type LanguageTranslations, PolicyType } from '../policies/types.ts';
|
|
import type { CategoryDto, PolicyDto } from '../policies/policyDto.ts';
|
|
|
|
suite('BooleanPolicy', () => {
|
|
const mockCategory: CategoryDto = {
|
|
key: 'test.category',
|
|
name: { value: 'Category1', key: 'test.category' },
|
|
};
|
|
|
|
const mockPolicy: PolicyDto = {
|
|
key: 'test.boolean.policy',
|
|
name: 'TestBooleanPolicy',
|
|
category: 'Category1',
|
|
minimumVersion: '1.0',
|
|
type: 'boolean',
|
|
localization: {
|
|
description: { key: 'test.policy.description', value: 'Test policy description' }
|
|
}
|
|
};
|
|
|
|
test('should create BooleanPolicy from factory method', () => {
|
|
const policy = BooleanPolicy.from(mockCategory, mockPolicy);
|
|
|
|
assert.ok(policy);
|
|
assert.strictEqual(policy.name, 'TestBooleanPolicy');
|
|
assert.strictEqual(policy.minimumVersion, '1.0');
|
|
assert.strictEqual(policy.category.name.nlsKey, mockCategory.name.key);
|
|
assert.strictEqual(policy.category.name.value, mockCategory.name.value);
|
|
assert.strictEqual(policy.type, PolicyType.Boolean);
|
|
});
|
|
|
|
test('should render ADMX elements correctly', () => {
|
|
const policy = BooleanPolicy.from(mockCategory, mockPolicy);
|
|
|
|
assert.ok(policy);
|
|
|
|
const admx = policy.renderADMX('TestKey');
|
|
|
|
assert.deepStrictEqual(admx, [
|
|
'<policy name="TestBooleanPolicy" class="Both" displayName="$(string.TestBooleanPolicy)" explainText="$(string.TestBooleanPolicy_test_policy_description)" key="Software\\Policies\\Microsoft\\TestKey" presentation="$(presentation.TestBooleanPolicy)">',
|
|
'\t<parentCategory ref="test.category" />',
|
|
'\t<supportedOn ref="Supported_1_0" />',
|
|
'\t<elements>',
|
|
'<boolean id="TestBooleanPolicy" valueName="TestBooleanPolicy">',
|
|
'\t<trueValue><decimal value="1" /></trueValue><falseValue><decimal value="0" /></falseValue>',
|
|
'</boolean>',
|
|
'\t</elements>',
|
|
'</policy>'
|
|
]);
|
|
});
|
|
|
|
test('should render ADML strings correctly', () => {
|
|
const policy = BooleanPolicy.from(mockCategory, mockPolicy);
|
|
|
|
assert.ok(policy);
|
|
|
|
const admlStrings = policy.renderADMLStrings();
|
|
|
|
assert.deepStrictEqual(admlStrings, [
|
|
'<string id="TestBooleanPolicy">TestBooleanPolicy</string>',
|
|
'<string id="TestBooleanPolicy_test_policy_description">Test policy description</string>'
|
|
]);
|
|
});
|
|
|
|
test('should render ADML strings with translations', () => {
|
|
const policy = BooleanPolicy.from(mockCategory, mockPolicy);
|
|
|
|
assert.ok(policy);
|
|
|
|
const translations: LanguageTranslations = {
|
|
'': {
|
|
'test.policy.description': 'Translated description'
|
|
}
|
|
};
|
|
|
|
const admlStrings = policy.renderADMLStrings(translations);
|
|
|
|
assert.deepStrictEqual(admlStrings, [
|
|
'<string id="TestBooleanPolicy">TestBooleanPolicy</string>',
|
|
'<string id="TestBooleanPolicy_test_policy_description">Translated description</string>'
|
|
]);
|
|
});
|
|
|
|
test('should render ADML presentation correctly', () => {
|
|
const policy = BooleanPolicy.from(mockCategory, mockPolicy);
|
|
|
|
assert.ok(policy);
|
|
|
|
const presentation = policy.renderADMLPresentation();
|
|
|
|
assert.strictEqual(presentation, '<presentation id="TestBooleanPolicy"><checkBox refId="TestBooleanPolicy">TestBooleanPolicy</checkBox></presentation>');
|
|
});
|
|
|
|
test('should render JSON value correctly', () => {
|
|
const policy = BooleanPolicy.from(mockCategory, mockPolicy);
|
|
|
|
assert.ok(policy);
|
|
|
|
const jsonValue = policy.renderJsonValue();
|
|
|
|
assert.strictEqual(jsonValue, false);
|
|
});
|
|
|
|
test('should render profile value correctly', () => {
|
|
const policy = BooleanPolicy.from(mockCategory, mockPolicy);
|
|
|
|
assert.ok(policy);
|
|
|
|
const profileValue = policy.renderProfileValue();
|
|
|
|
assert.strictEqual(profileValue, '<false/>');
|
|
});
|
|
|
|
test('should render profile correctly', () => {
|
|
const policy = BooleanPolicy.from(mockCategory, mockPolicy);
|
|
|
|
assert.ok(policy);
|
|
|
|
const profile = policy.renderProfile();
|
|
|
|
assert.strictEqual(profile.length, 2);
|
|
assert.strictEqual(profile[0], '<key>TestBooleanPolicy</key>');
|
|
assert.strictEqual(profile[1], '<false/>');
|
|
});
|
|
|
|
test('should render profile manifest value correctly', () => {
|
|
const policy = BooleanPolicy.from(mockCategory, mockPolicy);
|
|
|
|
assert.ok(policy);
|
|
|
|
const manifestValue = policy.renderProfileManifestValue();
|
|
|
|
assert.strictEqual(manifestValue, '<key>pfm_default</key>\n<false/>\n<key>pfm_description</key>\n<string>Test policy description</string>\n<key>pfm_name</key>\n<string>TestBooleanPolicy</string>\n<key>pfm_title</key>\n<string>TestBooleanPolicy</string>\n<key>pfm_type</key>\n<string>boolean</string>');
|
|
});
|
|
|
|
test('should render profile manifest value with translations', () => {
|
|
const policy = BooleanPolicy.from(mockCategory, mockPolicy);
|
|
|
|
assert.ok(policy);
|
|
|
|
const translations: LanguageTranslations = {
|
|
'': {
|
|
'test.policy.description': 'Translated manifest description'
|
|
}
|
|
};
|
|
|
|
const manifestValue = policy.renderProfileManifestValue(translations);
|
|
|
|
assert.strictEqual(manifestValue, '<key>pfm_default</key>\n<false/>\n<key>pfm_description</key>\n<string>Translated manifest description</string>\n<key>pfm_name</key>\n<string>TestBooleanPolicy</string>\n<key>pfm_title</key>\n<string>TestBooleanPolicy</string>\n<key>pfm_type</key>\n<string>boolean</string>');
|
|
});
|
|
|
|
test('should render profile manifest correctly', () => {
|
|
const policy = BooleanPolicy.from(mockCategory, mockPolicy);
|
|
|
|
assert.ok(policy);
|
|
|
|
const manifest = policy.renderProfileManifest();
|
|
|
|
assert.strictEqual(manifest, '<dict>\n<key>pfm_default</key>\n<false/>\n<key>pfm_description</key>\n<string>Test policy description</string>\n<key>pfm_name</key>\n<string>TestBooleanPolicy</string>\n<key>pfm_title</key>\n<string>TestBooleanPolicy</string>\n<key>pfm_type</key>\n<string>boolean</string>\n</dict>');
|
|
});
|
|
});
|