/** * @license * Copyright 2019 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * @fileoverview Mocha tests that test Blockly in Node. */ var assert = require('chai').assert; var Blockly = require('../../dist/'); var xmlText = '\n' + ' \n' + ' \n' + ' \n' + ' Hello from Blockly!\n' + ' \n' + ' \n' + ' \n' + ''; suite('Test Node.js', function() { test('Import XML', function() { var xml = Blockly.Xml.textToDom(xmlText); // Create workspace and import the XML var workspace = new Blockly.Workspace(); Blockly.Xml.domToWorkspace(xml, workspace); }); test('Roundtrip XML', function() { var xml = Blockly.Xml.textToDom(xmlText); var workspace = new Blockly.Workspace(); Blockly.Xml.domToWorkspace(xml, workspace); var headlessXml = Blockly.Xml.workspaceToDom(workspace, true); var headlessText = Blockly.Xml.domToPrettyText(headlessXml); assert.equal(headlessText, xmlText, 'equal'); }); test('Generate Code', function() { var xml = Blockly.Xml.textToDom(xmlText); // Create workspace and import the XML var workspace = new Blockly.Workspace(); Blockly.Xml.domToWorkspace(xml, workspace); // Convert code var code = Blockly.JavaScript.workspaceToCode(workspace); // Check output assert.equal('window.alert(\'Hello from Blockly!\');', code.trim(), 'equal'); }); });