mirror of
https://github.com/google/blockly.git
synced 2026-01-05 08:00:09 +01:00
* chore(deps): Bump chai from 4.3.10 to 5.1.1 Bumps [chai](https://github.com/chaijs/chai) from 4.3.10 to 5.1.1. - [Release notes](https://github.com/chaijs/chai/releases) - [Changelog](https://github.com/chaijs/chai/blob/main/History.md) - [Commits](https://github.com/chaijs/chai/compare/v4.3.10...v5.1.1) --- updated-dependencies: - dependency-name: chai dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * fix(tests): Migrate all usage of chai to ESM (#8216) * fix(tests): Migrate node tests from CJS to ESM This allows us to import (rather than require) chai, fixing failures caused by that package dropping suppport for CJS in chai v5.0.0. * fix(tests): Have mocha tests directly import chai Previously they relied on obtaining it from the global scope, but it's better if imports are explicit. * fix(tests): Remove broken load of chai as script Chai v5.0.0 no longer supports being loaded as a script, so this did nothing but emit an syntax error message on the console. * fix(tests): Migrate browser tests from CJS to ESM This allows us to import (rather than require) chai, fixing failures caused by chai no longer supporting CJS. * chore(tests): format --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Christopher Allen <cpcallen+git@google.com>
125 lines
3.5 KiB
JavaScript
125 lines
3.5 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2020 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {assert} from '../../../node_modules/chai/chai.js';
|
|
import {runTestCases} from './common.js';
|
|
|
|
/**
|
|
* Serialization test case.
|
|
* @implements {TestCase}
|
|
* @record
|
|
*/
|
|
export class SerializationTestCase {
|
|
/**
|
|
* Class for a block serialization test case.
|
|
*/
|
|
constructor() {
|
|
/**
|
|
* @type {string} The block xml to use for test. Do not provide if json is
|
|
* provided.
|
|
*/
|
|
this.xml;
|
|
/**
|
|
* @type {string|undefined} The expected xml after round trip. Provided if
|
|
* it different from xml that was passed in.
|
|
*/
|
|
this.expectedXml;
|
|
/**
|
|
* @type {string} The block json to use for test. Do not provide if xml is
|
|
* provided.
|
|
*/
|
|
this.json;
|
|
/**
|
|
* @type {string|undefined} The expected json after round trip. Provided if
|
|
* it is different from json that was passed in.
|
|
*/
|
|
this.expectedJson;
|
|
}
|
|
/**
|
|
* Asserts that the block created from xml has the expected structure.
|
|
* @param {!Blockly.Block} block The block to check.
|
|
*/
|
|
assertBlockStructure(block) {}
|
|
}
|
|
|
|
/**
|
|
* Runs serialization test suite.
|
|
* @param {!Array<!SerializationTestCase>} testCases The test cases to run.
|
|
*/
|
|
export const runSerializationTestSuite = (testCases) => {
|
|
/**
|
|
* Creates test callback for xmlToBlock test.
|
|
* @param {!SerializationTestCase} testCase The test case information.
|
|
* @return {!Function} The test callback.
|
|
*/
|
|
const createSerializedDataToBlockTestCallback = (testCase) => {
|
|
return function () {
|
|
let block;
|
|
if (testCase.json) {
|
|
block = Blockly.serialization.blocks.append(
|
|
testCase.json,
|
|
this.workspace,
|
|
{recordUndo: true},
|
|
);
|
|
} else {
|
|
block = Blockly.Xml.domToBlock(
|
|
Blockly.utils.xml.textToDom(testCase.xml),
|
|
this.workspace,
|
|
);
|
|
}
|
|
this.clock.runAll();
|
|
testCase.assertBlockStructure(block);
|
|
};
|
|
};
|
|
/**
|
|
* Creates test callback for xml round trip test.
|
|
* @param {!SerializationTestCase} testCase The test case information.
|
|
* @return {!Function} The test callback.
|
|
*/
|
|
const createRoundTripTestCallback = (testCase) => {
|
|
return function () {
|
|
if (testCase.json) {
|
|
const block = Blockly.serialization.blocks.append(
|
|
testCase.json,
|
|
this.workspace,
|
|
{recordUndo: true},
|
|
);
|
|
this.clock.runAll();
|
|
const generatedJson = Blockly.serialization.blocks.save(block);
|
|
const expectedJson = testCase.expectedJson || testCase.json;
|
|
assert.deepEqual(generatedJson, expectedJson);
|
|
} else {
|
|
const block = Blockly.Xml.domToBlock(
|
|
Blockly.utils.xml.textToDom(testCase.xml),
|
|
this.workspace,
|
|
);
|
|
this.clock.runAll();
|
|
const generatedXml = Blockly.Xml.domToPrettyText(
|
|
Blockly.Xml.blockToDom(block),
|
|
);
|
|
const expectedXml = testCase.expectedXml || testCase.xml;
|
|
assert.equal(generatedXml, expectedXml);
|
|
}
|
|
};
|
|
};
|
|
suite('Serialization', function () {
|
|
suite('xmlToBlock', function () {
|
|
runTestCases(testCases, createSerializedDataToBlockTestCallback);
|
|
});
|
|
suite('xml round-trip', function () {
|
|
setup(function () {
|
|
sinon.stub(Blockly.utils.idGenerator.TEST_ONLY, 'genUid').returns('1');
|
|
});
|
|
|
|
teardown(function () {
|
|
sinon.restore();
|
|
});
|
|
|
|
runTestCases(testCases, createRoundTripTestCallback);
|
|
});
|
|
});
|
|
};
|