mirror of
https://github.com/google/blockly.git
synced 2026-01-07 00:50:27 +01:00
58 lines
1.6 KiB
JavaScript
58 lines
1.6 KiB
JavaScript
/**
|
|
* @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 = '<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() {
|
|
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');
|
|
});
|
|
});
|
|
|