mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-20 18:28:58 +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>
55 lines
3.5 KiB
TypeScript
55 lines
3.5 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 * as i18n from '../i18n.ts';
|
|
|
|
suite('XLF Parser Tests', () => {
|
|
const sampleXlf = '<?xml version="1.0" encoding="utf-8"?><xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2"><file original="vs/base/common/keybinding" source-language="en" datatype="plaintext"><body><trans-unit id="key1"><source xml:lang="en">Key #1</source></trans-unit><trans-unit id="key2"><source xml:lang="en">Key #2 &</source></trans-unit></body></file></xliff>';
|
|
const sampleTranslatedXlf = '<?xml version="1.0" encoding="utf-8"?><xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2"><file original="vs/base/common/keybinding" source-language="en" target-language="ru" datatype="plaintext"><body><trans-unit id="key1"><source xml:lang="en">Key #1</source><target>Кнопка #1</target></trans-unit><trans-unit id="key2"><source xml:lang="en">Key #2 &</source><target>Кнопка #2 &</target></trans-unit></body></file></xliff>';
|
|
const name = 'vs/base/common/keybinding';
|
|
const keys = ['key1', 'key2'];
|
|
const messages = ['Key #1', 'Key #2 &'];
|
|
const translatedMessages = { key1: 'Кнопка #1', key2: 'Кнопка #2 &' };
|
|
|
|
test('Keys & messages to XLF conversion', () => {
|
|
const xlf = new i18n.XLF('vscode-workbench');
|
|
xlf.addFile(name, keys, messages);
|
|
const xlfString = xlf.toString();
|
|
|
|
assert.strictEqual(xlfString.replace(/\s{2,}/g, ''), sampleXlf);
|
|
});
|
|
|
|
test('XLF to keys & messages conversion', () => {
|
|
i18n.XLF.parse(sampleTranslatedXlf).then(function (resolvedFiles) {
|
|
assert.deepStrictEqual(resolvedFiles[0].messages, translatedMessages);
|
|
assert.strictEqual(resolvedFiles[0].name, name);
|
|
});
|
|
});
|
|
|
|
test('JSON file source path to Transifex resource match', () => {
|
|
const editorProject: string = 'vscode-editor',
|
|
workbenchProject: string = 'vscode-workbench';
|
|
|
|
const platform: i18n.Resource = { name: 'vs/platform', project: editorProject },
|
|
editorContrib = { name: 'vs/editor/contrib', project: editorProject },
|
|
editor = { name: 'vs/editor', project: editorProject },
|
|
base = { name: 'vs/base', project: editorProject },
|
|
code = { name: 'vs/code', project: workbenchProject },
|
|
workbenchParts = { name: 'vs/workbench/contrib/html', project: workbenchProject },
|
|
workbenchServices = { name: 'vs/workbench/services/textfile', project: workbenchProject },
|
|
workbench = { name: 'vs/workbench', project: workbenchProject };
|
|
|
|
assert.deepStrictEqual(i18n.getResource('vs/platform/actions/browser/menusExtensionPoint'), platform);
|
|
assert.deepStrictEqual(i18n.getResource('vs/editor/contrib/clipboard/browser/clipboard'), editorContrib);
|
|
assert.deepStrictEqual(i18n.getResource('vs/editor/common/modes/modesRegistry'), editor);
|
|
assert.deepStrictEqual(i18n.getResource('vs/base/common/errorMessage'), base);
|
|
assert.deepStrictEqual(i18n.getResource('vs/code/electron-main/window'), code);
|
|
assert.deepStrictEqual(i18n.getResource('vs/workbench/contrib/html/browser/webview'), workbenchParts);
|
|
assert.deepStrictEqual(i18n.getResource('vs/workbench/services/textfile/node/testFileService'), workbenchServices);
|
|
assert.deepStrictEqual(i18n.getResource('vs/workbench/browser/parts/panel/panelActions'), workbench);
|
|
});
|
|
});
|