Files
blockly/tests/mocha/comment_test.js
Monica Kozbial 40ef586260 Refactoring Ui events in core (#4418)
* Ui events base (#4370)

* Add constants for new ui event types

* Add property to indicate an event as UI event

* Click events (#4372)

* Creating new ui base class.

* Refactor theme event (#4391)

* Add themeName property to theme event

* Refactor marker move events. (#4389)

* Refactor trashcan open event (#4392)

* Refactor selected event (#4387)

* Refactor toolbox item change event (#4394)

* Refactor bubble open events (#4390)

* Refactor block drag event (#4388)

* Viewport events (#4395)

* Fix event filtering for ui events (#4401)

* Move events to new directory and rename Ui events base (#4400)

* Move events to new directory and rename Ui events base

* Add missing fromJson implementation for click event (#4410)

* Adding serialization tests for events

* Zoom controls event (#4407)

* Refactor zoom event

* Rename IS_UI_EVENT to isUiEvent
2020-11-04 14:43:54 -08:00

139 lines
4.5 KiB
JavaScript

/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
suite('Comments', function() {
setup(function() {
sharedTestSetup.call(this);
Blockly.defineBlocksWithJsonArray([
{
"type": "empty_block",
"message0": "",
"args0": []
},
]);
this.workspace = Blockly.inject('blocklyDiv', {
comments: true,
scrollbars: true
});
this.block = Blockly.Xml.domToBlock(Blockly.Xml.textToDom(
'<block type="empty_block"/>'
), this.workspace);
this.comment = new Blockly.Comment(this.block);
this.comment.computeIconLocation();
});
teardown(function() {
sharedTestTeardown.call(this);
});
suite('Visibility and Editability', function() {
setup(function() {
this.block.setCommentText('test text');
});
function assertEditable(comment) {
chai.assert.isNotOk(comment.paragraphElement_);
chai.assert.isOk(comment.textarea_);
chai.assert.equal(comment.textarea_.value, 'test text');
}
function assertNotEditable(comment) {
chai.assert.isNotOk(comment.textarea_);
chai.assert.isOk(comment.paragraphElement_);
chai.assert.equal(comment.paragraphElement_.firstChild.textContent,
'test text');
}
test('Editable', function() {
this.comment.setVisible(true);
chai.assert.isTrue(this.comment.isVisible());
assertEditable(this.comment);
assertEventFired(
this.eventsFireStub, Blockly.Events.BubbleOpen,
{element: 'comment', isOpen: true}, this.workspace.id,
this.block.id);
});
test('Not Editable', function() {
sinon.stub(this.block, 'isEditable').returns(false);
// TODO(#4186): Remove stubbing of deprecation warning after fixing.
var deprecationWarnStub = createDeprecationWarningStub();
this.comment.setVisible(true);
deprecationWarnStub.restore();
chai.assert.isTrue(this.comment.isVisible());
assertNotEditable(this.comment);
assertEventFired(
this.eventsFireStub, Blockly.Events.BubbleOpen,
{element: 'comment', isOpen: true}, this.workspace.id,
this.block.id);
});
test('Editable -> Not Editable', function() {
this.comment.setVisible(true);
sinon.stub(this.block, 'isEditable').returns(false);
// TODO(#4186): Remove stubbing of deprecation warning after fixing.
var deprecationWarnStub = createDeprecationWarningStub();
this.comment.updateEditable();
deprecationWarnStub.restore();
chai.assert.isTrue(this.comment.isVisible());
assertNotEditable(this.comment);
assertEventFired(
this.eventsFireStub, Blockly.Events.BubbleOpen,
{element: 'comment', isOpen: true}, this.workspace.id,
this.block.id);
});
test('Not Editable -> Editable', function() {
var editableStub = sinon.stub(this.block, 'isEditable').returns(false);
// TODO(#4186): Remove stubbing of deprecation warning after fixing.
var deprecationWarnStub = createDeprecationWarningStub();
this.comment.setVisible(true);
deprecationWarnStub.restore();
editableStub.returns(true);
this.comment.updateEditable();
chai.assert.isTrue(this.comment.isVisible());
assertEditable(this.comment);
assertEventFired(
this.eventsFireStub, Blockly.Events.BubbleOpen,
{element: 'comment', isOpen: true}, this.workspace.id,
this.block.id);
});
});
suite('Set/Get Bubble Size', function() {
teardown(function() {
sinon.restore();
});
function assertBubbleSize(comment, height, width) {
var size = comment.getBubbleSize();
chai.assert.equal(size.height, height);
chai.assert.equal(size.width, width);
}
function assertBubbleSizeDefault(comment) {
assertBubbleSize(comment, 80, 160);
}
test('Set Size While Visible', function() {
this.comment.setVisible(true);
var bubbleSizeSpy = sinon.spy(this.comment.bubble_, 'setBubbleSize');
assertBubbleSizeDefault(this.comment);
this.comment.setBubbleSize(100, 100);
assertBubbleSize(this.comment, 100, 100);
sinon.assert.calledOnce(bubbleSizeSpy);
this.comment.setVisible(false);
assertBubbleSize(this.comment, 100, 100);
});
test('Set Size While Invisible', function() {
assertBubbleSizeDefault(this.comment);
this.comment.setBubbleSize(100, 100);
assertBubbleSize(this.comment, 100, 100);
this.comment.setVisible(true);
assertBubbleSize(this.comment, 100, 100);
});
});
});