mirror of
https://github.com/google/blockly.git
synced 2026-01-10 02:17:09 +01:00
* refactor(xml): Move textToDom to core/utils/xml.ts This function being in core/xml.ts was the cause for the last remaining circular import in core/ (between variables.ts and xml.ts). Moving it to utils/xml.ts makes sense anyway, since there is nothing Blockly-specific about this function. Fixes #6817. * fix(closure): Reenable goog.declareModuleId multiple-call check Reenable an assertion which check to make sure that goog.declareModuleId is not called more than once in a module (and which also catches circular imports amongst ES modules, which are not detected by closure-make-deps). * chore(tests,demos): Augo-migrate use of textToDom Testing the migration file entry by auto-migrating all uses of Blockly.Xml.textToDom to Blockly.utils.xml.textToDom. * chore(blocks): Manually migrate remaining use of textToDom Update the one remaining call to textToDom (in blocks/lists.ts) to the function's new location - also removing the last use of the Blockly.Xml / core/xml.ts) module from this file. * docs(xml): Remove unneeded @alias per comments on PR #6818 * fix(imports): Remove unused import
59 lines
1.7 KiB
JavaScript
59 lines
1.7 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Mocha tests that test Blockly in Node.
|
|
*/
|
|
|
|
const assert = require('chai').assert;
|
|
const Blockly = require('../../dist/');
|
|
const {javascriptGenerator} = require('../../dist/javascript');
|
|
|
|
const xmlText = '<xml xmlns="https://developers.google.com/blockly/xml">\n' +
|
|
' <block type="text_print" x="37" y="63">\n' +
|
|
' <value name="TEXT">\n' +
|
|
' <shadow type="text">\n' +
|
|
' <field name="TEXT">Hello from Blockly!</field>\n' +
|
|
' </shadow>\n' +
|
|
' </value>\n' +
|
|
' </block>\n' +
|
|
'</xml>';
|
|
|
|
suite('Test Node.js', function() {
|
|
test('Import XML', function() {
|
|
const xml = Blockly.utils.xml.textToDom(xmlText);
|
|
|
|
// Create workspace and import the XML
|
|
const workspace = new Blockly.Workspace();
|
|
Blockly.Xml.domToWorkspace(xml, workspace);
|
|
});
|
|
test('Roundtrip XML', function() {
|
|
const xml = Blockly.utils.xml.textToDom(xmlText);
|
|
|
|
const workspace = new Blockly.Workspace();
|
|
Blockly.Xml.domToWorkspace(xml, workspace);
|
|
|
|
const headlessXml = Blockly.Xml.workspaceToDom(workspace, true);
|
|
const headlessText = Blockly.Xml.domToPrettyText(headlessXml);
|
|
|
|
assert.equal(headlessText, xmlText, 'equal');
|
|
});
|
|
test('Generate Code', function() {
|
|
const xml = Blockly.utils.xml.textToDom(xmlText);
|
|
|
|
// Create workspace and import the XML
|
|
const workspace = new Blockly.Workspace();
|
|
Blockly.Xml.domToWorkspace(xml, workspace);
|
|
|
|
// Convert code
|
|
const code = javascriptGenerator.workspaceToCode(workspace);
|
|
|
|
// Check output
|
|
assert.equal('window.alert(\'Hello from Blockly!\');', code.trim(), 'equal');
|
|
});
|
|
});
|
|
|