mirror of
https://github.com/google/blockly.git
synced 2026-01-18 06:17:12 +01:00
* chore: fix 918 violations of comma-dangle rule * chore: fix 2 violations of comma-spacing * chore: fix 13 violations of padded-blocks * chore: fix 50 violations of block-spacing * chore: fix one violation of semi-spacing * chore: fix 4 violations of space-before-blocks * chore: fix 38 violations of object-curly-spacing * chore: fix 30 violations of key-spacing * chore: fix 3 violations of quote-props * chore: fix 5 violations of arrow-parens * chore: fix 8 violations of no-tabs * chore: allow uncommented helper functions in mocha tests * chore: fix several more lint errors * chore: tweak eslint configuration in core and tests * chore: rebuild for tests
91 lines
3.0 KiB
JavaScript
91 lines
3.0 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
goog.module('Blockly.test.gesture');
|
|
|
|
const {assertEventFired, assertEventNotFired, defineBasicBlockWithField, dispatchPointerEvent, sharedTestSetup, sharedTestTeardown} = goog.require('Blockly.test.helpers');
|
|
|
|
|
|
suite('Gesture', function() {
|
|
function testGestureIsFieldClick(block, isFieldClick, eventsFireStub) {
|
|
const field = block.getField('NAME');
|
|
const eventTarget = field.getClickTarget_();
|
|
chai.assert.exists(eventTarget,
|
|
'Precondition: missing click target for field');
|
|
|
|
eventsFireStub.resetHistory();
|
|
dispatchPointerEvent(eventTarget, 'pointerdown');
|
|
|
|
const fieldWorkspace = field.sourceBlock_.workspace;
|
|
// Gestures triggered on flyouts are stored on targetWorkspace.
|
|
const gestureWorkspace = fieldWorkspace.targetWorkspace || fieldWorkspace;
|
|
const gesture = gestureWorkspace.currentGesture_;
|
|
chai.assert.exists(gesture, 'Gesture exists after pointerdown.');
|
|
const isFieldClickSpy = sinon.spy(gesture, 'isFieldClick_');
|
|
|
|
dispatchPointerEvent(eventTarget, 'pointerup');
|
|
dispatchPointerEvent(eventTarget, 'click');
|
|
|
|
sinon.assert.called(isFieldClickSpy);
|
|
chai.assert.isTrue(isFieldClickSpy.alwaysReturned(isFieldClick));
|
|
|
|
|
|
assertEventFired(eventsFireStub, Blockly.Events.Selected,
|
|
{oldElementId: null, newElementId: block.id}, fieldWorkspace.id);
|
|
assertEventNotFired(eventsFireStub, Blockly.Events.Click, {});
|
|
}
|
|
|
|
function getTopFlyoutBlock(flyout) {
|
|
return flyout.workspace_.topBlocks_[0];
|
|
}
|
|
|
|
setup(function() {
|
|
sharedTestSetup.call(this);
|
|
defineBasicBlockWithField();
|
|
const toolbox = document.getElementById('gesture-test-toolbox');
|
|
this.workspace = Blockly.inject('blocklyDiv', {toolbox: toolbox});
|
|
});
|
|
|
|
teardown(function() {
|
|
sharedTestTeardown.call(this);
|
|
});
|
|
|
|
test('Constructor', function() {
|
|
const e = {id: 'dummy_test_event'};
|
|
const gesture = new Blockly.Gesture(e, this.workspace);
|
|
chai.assert.equal(gesture.mostRecentEvent_, e);
|
|
chai.assert.equal(gesture.creatorWorkspace_, this.workspace);
|
|
});
|
|
|
|
test('Field click - Click in workspace', function() {
|
|
const block = this.workspace.newBlock('test_field_block');
|
|
block.initSvg();
|
|
block.render();
|
|
|
|
testGestureIsFieldClick(block, true, this.eventsFireStub);
|
|
});
|
|
|
|
test('Field click - Auto close flyout', function() {
|
|
const flyout = this.workspace.flyout_;
|
|
chai.assert.exists(this.workspace.flyout_,
|
|
'Precondition: missing flyout');
|
|
flyout.autoClose = true;
|
|
|
|
const block = getTopFlyoutBlock(flyout);
|
|
testGestureIsFieldClick(block, false, this.eventsFireStub);
|
|
});
|
|
|
|
test('Field click - Always open flyout', function() {
|
|
const flyout = this.workspace.flyout_;
|
|
chai.assert.exists(this.workspace.flyout_,
|
|
'Precondition: missing flyout');
|
|
flyout.autoClose = false;
|
|
|
|
const block = getTopFlyoutBlock(flyout);
|
|
testGestureIsFieldClick(block, true, this.eventsFireStub);
|
|
});
|
|
});
|