mirror of
https://github.com/google/blockly.git
synced 2026-01-05 08:00:09 +01:00
* fix(build): Have buildShims clean up up after itself
We need to create a build/package.json file to allow node.js to
load build/src/core/blockly.js and the other chunk entry points
as ES modules (it forcibly assumes .js means CJS even if one is
trying to import, unless package.json says {"type": "module"}),
but this interferes with scripts/migration/js2ts doing a
require('build/deps.js'), which is _not_ an ES module.
Specific error message was:
/Users/cpcallen/src/blockly/scripts/migration/js2ts:56
require(path.resolve(__dirname, '../../build/deps.js'));
^
Error [ERR_REQUIRE_ESM]: require() of ES Module
/Users/cpcallen/src/blockly/build/deps.js from /Users/cpcallen/src/blockly/scripts/migration/js2ts
not supported.
deps.js is treated as an ES module file as it is a .js file whose
nearest parent package.json contains "type": "module" which
declares all .js files in that package scope as ES modules.
Instead rename deps.js to end in .cjs, change the requiring code
to use dynamic import() which is available in all CommonJS
modules, or change "type": "module" to "type": "commonjs" in
/Users/cpcallen/src/blockly/build/package.json to treat all .js
files as CommonJS (using .mjs for all ES modules instead).
at Object.<anonymous> (/Users/cpcallen/src/blockly/scripts/migration/js2ts:56:1) {
code: 'ERR_REQUIRE_ESM'
}
* chore(tests): Reorder to put interesting script nearer top of file
* chore(tests): Add missing imports of closure/goog/goog.js
These modules were depending on being loaded via the
debug module loader, which cannot be used without first loading
base.js as a script, and thereby defining goog.declareModuleId
as a side effect—but if they are to be loaded via direct import
statements then they need to actually import their own
dependencies.
This is a temporary measure as soon the goog.declareMouleId
calls can themselves be deleted.
* refactor(tests): Use import instead of bootstrap to load Blockly
* chores(build): Stop generating deps.mocha.js
This file was only needed by tests/mocha/index.html's use of
the debug module loader (via bootstrap.js), which has now been
removed.
* chore(tests): Remove unneeded goog.declareModuleId calls
These were only needed because these modules were previously
being loaded by goog.require and/or goog.bootstrap.
* chores(tests): Remove dead code
We are fully committed to proper modules now.
512 lines
16 KiB
JavaScript
512 lines
16 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2020 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {
|
|
sharedTestSetup,
|
|
sharedTestTeardown,
|
|
workspaceTeardown,
|
|
} from './test_helpers/setup_teardown.js';
|
|
|
|
suite('Context Menu Items', function () {
|
|
setup(function () {
|
|
sharedTestSetup.call(this);
|
|
|
|
// Creates a WorkspaceSVG
|
|
const toolbox = document.getElementById('toolbox-categories');
|
|
this.workspace = Blockly.inject('blocklyDiv', {toolbox: toolbox});
|
|
|
|
this.registry = Blockly.ContextMenuRegistry.registry;
|
|
this.registry.reset();
|
|
Blockly.ContextMenuItems.registerDefaultOptions();
|
|
});
|
|
|
|
teardown(function () {
|
|
sharedTestTeardown.call(this);
|
|
});
|
|
|
|
suite('Workspace Items', function () {
|
|
setup(function () {
|
|
this.scope = {workspace: this.workspace};
|
|
});
|
|
|
|
suite('undo', function () {
|
|
setup(function () {
|
|
this.undoOption = this.registry.getItem('undoWorkspace');
|
|
});
|
|
|
|
test('Disabled when nothing to undo', function () {
|
|
const precondition = this.undoOption.preconditionFn(this.scope);
|
|
chai.assert.equal(
|
|
precondition,
|
|
'disabled',
|
|
'Should be disabled when there is nothing to undo',
|
|
);
|
|
});
|
|
|
|
test('Enabled when something to undo', function () {
|
|
// Create a new block, which should be undoable.
|
|
this.workspace.newBlock('text');
|
|
const precondition = this.undoOption.preconditionFn(this.scope);
|
|
chai.assert.equal(
|
|
precondition,
|
|
'enabled',
|
|
'Should be enabled when there are actions to undo',
|
|
);
|
|
});
|
|
|
|
test('Undoes adding a new block', function () {
|
|
this.workspace.newBlock('text');
|
|
chai.assert.equal(this.workspace.getTopBlocks(false).length, 1);
|
|
this.undoOption.callback(this.scope);
|
|
chai.assert.equal(
|
|
this.workspace.getTopBlocks(false).length,
|
|
0,
|
|
'Should be no blocks after undo',
|
|
);
|
|
});
|
|
|
|
test('Has correct label', function () {
|
|
chai.assert.equal(this.undoOption.displayText(), 'Undo');
|
|
});
|
|
});
|
|
|
|
suite('Redo', function () {
|
|
setup(function () {
|
|
this.redoOption = this.registry.getItem('redoWorkspace');
|
|
});
|
|
|
|
test('Disabled when nothing to redo', function () {
|
|
// Create a new block. There should be something to undo, but not redo.
|
|
this.workspace.newBlock('text');
|
|
const precondition = this.redoOption.preconditionFn(this.scope);
|
|
chai.assert.equal(
|
|
precondition,
|
|
'disabled',
|
|
'Should be disabled when there is nothing to redo',
|
|
);
|
|
});
|
|
|
|
test('Enabled when something to redo', function () {
|
|
// Create a new block, then undo it, which means there is something to redo.
|
|
this.workspace.newBlock('text');
|
|
this.workspace.undo(false);
|
|
const precondition = this.redoOption.preconditionFn(this.scope);
|
|
chai.assert.equal(
|
|
precondition,
|
|
'enabled',
|
|
'Should be enabled when there are actions to redo',
|
|
);
|
|
});
|
|
|
|
test('Redoes adding new block', function () {
|
|
// Add a new block, then undo it, then redo it.
|
|
this.workspace.newBlock('text');
|
|
this.workspace.undo(false);
|
|
chai.assert.equal(this.workspace.getTopBlocks(false).length, 0);
|
|
this.redoOption.callback(this.scope);
|
|
chai.assert.equal(
|
|
this.workspace.getTopBlocks(false).length,
|
|
1,
|
|
'Should be 1 block after redo',
|
|
);
|
|
});
|
|
|
|
test('Has correct label', function () {
|
|
chai.assert.equal(this.redoOption.displayText(), 'Redo');
|
|
});
|
|
});
|
|
|
|
suite('Cleanup', function () {
|
|
setup(function () {
|
|
this.cleanupOption = this.registry.getItem('cleanWorkspace');
|
|
this.cleanupStub = sinon.stub(this.workspace, 'cleanUp');
|
|
});
|
|
|
|
test('Enabled when multiple blocks', function () {
|
|
this.workspace.newBlock('text');
|
|
this.workspace.newBlock('text');
|
|
chai.assert.equal(
|
|
this.cleanupOption.preconditionFn(this.scope),
|
|
'enabled',
|
|
'Should be enabled if there are multiple blocks',
|
|
);
|
|
});
|
|
|
|
test('Disabled when no blocks', function () {
|
|
chai.assert.equal(
|
|
this.cleanupOption.preconditionFn(this.scope),
|
|
'disabled',
|
|
'Should be disabled if there are no blocks',
|
|
);
|
|
});
|
|
|
|
test('Hidden when not movable', function () {
|
|
sinon.stub(this.workspace, 'isMovable').returns(false);
|
|
chai.assert.equal(
|
|
this.cleanupOption.preconditionFn(this.scope),
|
|
'hidden',
|
|
'Should be hidden if the workspace is not movable',
|
|
);
|
|
});
|
|
|
|
test('Calls workspace cleanup', function () {
|
|
this.cleanupOption.callback(this.scope);
|
|
sinon.assert.calledOnce(this.cleanupStub);
|
|
});
|
|
|
|
test('Has correct label', function () {
|
|
chai.assert.equal(this.cleanupOption.displayText(), 'Clean up Blocks');
|
|
});
|
|
});
|
|
|
|
suite('Collapse', function () {
|
|
setup(function () {
|
|
this.collapseOption = this.registry.getItem('collapseWorkspace');
|
|
});
|
|
|
|
test('Enabled when uncollapsed blocks', function () {
|
|
this.workspace.newBlock('text');
|
|
const block2 = this.workspace.newBlock('text');
|
|
block2.setCollapsed(true);
|
|
chai.assert.equal(
|
|
this.collapseOption.preconditionFn(this.scope),
|
|
'enabled',
|
|
'Should be enabled when any blocks are expanded',
|
|
);
|
|
});
|
|
|
|
test('Disabled when all blocks collapsed', function () {
|
|
this.workspace.newBlock('text').setCollapsed(true);
|
|
chai.assert.equal(
|
|
this.collapseOption.preconditionFn(this.scope),
|
|
'disabled',
|
|
'Should be disabled when no blocks are expanded',
|
|
);
|
|
});
|
|
|
|
test('Hidden when no collapse option', function () {
|
|
const workspaceWithOptions = new Blockly.Workspace(
|
|
new Blockly.Options({collapse: false}),
|
|
);
|
|
this.scope.workspace = workspaceWithOptions;
|
|
|
|
try {
|
|
chai.assert.equal(
|
|
this.collapseOption.preconditionFn(this.scope),
|
|
'hidden',
|
|
'Should be hidden if collapse is disabled in options',
|
|
);
|
|
} finally {
|
|
workspaceTeardown.call(this, workspaceWithOptions);
|
|
}
|
|
});
|
|
|
|
test('Collapses all blocks', function () {
|
|
// All blocks should be collapsed, even if some already were.
|
|
const block1 = this.workspace.newBlock('text');
|
|
const block2 = this.workspace.newBlock('text');
|
|
// Need to render block to properly collapse it.
|
|
block1.initSvg();
|
|
block1.render();
|
|
block1.setCollapsed(true);
|
|
|
|
this.collapseOption.callback(this.scope);
|
|
this.clock.runAll();
|
|
|
|
chai.assert.isTrue(
|
|
block1.isCollapsed(),
|
|
'Previously collapsed block should still be collapsed',
|
|
);
|
|
chai.assert.isTrue(
|
|
block2.isCollapsed(),
|
|
'Previously expanded block should now be collapsed',
|
|
);
|
|
});
|
|
|
|
test('Has correct label', function () {
|
|
chai.assert.equal(this.collapseOption.displayText(), 'Collapse Blocks');
|
|
});
|
|
});
|
|
|
|
suite('Expand', function () {
|
|
setup(function () {
|
|
this.expandOption = this.registry.getItem('expandWorkspace');
|
|
});
|
|
|
|
test('Enabled when collapsed blocks', function () {
|
|
this.workspace.newBlock('text');
|
|
const block2 = this.workspace.newBlock('text');
|
|
block2.setCollapsed(true);
|
|
|
|
chai.assert.equal(
|
|
this.expandOption.preconditionFn(this.scope),
|
|
'enabled',
|
|
'Should be enabled when any blocks are collapsed',
|
|
);
|
|
});
|
|
|
|
test('Disabled when no collapsed blocks', function () {
|
|
this.workspace.newBlock('text');
|
|
chai.assert.equal(
|
|
this.expandOption.preconditionFn(this.scope),
|
|
'disabled',
|
|
'Should be disabled when no blocks are collapsed',
|
|
);
|
|
});
|
|
|
|
test('Hidden when no collapse option', function () {
|
|
const workspaceWithOptions = new Blockly.Workspace(
|
|
new Blockly.Options({collapse: false}),
|
|
);
|
|
this.scope.workspace = workspaceWithOptions;
|
|
|
|
try {
|
|
chai.assert.equal(
|
|
this.expandOption.preconditionFn(this.scope),
|
|
'hidden',
|
|
'Should be hidden if collapse is disabled in options',
|
|
);
|
|
} finally {
|
|
workspaceTeardown.call(this, workspaceWithOptions);
|
|
}
|
|
});
|
|
|
|
test('Expands all blocks', function () {
|
|
// All blocks should be expanded, even if some already were.
|
|
const block1 = this.workspace.newBlock('text');
|
|
const block2 = this.workspace.newBlock('text');
|
|
// Need to render block to properly collapse it.
|
|
block2.initSvg();
|
|
block2.render();
|
|
block2.setCollapsed(true);
|
|
|
|
this.expandOption.callback(this.scope);
|
|
this.clock.runAll();
|
|
|
|
chai.assert.isFalse(
|
|
block1.isCollapsed(),
|
|
'Previously expanded block should still be expanded',
|
|
);
|
|
chai.assert.isFalse(
|
|
block2.isCollapsed(),
|
|
'Previously collapsed block should now be expanded',
|
|
);
|
|
});
|
|
|
|
test('Has correct label', function () {
|
|
chai.assert.equal(this.expandOption.displayText(), 'Expand Blocks');
|
|
});
|
|
});
|
|
|
|
suite('Delete', function () {
|
|
setup(function () {
|
|
this.deleteOption = this.registry.getItem('workspaceDelete');
|
|
});
|
|
|
|
test('Enabled when blocks to delete', function () {
|
|
this.workspace.newBlock('text');
|
|
chai.assert.equal(
|
|
this.deleteOption.preconditionFn(this.scope),
|
|
'enabled',
|
|
);
|
|
});
|
|
|
|
test('Disabled when no blocks to delete', function () {
|
|
chai.assert.equal(
|
|
this.deleteOption.preconditionFn(this.scope),
|
|
'disabled',
|
|
);
|
|
});
|
|
|
|
test('Deletes all blocks after confirming', function () {
|
|
// Mocks the confirmation dialog and calls the callback with 'true' simulating ok.
|
|
const confirmStub = sinon
|
|
.stub(Blockly.dialog.TEST_ONLY, 'confirmInternal')
|
|
.callsArgWith(1, true);
|
|
|
|
this.workspace.newBlock('text');
|
|
this.workspace.newBlock('text');
|
|
this.deleteOption.callback(this.scope);
|
|
this.clock.runAll();
|
|
sinon.assert.calledOnce(confirmStub);
|
|
chai.assert.equal(this.workspace.getTopBlocks(false).length, 0);
|
|
});
|
|
|
|
test('Does not delete blocks if not confirmed', function () {
|
|
// Mocks the confirmation dialog and calls the callback with 'false' simulating cancel.
|
|
const confirmStub = sinon
|
|
.stub(Blockly.dialog.TEST_ONLY, 'confirmInternal')
|
|
.callsArgWith(1, false);
|
|
|
|
this.workspace.newBlock('text');
|
|
this.workspace.newBlock('text');
|
|
this.deleteOption.callback(this.scope);
|
|
this.clock.runAll();
|
|
sinon.assert.calledOnce(confirmStub);
|
|
chai.assert.equal(this.workspace.getTopBlocks(false).length, 2);
|
|
});
|
|
|
|
test('No dialog for single block', function () {
|
|
const confirmStub = sinon.stub(
|
|
Blockly.dialog.TEST_ONLY,
|
|
'confirmInternal',
|
|
);
|
|
this.workspace.newBlock('text');
|
|
this.deleteOption.callback(this.scope);
|
|
this.clock.runAll();
|
|
|
|
sinon.assert.notCalled(confirmStub);
|
|
chai.assert.equal(this.workspace.getTopBlocks(false).length, 0);
|
|
});
|
|
|
|
test('Has correct label for multiple blocks', function () {
|
|
this.workspace.newBlock('text');
|
|
this.workspace.newBlock('text');
|
|
|
|
chai.assert.equal(
|
|
this.deleteOption.displayText(this.scope),
|
|
'Delete 2 Blocks',
|
|
);
|
|
});
|
|
|
|
test('Has correct label for single block', function () {
|
|
this.workspace.newBlock('text');
|
|
chai.assert.equal(
|
|
this.deleteOption.displayText(this.scope),
|
|
'Delete Block',
|
|
);
|
|
});
|
|
});
|
|
});
|
|
|
|
suite('Block Items', function () {
|
|
setup(function () {
|
|
this.block = this.workspace.newBlock('text');
|
|
this.scope = {block: this.block};
|
|
});
|
|
|
|
suite('Duplicate', function () {
|
|
setup(function () {
|
|
this.duplicateOption = this.registry.getItem('blockDuplicate');
|
|
});
|
|
|
|
test('Enabled when block is duplicatable', function () {
|
|
// Block is duplicatable by default
|
|
chai.assert.equal(
|
|
this.duplicateOption.preconditionFn(this.scope),
|
|
'enabled',
|
|
);
|
|
});
|
|
|
|
test('Disabled when block is not dupicatable', function () {
|
|
sinon.stub(this.block, 'isDuplicatable').returns(false);
|
|
chai.assert.equal(
|
|
this.duplicateOption.preconditionFn(this.scope),
|
|
'disabled',
|
|
);
|
|
});
|
|
|
|
test('Hidden when in flyout', function () {
|
|
this.block.isInFlyout = true;
|
|
chai.assert.equal(
|
|
this.duplicateOption.preconditionFn(this.scope),
|
|
'hidden',
|
|
);
|
|
});
|
|
|
|
test('the block is duplicated', function () {
|
|
this.duplicateOption.callback(this.scope);
|
|
chai.assert.equal(
|
|
this.workspace.getTopBlocks(false).length,
|
|
2,
|
|
'Expected a second block',
|
|
);
|
|
});
|
|
|
|
test('Has correct label', function () {
|
|
chai.assert.equal(this.duplicateOption.displayText(), 'Duplicate');
|
|
});
|
|
});
|
|
|
|
suite('Comment', function () {
|
|
setup(function () {
|
|
this.commentOption = this.registry.getItem('blockComment');
|
|
});
|
|
|
|
test('Enabled for normal block', function () {
|
|
chai.assert.equal(
|
|
this.commentOption.preconditionFn(this.scope),
|
|
'enabled',
|
|
);
|
|
});
|
|
|
|
test('Hidden for collapsed block', function () {
|
|
// Must render block to collapse it properly.
|
|
this.block.initSvg();
|
|
this.block.render();
|
|
this.block.setCollapsed(true);
|
|
|
|
chai.assert.equal(
|
|
this.commentOption.preconditionFn(this.scope),
|
|
'hidden',
|
|
);
|
|
});
|
|
|
|
test('Creates comment if one did not exist', function () {
|
|
chai.assert.isUndefined(
|
|
this.block.getIcon(Blockly.icons.CommentIcon.TYPE),
|
|
'New block should not have a comment',
|
|
);
|
|
this.commentOption.callback(this.scope);
|
|
chai.assert.exists(this.block.getIcon(Blockly.icons.CommentIcon.TYPE));
|
|
chai.assert.isEmpty(
|
|
this.block.getCommentText(),
|
|
'Block should have empty comment text',
|
|
);
|
|
});
|
|
|
|
test('Removes comment if block had one', function () {
|
|
this.block.setCommentText('Test comment');
|
|
this.commentOption.callback(this.scope);
|
|
chai.assert.isNull(
|
|
this.block.getCommentText(),
|
|
'Block should not have comment after removal',
|
|
);
|
|
});
|
|
|
|
test('Has correct label for add comment', function () {
|
|
chai.assert.equal(
|
|
this.commentOption.displayText(this.scope),
|
|
'Add Comment',
|
|
);
|
|
});
|
|
|
|
test('Has correct label for remove comment', function () {
|
|
this.block.setCommentText('Test comment');
|
|
chai.assert.equal(
|
|
this.commentOption.displayText(this.scope),
|
|
'Remove Comment',
|
|
);
|
|
});
|
|
});
|
|
|
|
suite('Inline Variables', function () {
|
|
setup(function () {
|
|
this.inlineOption = this.registry.getItem('blockInline');
|
|
});
|
|
|
|
test('Enabled when inputs to inline', function () {
|
|
this.block.appendValueInput('test1');
|
|
this.block.appendValueInput('test2');
|
|
chai.assert.equal(
|
|
this.inlineOption.preconditionFn(this.scope),
|
|
'enabled',
|
|
);
|
|
});
|
|
});
|
|
});
|
|
});
|