mirror of
https://github.com/google/blockly.git
synced 2026-01-13 20:07:08 +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
135 lines
4.2 KiB
JavaScript
135 lines
4.2 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
goog.module('Blockly.test.comments');
|
|
|
|
const {assertEventFired, sharedTestSetup, sharedTestTeardown} = goog.require('Blockly.test.helpers');
|
|
|
|
|
|
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,
|
|
{bubbleType: 'comment', isOpen: true}, this.workspace.id,
|
|
this.block.id);
|
|
});
|
|
test('Not Editable', function() {
|
|
sinon.stub(this.block, 'isEditable').returns(false);
|
|
|
|
this.comment.setVisible(true);
|
|
|
|
chai.assert.isTrue(this.comment.isVisible());
|
|
assertNotEditable(this.comment);
|
|
assertEventFired(
|
|
this.eventsFireStub, Blockly.Events.BubbleOpen,
|
|
{bubbleType: '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);
|
|
|
|
this.comment.updateEditable();
|
|
|
|
chai.assert.isTrue(this.comment.isVisible());
|
|
assertNotEditable(this.comment);
|
|
assertEventFired(
|
|
this.eventsFireStub, Blockly.Events.BubbleOpen,
|
|
{bubbleType: 'comment', isOpen: true}, this.workspace.id,
|
|
this.block.id);
|
|
});
|
|
test('Not Editable -> Editable', function() {
|
|
const editableStub = sinon.stub(this.block, 'isEditable').returns(false);
|
|
|
|
this.comment.setVisible(true);
|
|
|
|
editableStub.returns(true);
|
|
|
|
this.comment.updateEditable();
|
|
chai.assert.isTrue(this.comment.isVisible());
|
|
assertEditable(this.comment);
|
|
assertEventFired(
|
|
this.eventsFireStub, Blockly.Events.BubbleOpen,
|
|
{bubbleType: 'comment', isOpen: true}, this.workspace.id,
|
|
this.block.id);
|
|
});
|
|
});
|
|
suite('Set/Get Bubble Size', function() {
|
|
teardown(function() {
|
|
sinon.restore();
|
|
});
|
|
function assertBubbleSize(comment, height, width) {
|
|
const 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);
|
|
const 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);
|
|
});
|
|
});
|
|
});
|