mirror of
https://github.com/google/blockly.git
synced 2026-01-04 23:50:12 +01:00
* feat: change gestures to look at selected when dragging * chore: fix tests * chore: format * chore: PR comments
122 lines
3.7 KiB
JavaScript
122 lines
3.7 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2022 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {
|
|
sharedTestSetup,
|
|
sharedTestTeardown,
|
|
} from './test_helpers/setup_teardown.js';
|
|
import {simulateClick} from './test_helpers/user_input.js';
|
|
|
|
suite('Comment Deserialization', function () {
|
|
setup(function () {
|
|
sharedTestSetup.call(this);
|
|
Blockly.defineBlocksWithJsonArray([
|
|
{
|
|
'type': 'empty_block',
|
|
'message0': '',
|
|
'args0': [],
|
|
},
|
|
]);
|
|
const toolboxXml = `
|
|
<xml>
|
|
<category name="test">
|
|
<block type="empty_block">
|
|
<comment pinned="true" h="80" w="160">test toolbox text</comment>
|
|
</block>
|
|
</category>
|
|
</xml>
|
|
`;
|
|
this.workspace = Blockly.inject('blocklyDiv', {
|
|
comments: true,
|
|
scrollbars: true,
|
|
trashcan: true,
|
|
maxTrashcanContents: Infinity,
|
|
toolbox: Blockly.utils.xml.textToDom(toolboxXml),
|
|
});
|
|
});
|
|
teardown(function () {
|
|
sharedTestTeardown.call(this);
|
|
});
|
|
suite('Pattern', function () {
|
|
teardown(function () {
|
|
// Delete all blocks.
|
|
this.workspace.clear();
|
|
});
|
|
function createBlock(workspace) {
|
|
const block = Blockly.Xml.domToBlock(
|
|
Blockly.utils.xml.textToDom('<block type="empty_block"/>'),
|
|
workspace,
|
|
);
|
|
block.setCommentText('test text');
|
|
return block;
|
|
}
|
|
function assertComment(workspace, text) {
|
|
// Show comment.
|
|
const block = workspace.getAllBlocks()[0];
|
|
const icon = block.getIcon(Blockly.icons.CommentIcon.TYPE);
|
|
icon.setBubbleVisible(true);
|
|
// Check comment bubble size.
|
|
const bubbleSize = icon.getBubbleSize();
|
|
chai.assert.isNotNaN(bubbleSize.width);
|
|
chai.assert.isNotNaN(bubbleSize.height);
|
|
chai.assert.equal(icon.getText(), text);
|
|
}
|
|
test('Trashcan', function () {
|
|
// Create block.
|
|
this.block = createBlock(this.workspace);
|
|
// Delete block.
|
|
this.block.checkAndDelete();
|
|
chai.assert.equal(this.workspace.getAllBlocks().length, 0);
|
|
// Open trashcan.
|
|
simulateClick(this.workspace.trashcan.svgGroup);
|
|
// Place from trashcan.
|
|
simulateClick(
|
|
this.workspace.trashcan.flyout.svgGroup_.querySelector('.blocklyPath'),
|
|
);
|
|
chai.assert.equal(this.workspace.getAllBlocks().length, 1);
|
|
// Check comment.
|
|
assertComment(this.workspace, 'test text');
|
|
});
|
|
test('Undo', function () {
|
|
// Create block.
|
|
this.block = createBlock(this.workspace);
|
|
// Delete block.
|
|
this.block.checkAndDelete();
|
|
chai.assert.equal(this.workspace.getAllBlocks().length, 0);
|
|
// Undo.
|
|
this.workspace.undo(false);
|
|
chai.assert.equal(this.workspace.getAllBlocks().length, 1);
|
|
// Check comment.
|
|
assertComment(this.workspace, 'test text');
|
|
});
|
|
test('Redo', function () {
|
|
// Create block.
|
|
this.block = createBlock(this.workspace);
|
|
// Undo & undo.
|
|
this.workspace.undo(false);
|
|
this.workspace.undo(false);
|
|
chai.assert.equal(this.workspace.getAllBlocks().length, 0);
|
|
// Redo & redo.
|
|
this.workspace.undo(true);
|
|
this.workspace.undo(true);
|
|
chai.assert.equal(this.workspace.getAllBlocks().length, 1);
|
|
// Check comment.
|
|
assertComment(this.workspace, 'test text');
|
|
});
|
|
test('Toolbox', function () {
|
|
// Place from toolbox.
|
|
const toolbox = this.workspace.getToolbox();
|
|
simulateClick(toolbox.HtmlDiv.querySelector('.blocklyTreeRow'));
|
|
simulateClick(
|
|
toolbox.getFlyout().svgGroup_.querySelector('.blocklyPath'),
|
|
);
|
|
chai.assert.equal(this.workspace.getAllBlocks().length, 1);
|
|
// Check comment.
|
|
assertComment(this.workspace, 'test toolbox text');
|
|
});
|
|
});
|
|
});
|