Files
blockly/tests/mocha/blocks/lists_test.js
Beka Westberg e9920a54e0 feat!: allow blocks to receive their own delete events (#6337)
* feat!: allow blocks to receive their own delete events

* fix: move block tests back into main directory

* chore: add a test for disposing of callers

* chore: add test for delete being received

* chore: add comment about why we have to run the clock twice

* chore: fix whitespace

* chore: fix whitespace

* chore: fix imports in tests

* chore: bump mocha timeout

* chore: bump timeout again?

* chore: eliminate the possibility that tests are actually timing out

* chore: change timeout back

* chore: remove tests that might be the problematic ones

* chore: attempt enabling delete event test

* chore: enable lists tests

* chore: try ternary test as well

* chore: actually add block test files

* chore: enable remaining tests
2022-08-16 15:49:40 -07:00

195 lines
5.3 KiB
JavaScript

/**
* @license
* Copyright 2022 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
goog.declareModuleId('Blockly.test.lists');
import {runSerializationTestSuite} from '../test_helpers/serialization.js';
import {sharedTestSetup, sharedTestTeardown} from '../test_helpers/setup_teardown.js';
import {ConnectionType} from '../../../build/src/core/connection_type.js';
import {defineStatementBlock} from '../test_helpers/block_definitions.js';
suite('Lists', function() {
setup(function() {
sharedTestSetup.call(this);
defineStatementBlock();
this.workspace = new Blockly.Workspace();
});
teardown(function() {
sharedTestTeardown.call(this);
});
suite('ListsGetIndex', function() {
/**
* Test cases for serialization tests.
* @type {Array<SerializationTestCase>}
*/
const testCases = [
{
title: 'JSON not requiring mutations',
json: {
type: 'lists_getIndex',
id: '1',
fields: {MODE: 'GET', WHERE: 'FIRST'},
},
assertBlockStructure: (block) => {
chai.assert.equal(block.type, 'lists_getIndex');
chai.assert.exists(block.outputConnection);
},
},
{
title: 'JSON requiring mutations',
json: {
type: 'lists_getIndex',
id: '1',
extraState: {isStatement: true},
fields: {MODE: 'REMOVE', WHERE: 'FROM_START'},
},
assertBlockStructure: (block) => {
chai.assert.equal(block.type, 'lists_getIndex');
chai.assert.isNotTrue(block.outputConnection);
chai.assert.isTrue(
block.getInput('AT').type === ConnectionType.INPUT_VALUE
);
},
},
{
title:
'JSON requiring mutations and extra state for previous connection',
json: {
type: 'statement_block',
id: '1',
next: {
block: {
type: 'lists_getIndex',
id: '2',
extraState: {isStatement: true},
fields: {MODE: 'REMOVE', WHERE: 'FROM_START'},
},
},
},
assertBlockStructure: (block) => {},
},
{
title:
'JSON requiring mutations with XML extra state',
json: {
type: 'statement_block',
id: '1',
next: {
block: {
type: 'lists_getIndex',
id: '2',
extraState: '<mutation statement="true" at="true"></mutation>',
fields: {MODE: 'REMOVE', WHERE: 'FROM_START'},
},
},
},
expectedJson: {
type: 'statement_block',
id: '1',
next: {
block: {
type: 'lists_getIndex',
id: '2',
extraState: {isStatement: true},
fields: {MODE: 'REMOVE', WHERE: 'FROM_START'},
},
},
},
assertBlockStructure: (block) => {},
},
];
runSerializationTestSuite(testCases);
});
/**
* Test cases for serialization where JSON hooks should have null
* implementation to avoid serializing xml mutations in json.
* @param {!Object} serializedJson basic serialized json
* @param {!string} xmlMutation xml mutation that should be ignored/not reserialized in round trip
* @return {Array<SerializationTestCase>} test cases
*/
function makeTestCasesForBlockNotNeedingExtraState_(serializedJson, xmlMutation) {
return [
{
title: 'JSON not requiring mutations',
json: serializedJson,
assertBlockStructure: (block) => {
chai.assert.equal(block.type, serializedJson.type);
},
},
{
title:
'JSON with XML extra state',
json: {
...serializedJson,
"extraState": xmlMutation,
},
expectedJson: serializedJson,
assertBlockStructure: (block) => {},
},
];
}
suite('ListsSetIndex', function() {
/**
* Test cases for serialization tests.
* @type {Array<SerializationTestCase>}
*/
const testCases = makeTestCasesForBlockNotNeedingExtraState_(
{
"type": "lists_setIndex",
"id": "1",
"fields": {
"MODE": "SET",
"WHERE": "FROM_START",
},
},
"<mutation at=\"true\"></mutation>"
);
runSerializationTestSuite(testCases);
});
suite('ListsGetSubList', function() {
/**
* Test cases for serialization tests.
* @type {Array<SerializationTestCase>}
*/
const testCases = makeTestCasesForBlockNotNeedingExtraState_(
{
"type": "lists_getSublist",
"id": "1",
"fields": {
"WHERE1": "FROM_START",
"WHERE2": "FROM_START",
},
},
"<mutation at1=\"true\" at2=\"true\"></mutation>"
);
runSerializationTestSuite(testCases);
});
suite('ListsSplit', function() {
/**
* Test cases for serialization tests.
* @type {Array<SerializationTestCase>}
*/
const testCases = makeTestCasesForBlockNotNeedingExtraState_(
{
"type": "lists_split",
"id": "1",
"fields": {
"MODE": "SPLIT",
},
},
"<mutation mode=\"SPLIT\"></mutation>"
);
runSerializationTestSuite(testCases);
});
});