mirror of
https://github.com/google/blockly.git
synced 2026-01-10 10:27:08 +01:00
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
goog.declareModuleId('Blockly.test.eventBlockDelete');
|
|
|
|
import * as eventUtils from '../../build/src/core/events/utils.js';
|
|
import {defineRowBlock} from './test_helpers/block_definitions.js';
|
|
import {sharedTestSetup, sharedTestTeardown} from './test_helpers/setup_teardown.js';
|
|
|
|
suite('Block Delete Event', function() {
|
|
setup(function() {
|
|
sharedTestSetup.call(this);
|
|
defineRowBlock();
|
|
this.workspace = new Blockly.Workspace();
|
|
});
|
|
|
|
teardown(function() {
|
|
sharedTestTeardown.call(this);
|
|
});
|
|
|
|
suite('Serialization', function() {
|
|
test('events round-trip through JSON', function() {
|
|
const block = this.workspace.newBlock('row_block', 'block_id');
|
|
const origEvent = new Blockly.Events.BlockDelete(block);
|
|
|
|
const json = origEvent.toJson();
|
|
const newEvent = new Blockly.Events.fromJson(json, this.workspace);
|
|
delete origEvent.oldXml; // xml fails deep equals for some reason.
|
|
delete newEvent.oldXml; // xml fails deep equals for some reason.
|
|
|
|
chai.assert.deepEqual(newEvent, origEvent);
|
|
});
|
|
});
|
|
});
|