mirror of
https://github.com/google/blockly.git
synced 2026-01-07 17:10:11 +01:00
* chore: add and configure prettier * chore: remove clang-format * chore: remove clang-format config * chore: lint additional ts files * chore: fix lint errors in blocks * chore: add prettier-ignore where needed * chore: ignore js blocks when formatting * chore: fix playground html syntax * chore: fix yaml spacing from merge * chore: convert text blocks to use arrow functions * chore: format everything with prettier * chore: fix lint unused imports in blocks
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');
|
|
});
|
|
});
|