mirror of
https://github.com/google/blockly.git
synced 2026-01-16 05:17:09 +01:00
* Refactor block type cleanup into shared cleanup. * Use shared cleanup for block type cleanup. * Remove overwriting of core Blockly block in test. * Rename cleanup arrays for clarity * Add blocks to cleanup array when defined in shared helpers * Refactor logic for adding to shared cleanup. * Add helper for defining block and adding block type to cleanup. * Fix jsdocs * Simplifying helpers for adding to cleanup. * Add missing semicolons * Update jsdoc for sharedTestSetup * Use stub to wrap cleanup with defineBlocksWithJsonArray * Remove unused helper from lint ignore
105 lines
3.3 KiB
JavaScript
105 lines
3.3 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Tests for gesture.
|
|
* @author marisaleung@google.com (Marisa Leung)
|
|
*/
|
|
'use strict';
|
|
|
|
suite('Gesture', function() {
|
|
function testGestureIsFieldClick(block, isFieldClick, eventsFireStub){
|
|
var field = block.getField('NAME');
|
|
var eventTarget = field.getClickTarget_();
|
|
chai.assert.exists(eventTarget,
|
|
'Precondition: missing click target for field');
|
|
|
|
eventsFireStub.resetHistory();
|
|
dispatchPointerEvent(eventTarget, 'pointerdown');
|
|
|
|
var fieldWorkspace = field.sourceBlock_.workspace;
|
|
// Gestures triggered on flyouts are stored on targetWorkspace.
|
|
var gestureWorkspace = fieldWorkspace.targetWorkspace || fieldWorkspace;
|
|
var gesture = gestureWorkspace.currentGesture_;
|
|
chai.assert.exists(gesture, 'Gesture exists after pointerdown.');
|
|
var 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.Ui,
|
|
{element: 'selected', oldValue: null, newValue: block.id},
|
|
fieldWorkspace.id, null);
|
|
assertEventNotFired(eventsFireStub, Blockly.Events.Ui, {element: 'click'});
|
|
}
|
|
|
|
function getTopFlyoutBlock(flyout) {
|
|
return flyout.workspace_.topBlocks_[0];
|
|
}
|
|
|
|
setup(function() {
|
|
sharedTestSetup.call(this);
|
|
defineBasicBlockWithField(this.sharedCleanup);
|
|
var toolbox = document.getElementById('gesture-test-toolbox');
|
|
this.workspace = Blockly.inject('blocklyDiv', {toolbox: toolbox});
|
|
});
|
|
|
|
teardown(function() {
|
|
sharedTestTeardown.call(this);
|
|
});
|
|
|
|
test('Constructor', function() {
|
|
var e = { id: 'dummy_test_event'};
|
|
var 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() {
|
|
var block = this.workspace.newBlock('test_field_block');
|
|
block.initSvg();
|
|
block.render();
|
|
|
|
testGestureIsFieldClick(block, true, this.eventsFireStub);
|
|
});
|
|
|
|
test('Field click - Auto close flyout', function() {
|
|
var flyout = this.workspace.flyout_;
|
|
chai.assert.exists(this.workspace.flyout_,
|
|
'Precondition: missing flyout');
|
|
flyout.autoClose = true;
|
|
|
|
var block = getTopFlyoutBlock(flyout);
|
|
testGestureIsFieldClick(block, false, this.eventsFireStub);
|
|
});
|
|
|
|
test('Field click - Always open flyout', function() {
|
|
var flyout = this.workspace.flyout_;
|
|
chai.assert.exists(this.workspace.flyout_,
|
|
'Precondition: missing flyout');
|
|
flyout.autoClose = false;
|
|
|
|
var block = getTopFlyoutBlock(flyout);
|
|
testGestureIsFieldClick(block, true, this.eventsFireStub);
|
|
});
|
|
|
|
test('Shift click in accessibility mode - moves the cursor', function() {
|
|
this.workspace.keyboardAccessibilityMode = true;
|
|
|
|
var eventTarget = this.workspace.svgGroup_;
|
|
simulateClick(eventTarget, {shiftKey: true});
|
|
|
|
var cursor = this.workspace.getCursor();
|
|
var cursorNode = cursor.getCurNode();
|
|
chai.assert.exists(cursorNode);
|
|
chai.assert.equal(cursorNode.getType(), Blockly.ASTNode.types.WORKSPACE);
|
|
});
|
|
});
|