Files
blockly/tests/mocha/field_variable_test.js
Christopher Allen 6f20ac290d refactor(tests): Use import instead of goog.bootstrap to load Blockly in mocha tests (#7406)
* fix(build): Have buildShims clean up up after itself

  We need to create a build/package.json file to allow node.js to
  load build/src/core/blockly.js and the other chunk entry points
  as ES modules (it forcibly assumes .js means CJS even if one is
  trying to import, unless package.json says {"type": "module"}),
  but this interferes with scripts/migration/js2ts doing a
  require('build/deps.js'), which is _not_ an ES module.

  Specific error message was:

  /Users/cpcallen/src/blockly/scripts/migration/js2ts:56
  require(path.resolve(__dirname, '../../build/deps.js'));
  ^

  Error [ERR_REQUIRE_ESM]: require() of ES Module
  /Users/cpcallen/src/blockly/build/deps.js from /Users/cpcallen/src/blockly/scripts/migration/js2ts
  not supported.
  deps.js is treated as an ES module file as it is a .js file whose
  nearest parent package.json contains "type": "module" which
  declares all .js files in that package scope as ES modules.
  Instead rename deps.js to end in .cjs, change the requiring code
  to use dynamic import() which is available in all CommonJS
  modules, or change "type": "module" to "type": "commonjs" in
  /Users/cpcallen/src/blockly/build/package.json to treat all .js
  files as CommonJS (using .mjs for all ES modules instead).

      at Object.<anonymous> (/Users/cpcallen/src/blockly/scripts/migration/js2ts:56:1) {
    code: 'ERR_REQUIRE_ESM'
  }

* chore(tests): Reorder to put interesting script nearer top of file

* chore(tests): Add missing imports of closure/goog/goog.js

  These modules were depending on being loaded via the
  debug module loader, which cannot be used without first loading
  base.js as a script, and thereby defining goog.declareModuleId
  as a side effect—but if they are to be loaded via direct import
  statements then they need to actually import their own
  dependencies.

  This is a temporary measure as soon the goog.declareMouleId
  calls can themselves be deleted.

* refactor(tests): Use import instead of bootstrap to load Blockly

* chores(build): Stop generating deps.mocha.js

  This file was only needed by tests/mocha/index.html's use of
  the debug module loader (via bootstrap.js), which has now been
  removed.

* chore(tests): Remove unneeded goog.declareModuleId calls

  These were only needed because these modules were previously
  being loaded by goog.require and/or goog.bootstrap.

* chores(tests): Remove dead code

  We are fully committed to proper modules now.
2023-08-18 18:06:52 +01:00

618 lines
20 KiB
JavaScript

/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import * as Blockly from '../../build/src/core/blockly.js';
import {
assertFieldValue,
runConstructorSuiteTests,
runFromJsonSuiteTests,
runSetValueTests,
} from './test_helpers/fields.js';
import {
createGenUidStubWithReturns,
sharedTestSetup,
sharedTestTeardown,
workspaceTeardown,
} from './test_helpers/setup_teardown.js';
import {
createTestBlock,
defineRowBlock,
} from './test_helpers/block_definitions.js';
suite('Variable Fields', function () {
const FAKE_VARIABLE_NAME = 'default_name';
const FAKE_ID = 'id1';
setup(function () {
sharedTestSetup.call(this);
this.workspace = new Blockly.Workspace();
// Stub for default variable name.
sinon
.stub(Blockly.Variables.TEST_ONLY, 'generateUniqueNameInternal')
.returns(FAKE_VARIABLE_NAME);
});
teardown(function () {
sharedTestTeardown.call(this);
});
/**
* Configuration for field creation tests with invalid values.
* @type {!Array<!FieldCreationTestCase>}
*/
const invalidValueCreationTestCases = [
{title: 'Undefined', value: undefined, args: [undefined]},
{title: 'Null', value: null, args: [null]},
{title: 'Boolean true', value: true, args: [true]},
{title: 'Boolean false', value: false, args: [false]},
{title: 'Number (Truthy)', value: 1, args: [1]},
{title: 'Number (Falsy)', value: 0, args: [0]},
{title: 'NaN', value: NaN, args: [NaN]},
];
/**
* Configuration for field creation tests with valid values.
* @type {!Array<!FieldCreationTestCase>}
*/
const validValueCreationTestCases = [
{
title: 'String',
value: 'id2',
args: ['name2'],
expectedValue: 'id2',
expectedText: 'name2',
},
];
const addJson = function (testCase) {
testCase.json = {'variable': testCase.args[0]};
};
invalidValueCreationTestCases.forEach(addJson);
validValueCreationTestCases.forEach(addJson);
const initVariableField = (workspace, fieldVariable) => {
const mockBlock = createTestBlock();
mockBlock.workspace = workspace;
fieldVariable.setSourceBlock(mockBlock);
// No view to initialize, but still need to init the model.
const genUidStub = createGenUidStubWithReturns(FAKE_ID);
fieldVariable.initModel();
genUidStub.restore();
return fieldVariable;
};
const customCreateWithJs = function (testCase) {
const fieldVariable = testCase
? new Blockly.FieldVariable(...testCase.args)
: new Blockly.FieldVariable();
return initVariableField(this.workspace, fieldVariable);
};
const customCreateWithJson = function (testCase) {
const fieldVariable = testCase
? Blockly.FieldVariable.fromJson(testCase.json)
: Blockly.FieldVariable.fromJson({});
return initVariableField(this.workspace, fieldVariable);
};
/**
* The expected default name for the field being tested.
* @type {*}
*/
const defaultFieldName = FAKE_VARIABLE_NAME;
/**
* Asserts that the field property values are set to default.
* @param {!Blockly.FieldVariable} field The field to check.
*/
const assertFieldDefault = function (field) {
assertFieldValue(field, FAKE_ID, defaultFieldName);
};
/**
* Asserts that the field properties are correct based on the test case.
* @param {!Blockly.FieldVariable} field The field to check.
* @param {!FieldValueTestCase} testCase The test case.
*/
const validTestCaseAssertField = function (field, testCase) {
assertFieldValue(field, FAKE_ID, testCase.expectedText);
};
runConstructorSuiteTests(
Blockly.FieldVariable,
validValueCreationTestCases,
invalidValueCreationTestCases,
validTestCaseAssertField,
assertFieldDefault,
customCreateWithJs,
);
runFromJsonSuiteTests(
Blockly.FieldVariable,
validValueCreationTestCases,
invalidValueCreationTestCases,
validTestCaseAssertField,
assertFieldDefault,
customCreateWithJson,
);
suite('initModel', function () {
test('No Value Before InitModel', function () {
const fieldVariable = new Blockly.FieldVariable('name1');
chai.assert.equal(fieldVariable.getText(), '');
chai.assert.isNull(fieldVariable.getValue());
});
});
/**
* Configuration for field tests with invalid values.
* @type {!Array<!FieldCreationTestCase>}
*/
const invalidValueTestCases = [
...invalidValueCreationTestCases,
{
title: 'Variable does not exist',
value: 'id3',
args: ['name2'],
expectedValue: 'id2',
expectedText: 'name2',
},
];
/**
* Configuration for field tests with valid values.
* @type {!Array<!FieldCreationTestCase>}
*/
const validValueTestCases = [
{
title: 'New variable ID',
value: 'id2',
args: ['name2'],
expectedValue: 'id2',
expectedText: 'name2',
},
];
suite('setValue', function () {
setup(function () {
this.workspace.createVariable('name2', null, 'id2');
this.field = new Blockly.FieldVariable(null);
initVariableField(this.workspace, this.field);
// Invalid value test are expected to log errors.
const nativeConsoleWarn = console.warn;
this.nativeConsoleWarn = nativeConsoleWarn;
console.warn = function (msg) {
if (!msg.includes("Variable id doesn't point to a real variable")) {
nativeConsoleWarn.call(this, ...arguments);
}
};
});
teardown(function () {
console.warn = this.nativeConsoleWarn;
});
runSetValueTests(
validValueTestCases,
invalidValueTestCases,
FAKE_ID,
defaultFieldName,
);
});
suite('Dropdown options', function () {
const assertDropdownContents = (fieldVariable, expectedVarOptions) => {
const dropdownOptions =
Blockly.FieldVariable.dropdownCreate.call(fieldVariable);
// Expect variable options, a rename option, and a delete option.
chai.assert.lengthOf(dropdownOptions, expectedVarOptions.length + 2);
for (let i = 0, option; (option = expectedVarOptions[i]); i++) {
chai.assert.deepEqual(dropdownOptions[i], option);
}
chai.assert.include(
dropdownOptions[dropdownOptions.length - 2][0],
'Rename',
);
chai.assert.include(
dropdownOptions[dropdownOptions.length - 1][0],
'Delete',
);
};
test('Contains variables created before field', function () {
this.workspace.createVariable('name1', '', 'id1');
this.workspace.createVariable('name2', '', 'id2');
// Expect that the dropdown options will contain the variables that exist
const fieldVariable = initVariableField(
this.workspace,
new Blockly.FieldVariable('name2'),
);
assertDropdownContents(fieldVariable, [
['name1', 'id1'],
['name2', 'id2'],
]);
});
test('Contains variables created after field', function () {
// Expect that the dropdown options will contain the variables that exist
const fieldVariable = initVariableField(
this.workspace,
new Blockly.FieldVariable('name1'),
);
// Expect that variables created after field creation will show up too.
this.workspace.createVariable('name2', '', 'id2');
assertDropdownContents(fieldVariable, [
['name1', 'id1'],
['name2', 'id2'],
]);
});
test('Contains variables created before and after field', function () {
this.workspace.createVariable('name1', '', 'id1');
this.workspace.createVariable('name2', '', 'id2');
// Expect that the dropdown options will contain the variables that exist
const fieldVariable = initVariableField(
this.workspace,
new Blockly.FieldVariable('name1'),
);
// Expect that variables created after field creation will show up too.
this.workspace.createVariable('name3', '', 'id3');
assertDropdownContents(fieldVariable, [
['name1', 'id1'],
['name2', 'id2'],
['name3', 'id3'],
]);
});
});
suite('Validators', function () {
setup(function () {
this.workspace.createVariable('name1', null, 'id1');
this.workspace.createVariable('name2', null, 'id2');
this.workspace.createVariable('name3', null, 'id3');
this.variableField = initVariableField(
this.workspace,
new Blockly.FieldVariable('name1'),
);
});
suite('Null Validator', function () {
setup(function () {
this.variableField.setValidator(function () {
return null;
});
});
test('New Value', function () {
this.variableField.setValue('id2');
assertFieldValue(this.variableField, 'id1', 'name1');
});
});
suite("Force 'id' ID Validator", function () {
setup(function () {
this.variableField.setValidator(function (newValue) {
return 'id' + newValue.charAt(newValue.length - 1);
});
});
test('New Value', function () {
// Must create the var so that the field doesn't throw an error.
this.workspace.createVariable('thing2', null, 'other2');
this.variableField.setValue('other2');
assertFieldValue(this.variableField, 'id2', 'name2');
});
});
suite('Returns Undefined Validator', function () {
setup(function () {
this.variableField.setValidator(function () {});
});
test('New Value', function () {
this.variableField.setValue('id2');
assertFieldValue(this.variableField, 'id2', 'name2');
});
});
});
suite('Customizations', function () {
suite('Types and Default Types', function () {
test('JS Constructor', function () {
const field = new Blockly.FieldVariable(
'test',
undefined,
['Type1'],
'Type1',
);
chai.assert.deepEqual(field.variableTypes, ['Type1']);
chai.assert.equal(field.defaultType, 'Type1');
});
test('JSON Definition', function () {
const field = Blockly.FieldVariable.fromJson({
variable: 'test',
variableTypes: ['Type1'],
defaultType: 'Type1',
});
chai.assert.deepEqual(field.variableTypes, ['Type1']);
chai.assert.equal(field.defaultType, 'Type1');
});
test('JS Configuration - Simple', function () {
const field = new Blockly.FieldVariable(
'test',
undefined,
undefined,
undefined,
{
variableTypes: ['Type1'],
defaultType: 'Type1',
},
);
chai.assert.deepEqual(field.variableTypes, ['Type1']);
chai.assert.equal(field.defaultType, 'Type1');
});
test('JS Configuration - Ignore', function () {
const field = new Blockly.FieldVariable(
'test',
undefined,
['Type2'],
'Type2',
{
variableTypes: ['Type1'],
defaultType: 'Type1',
},
);
chai.assert.deepEqual(field.variableTypes, ['Type1']);
chai.assert.equal(field.defaultType, 'Type1');
});
});
});
suite('Get variable types', function () {
setup(function () {
this.workspace.createVariable('name1', 'type1');
this.workspace.createVariable('name2', 'type2');
});
test('variableTypes is undefined', function () {
// Expect that since variableTypes is undefined, only type empty string
// will be returned (regardless of what types are available on the workspace).
const fieldVariable = new Blockly.FieldVariable('name1');
const resultTypes = fieldVariable.getVariableTypes();
chai.assert.deepEqual(resultTypes, ['']);
});
test('variableTypes is explicit', function () {
// Expect that since variableTypes is defined, it will be the return
// value, regardless of what types are available on the workspace.
const fieldVariable = new Blockly.FieldVariable(
'name1',
null,
['type1', 'type2'],
'type1',
);
const resultTypes = fieldVariable.getVariableTypes();
chai.assert.deepEqual(resultTypes, ['type1', 'type2']);
chai.assert.equal(
fieldVariable.defaultType,
'type1',
'Default type was wrong',
);
});
test('variableTypes is null', function () {
// Expect all variable types to be returned.
// The field does not need to be initialized to do this--it just needs
// a pointer to the workspace.
const fieldVariable = new Blockly.FieldVariable('name1');
const mockBlock = createTestBlock();
mockBlock.workspace = this.workspace;
fieldVariable.setSourceBlock(mockBlock);
fieldVariable.variableTypes = null;
const resultTypes = fieldVariable.getVariableTypes();
// The empty string is always one of the options.
chai.assert.deepEqual(resultTypes, ['type1', 'type2', '']);
});
test('variableTypes is the empty list', function () {
const fieldVariable = new Blockly.FieldVariable('name1');
const mockBlock = createTestBlock();
mockBlock.workspace = this.workspace;
fieldVariable.setSourceBlock(mockBlock);
fieldVariable.variableTypes = [];
chai.assert.throws(function () {
fieldVariable.getVariableTypes();
});
});
});
suite('Default types', function () {
test('Default type exists', function () {
const fieldVariable = new Blockly.FieldVariable(null, null, ['b'], 'b');
chai.assert.equal(
fieldVariable.defaultType,
'b',
'The variable field\'s default type should be "b"',
);
});
test('No default type', function () {
const fieldVariable = new Blockly.FieldVariable(null);
chai.assert.equal(
fieldVariable.defaultType,
'',
"The variable field's default type should be the empty string",
);
chai.assert.isNull(
fieldVariable.variableTypes,
"The variable field's allowed types should be null",
);
});
test('Default type mismatch', function () {
// Invalid default type when creating a variable field.
chai.assert.throws(function () {
new Blockly.FieldVariable(null, null, ['a'], 'b');
});
});
test('Default type mismatch with empty array', function () {
// Invalid default type when creating a variable field.
chai.assert.throws(function () {
new Blockly.FieldVariable(null, null, ['a']);
});
});
});
suite('Renaming Variables', function () {
setup(function () {
this.workspace.createVariable('name1', null, 'id1');
Blockly.defineBlocksWithJsonArray([
{
'type': 'field_variable_test_block',
'message0': '%1',
'args0': [
{
'type': 'field_variable',
'name': 'VAR',
'variable': 'name1',
},
],
},
]);
this.variableBlock = new Blockly.Block(
this.workspace,
'field_variable_test_block',
);
this.variableField = this.variableBlock.getField('VAR');
});
test('Rename & Keep Old ID', function () {
this.workspace.renameVariableById('id1', 'name2');
chai.assert.equal(this.variableField.getText(), 'name2');
chai.assert.equal(this.variableField.getValue(), 'id1');
});
test('Rename & Get New ID', function () {
this.workspace.createVariable('name2', null, 'id2');
this.workspace.renameVariableById('id1', 'name2');
chai.assert.equal(this.variableField.getText(), 'name2');
chai.assert.equal(this.variableField.getValue(), 'id2');
});
});
suite('Serialization', function () {
setup(function () {
this.workspace = new Blockly.Workspace();
defineRowBlock();
createGenUidStubWithReturns(new Array(10).fill().map((_, i) => 'id' + i));
});
teardown(function () {
workspaceTeardown.call(this, this.workspace);
});
suite('Full', function () {
test('Untyped', function () {
const block = this.workspace.newBlock('row_block');
const field = new Blockly.FieldVariable('x');
block.getInput('INPUT').appendField(field, 'VAR');
const jso = Blockly.serialization.blocks.save(block);
chai.assert.deepEqual(jso['fields'], {
'VAR': {'id': 'id2', 'name': 'x', 'type': ''},
});
});
test('Typed', function () {
const block = this.workspace.newBlock('row_block');
const field = new Blockly.FieldVariable(
'x',
undefined,
undefined,
'String',
);
block.getInput('INPUT').appendField(field, 'VAR');
const jso = Blockly.serialization.blocks.save(block);
chai.assert.deepEqual(jso['fields'], {
'VAR': {'id': 'id2', 'name': 'x', 'type': 'String'},
});
});
});
suite('Not full', function () {
test('Untyped', function () {
const block = this.workspace.newBlock('row_block');
const field = new Blockly.FieldVariable('x');
block.getInput('INPUT').appendField(field, 'VAR');
const jso = Blockly.serialization.blocks.save(block, {
doFullSerialization: false,
});
chai.assert.deepEqual(jso['fields'], {'VAR': {'id': 'id2'}});
chai.assert.isUndefined(jso['fields']['VAR']['name']);
chai.assert.isUndefined(jso['fields']['VAR']['type']);
});
test('Typed', function () {
const block = this.workspace.newBlock('row_block');
const field = new Blockly.FieldVariable(
'x',
undefined,
undefined,
'String',
);
block.getInput('INPUT').appendField(field, 'VAR');
const jso = Blockly.serialization.blocks.save(block, {
doFullSerialization: false,
});
chai.assert.deepEqual(jso['fields'], {'VAR': {'id': 'id2'}});
chai.assert.isUndefined(jso['fields']['VAR']['name']);
chai.assert.isUndefined(jso['fields']['VAR']['type']);
});
});
});
suite('Deserialization', function () {
setup(function () {
this.workspace = new Blockly.Workspace();
defineRowBlock();
createGenUidStubWithReturns(new Array(10).fill().map((_, i) => 'id' + i));
});
teardown(function () {
workspaceTeardown.call(this, this.workspace);
});
test('ID', function () {
this.workspace.createVariable('test', '', 'id1');
const block = Blockly.serialization.blocks.append(
{
'type': 'variables_get',
'fields': {
'VAR': {
'id': 'id1',
},
},
},
this.workspace,
);
const variable = block.getField('VAR').getVariable();
chai.assert.equal(variable.name, 'test');
chai.assert.equal(variable.type, '');
chai.assert.equal(variable.getId(), 'id1');
});
test('Name, untyped', function () {
const block = Blockly.serialization.blocks.append(
{
'type': 'variables_get',
'fields': {
'VAR': {
'name': 'test',
},
},
},
this.workspace,
);
const variable = block.getField('VAR').getVariable();
chai.assert.equal(variable.name, 'test');
chai.assert.equal(variable.type, '');
chai.assert.equal(variable.getId(), 'id2');
});
test('Name, typed', function () {
const block = Blockly.serialization.blocks.append(
{
'type': 'variables_get',
'fields': {
'VAR': {
'name': 'test',
'type': 'string',
},
},
},
this.workspace,
);
const variable = block.getField('VAR').getVariable();
chai.assert.equal(variable.name, 'test');
chai.assert.equal(variable.type, 'string');
chai.assert.equal(variable.getId(), 'id2');
});
});
});