mirror of
https://github.com/google/blockly.git
synced 2026-01-09 10:00:09 +01:00
* Google changed from an Inc to an LLC. This happened back in 2017 but we didn’t notice. Officially we should update files from Inc to LLC when they are changed as part of regular edits, but this is a nightmare to remember for the next decade. * Remove project description/titles from licenses This is no longer part of Google’s header requirements. Our existing descriptions were useless (“Visual Blocks Editor”) or grossly obselete (“Visual Blocks Language”). * License no longer requires URL. * Fix license regexps.
69 lines
2.0 KiB
JavaScript
69 lines
2.0 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/**
|
|
* @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">
|
|
<block type="text_print" x="37" y="63">
|
|
<value name="TEXT">
|
|
<shadow type="text">
|
|
<field name="TEXT">Hello from Blockly!</field>
|
|
</shadow>
|
|
</value>
|
|
</block>
|
|
</xml>`;
|
|
|
|
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);
|
|
|
|
var headlessXml = Blockly.Xml.workspaceToDom(workspace, true);
|
|
var 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');
|
|
});
|
|
});
|
|
|