/** * @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 xmlText = '\n' + ' \n' + ' \n' + ' \n' + ' Hello from Blockly!\n' + ' \n' + ' \n' + ' \n' + ''; suite('Test Node.js', function() { test('Import XML', function() { const xml = Blockly.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.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.Xml.textToDom(xmlText); // Create workspace and import the XML const workspace = new Blockly.Workspace(); Blockly.Xml.domToWorkspace(xml, workspace); // Convert code const code = Blockly.JavaScript.workspaceToCode(workspace); // Check output assert.equal('window.alert(\'Hello from Blockly!\');', code.trim(), 'equal'); }); });