mirror of
https://github.com/google/blockly.git
synced 2026-01-08 09:30:06 +01:00
275 lines
7.6 KiB
JavaScript
275 lines
7.6 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Blockly Theme tests.
|
|
* @author samelh@google.com (Sam El-Husseini)
|
|
*/
|
|
'use strict';
|
|
|
|
suite('Theme', function() {
|
|
|
|
function defineThemeTestBlocks() {
|
|
Blockly.defineBlocksWithJsonArray([{
|
|
"type": "stack_block",
|
|
"message0": "",
|
|
"previousStatement": null,
|
|
"nextStatement": null
|
|
},
|
|
{
|
|
"type": "row_block",
|
|
"message0": "%1",
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "INPUT"
|
|
}
|
|
],
|
|
"output": null
|
|
}]);
|
|
}
|
|
|
|
function undefineThemeTestBlocks() {
|
|
delete Blockly.Blocks['stack_block'];
|
|
delete Blockly.Blocks['row_block'];
|
|
}
|
|
|
|
|
|
function createBlockStyles() {
|
|
return {
|
|
"styleOne": {
|
|
"colourPrimary": "#aaaaaa",
|
|
"colourSecondary": "#bbbbbb",
|
|
"colourTertiary": "#cccccc",
|
|
"hat": 'cap'
|
|
}
|
|
};
|
|
}
|
|
|
|
function createMultipleBlockStyles() {
|
|
return {
|
|
"styleOne": {
|
|
"colourPrimary": "#aaaaaa",
|
|
"colourSecondary": "#bbbbbb",
|
|
"colourTertiary": "#cccccc",
|
|
"hat": 'cap'
|
|
},
|
|
"styleTwo": {
|
|
"colourPrimary": "#000000",
|
|
"colourSecondary": "#999999",
|
|
"colourTertiary": "#4d4d4d",
|
|
"hat": ''
|
|
}
|
|
};
|
|
}
|
|
|
|
function stringifyAndCompare(val1, val2) {
|
|
var stringVal1 = JSON.stringify(val1);
|
|
var stringVal2 = JSON.stringify(val2);
|
|
assertEquals(stringVal1, stringVal2);
|
|
}
|
|
|
|
test('Set All BlockStyles', function() {
|
|
var theme = new Blockly.Theme('test', createBlockStyles());
|
|
stringifyAndCompare(createBlockStyles(), theme.blockStyles_);
|
|
theme.setAllBlockStyles(createMultipleBlockStyles());
|
|
stringifyAndCompare(createMultipleBlockStyles(), theme.blockStyles_);
|
|
});
|
|
|
|
test('Get All BlockStyles', function() {
|
|
var theme = new Blockly.Theme('test', createMultipleBlockStyles());
|
|
var allBlocks = theme.getAllBlockStyles();
|
|
stringifyAndCompare(createMultipleBlockStyles(), allBlocks);
|
|
});
|
|
|
|
test('Get BlockStyles', function() {
|
|
var theme = new Blockly.Theme('test', createBlockStyles());
|
|
var blockStyle = theme.getBlockStyle('styleOne');
|
|
|
|
stringifyAndCompare(blockStyle, createBlockStyles().styleOne);
|
|
});
|
|
|
|
test('Set BlockStyle Update', function() {
|
|
var theme = new Blockly.Theme('test', createBlockStyles());
|
|
var blockStyle = createBlockStyles();
|
|
blockStyle.styleOne.colourPrimary = '#00ff00';
|
|
|
|
theme.setBlockStyle('styleOne', blockStyle.styleOne);
|
|
|
|
stringifyAndCompare(theme.blockStyles_, blockStyle);
|
|
});
|
|
|
|
test('Set BlockStyle Add', function() {
|
|
var theme = new Blockly.Theme('test', createBlockStyles());
|
|
var blockStyle = createMultipleBlockStyles();
|
|
|
|
theme.setBlockStyle('styleTwo', blockStyle.styleTwo);
|
|
|
|
stringifyAndCompare(theme.blockStyles_, blockStyle);
|
|
});
|
|
|
|
test('Set Theme', function() {
|
|
defineThemeTestBlocks();
|
|
var blockStyles = createBlockStyles();
|
|
var workspace = new Blockly.WorkspaceSvg({});
|
|
var blockA = workspace.newBlock('stack_block');
|
|
|
|
blockA.setStyle = function() {this.styleName_ = 'styleTwo';};
|
|
var callCount = 1;
|
|
workspace.refreshToolboxSelection = function() {
|
|
return ++callCount;
|
|
};
|
|
blockA.styleName_ = 'styleOne';
|
|
|
|
var stub = sinon.stub(Blockly, "getMainWorkspace").returns(workspace);
|
|
|
|
workspace.setTheme(blockStyles);
|
|
|
|
// Checks that the theme was set correctly on Blockly namespace
|
|
stringifyAndCompare(workspace.getTheme(), blockStyles);
|
|
|
|
// Checks that the setTheme function was called on the block
|
|
assertEquals(blockA.getStyleName(), 'styleTwo');
|
|
|
|
// check that the toolbox refreshed method was called
|
|
assertEquals(workspace.refreshToolboxSelection(), 3);
|
|
|
|
assertEquals(Blockly.Events.FIRE_QUEUE_.pop().element, 'theme');
|
|
|
|
undefineThemeTestBlocks();
|
|
|
|
stub.restore();
|
|
});
|
|
|
|
suite('Validate block styles', function() {
|
|
test('Null', function() {
|
|
var inputStyle = null;
|
|
var expectedOutput = {
|
|
"colourPrimary": "#000000",
|
|
"colourSecondary": "#999999",
|
|
"colourTertiary": "#4d4d4d",
|
|
"hat": ''
|
|
};
|
|
stringifyAndCompare(
|
|
Blockly.Theme.validatedBlockStyle(inputStyle), expectedOutput);
|
|
});
|
|
|
|
test('Empty', function() {
|
|
var inputStyle = {};
|
|
var expectedOutput = {
|
|
"colourPrimary": "#000000",
|
|
"colourSecondary": "#999999",
|
|
"colourTertiary": "#4d4d4d",
|
|
"hat": ''
|
|
};
|
|
stringifyAndCompare(
|
|
Blockly.Theme.validatedBlockStyle(inputStyle), expectedOutput);
|
|
});
|
|
|
|
test('Incomplete hex', function() {
|
|
var inputStyle = {
|
|
"colourPrimary": "#012345"
|
|
};
|
|
var expectedOutput = {
|
|
"colourPrimary": "#012345",
|
|
"colourSecondary": "#99a7b5",
|
|
"colourTertiary": "#4d657d",
|
|
"hat": ''
|
|
};
|
|
stringifyAndCompare(
|
|
Blockly.Theme.validatedBlockStyle(inputStyle), expectedOutput);
|
|
});
|
|
|
|
test('Complete hex', function() {
|
|
var inputStyle = {
|
|
"colourPrimary": "#aaaaaa",
|
|
"colourSecondary": "#bbbbbb",
|
|
"colourTertiary": "#cccccc",
|
|
"hat": 'cap'
|
|
};
|
|
var expectedOutput = {
|
|
"colourPrimary": "#aaaaaa",
|
|
"colourSecondary": "#bbbbbb",
|
|
"colourTertiary": "#cccccc",
|
|
"hat": 'cap'
|
|
};
|
|
stringifyAndCompare(
|
|
Blockly.Theme.validatedBlockStyle(inputStyle), expectedOutput);
|
|
});
|
|
|
|
test('Complete hue', function() {
|
|
var inputStyle = {
|
|
"colourPrimary": "20",
|
|
"colourSecondary": "40",
|
|
"colourTertiary": "60",
|
|
};
|
|
var expectedOutput = {
|
|
"colourPrimary": "#a5745b",
|
|
"colourSecondary": "#a58c5b",
|
|
"colourTertiary": "#a5a55b",
|
|
"hat": ''
|
|
};
|
|
stringifyAndCompare(
|
|
Blockly.Theme.validatedBlockStyle(inputStyle), expectedOutput);
|
|
});
|
|
|
|
test('Incomplete hue', function() {
|
|
var inputStyle = {
|
|
"colourPrimary": "20",
|
|
};
|
|
var expectedOutput = {
|
|
"colourPrimary": "#a5745b",
|
|
"colourSecondary": "#dbc7bd",
|
|
"colourTertiary": "#c09e8c",
|
|
"hat": ''
|
|
};
|
|
stringifyAndCompare(
|
|
Blockly.Theme.validatedBlockStyle(inputStyle), expectedOutput);
|
|
});
|
|
|
|
test('Complete css colour name', function() {
|
|
var inputStyle = {
|
|
"colourPrimary": "red",
|
|
"colourSecondary": "white",
|
|
"colourTertiary": "blue"
|
|
};
|
|
var expectedOutput = {
|
|
"colourPrimary": "#ff0000",
|
|
"colourSecondary": "#ffffff",
|
|
"colourTertiary": "#0000ff",
|
|
"hat": ''
|
|
};
|
|
stringifyAndCompare(
|
|
Blockly.Theme.validatedBlockStyle(inputStyle), expectedOutput);
|
|
});
|
|
|
|
test('Incomplete css colour name', function() {
|
|
var inputStyle = {
|
|
"colourPrimary": "black",
|
|
};
|
|
var expectedOutput = {
|
|
"colourPrimary": "#000000",
|
|
"colourSecondary": "#999999",
|
|
"colourTertiary": "#4d4d4d",
|
|
"hat": ''
|
|
};
|
|
stringifyAndCompare(
|
|
Blockly.Theme.validatedBlockStyle(inputStyle), expectedOutput);
|
|
});
|
|
});
|
|
});
|