mirror of
https://github.com/google/blockly.git
synced 2026-01-04 23:50:12 +01:00
There is significant confusion in names and comments with regards to variables and procedures. `Blockly.Generator.prototype.variableDB_` is a Blockly.Names database, not a variable map. This rename introduces a getter and setter so deprecated references still work. This commit also fixes some comments which are either outright wrong or misleading regarding variable and procedure names.
165 lines
5.9 KiB
JavaScript
165 lines
5.9 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2014 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Generating Dart for unit test blocks.
|
|
* @author fraser@google.com (Neil Fraser)
|
|
*/
|
|
'use strict';
|
|
|
|
Blockly.Dart['unittest_main'] = function(block) {
|
|
// Container for unit tests.
|
|
var resultsVar = Blockly.Dart.nameDB_.getName('unittestResults',
|
|
Blockly.Names.DEVELOPER_VARIABLE_TYPE);
|
|
var functionName = Blockly.Dart.provideFunction_(
|
|
'unittest_report',
|
|
[ 'String ' + Blockly.Dart.FUNCTION_NAME_PLACEHOLDER_ + '() {',
|
|
' // Create test report.',
|
|
' List report = [];',
|
|
' StringBuffer summary = new StringBuffer();',
|
|
' int fails = 0;',
|
|
' for (int x = 0; x < ' + resultsVar + '.length; x++) {',
|
|
' if (' + resultsVar + '[x][0]) {',
|
|
' summary.write(".");',
|
|
' } else {',
|
|
' summary.write("F");',
|
|
' fails++;',
|
|
' report.add("");',
|
|
' report.add("FAIL: ${' + resultsVar + '[x][2]}");',
|
|
' report.add(' + resultsVar + '[x][1]);',
|
|
' }',
|
|
' }',
|
|
' report.insert(0, summary.toString());',
|
|
' report.add("");',
|
|
' report.add("Ran ${' + resultsVar + '.length} tests.");',
|
|
' report.add("");',
|
|
' if (fails != 0) {',
|
|
' report.add("FAILED (failures=$fails)");',
|
|
' } else {',
|
|
' report.add("OK");',
|
|
' }',
|
|
' return report.join("\\n");',
|
|
'}']);
|
|
// Setup global to hold test results.
|
|
var code = resultsVar + ' = [];\n';
|
|
// Say which test suite this is.
|
|
code += 'print(\'\\n====================\\n\\n' +
|
|
'Running suite: ' +
|
|
block.getFieldValue('SUITE_NAME') +
|
|
'\');\n';
|
|
// Run tests (unindented).
|
|
code += Blockly.Dart.statementToCode(block, 'DO')
|
|
.replace(/^ /, '').replace(/\n /g, '\n');
|
|
// Print the report to the console (that's where errors will go anyway).
|
|
code += 'print(' + functionName + '());\n';
|
|
// Destroy results.
|
|
code += resultsVar + ' = null;\n';
|
|
return code;
|
|
};
|
|
|
|
Blockly.Dart['unittest_main'].defineAssert_ = function() {
|
|
var resultsVar = Blockly.Dart.nameDB_.getName('unittestResults',
|
|
Blockly.Names.DEVELOPER_VARIABLE_TYPE);
|
|
var functionName = Blockly.Dart.provideFunction_(
|
|
'unittest_assertequals',
|
|
[ 'void ' + Blockly.Dart.FUNCTION_NAME_PLACEHOLDER_ +
|
|
'(dynamic actual, dynamic expected, String message) {',
|
|
' // Asserts that a value equals another value.',
|
|
' if (' + resultsVar + ' == null) {',
|
|
' throw "Orphaned assert: ${message}";',
|
|
' }',
|
|
' bool equals(a, b) {',
|
|
' if (a == b) {',
|
|
' return true;',
|
|
' } else if (a is List && b is List) {',
|
|
' if (a.length != b.length) {',
|
|
' return false;',
|
|
' }',
|
|
' for (num i = 0; i < a.length; i++) {',
|
|
' if (!equals(a[i], b[i])) {',
|
|
' return false;',
|
|
' }',
|
|
' }',
|
|
' return true;',
|
|
' }',
|
|
' return false;',
|
|
' }',
|
|
' if (equals(actual, expected)) {',
|
|
' ' + resultsVar + '.add([true, "OK", message]);',
|
|
' } else {',
|
|
' ' + resultsVar + '.add([false, ' +
|
|
'"Expected: $expected\\nActual: $actual", message]);',
|
|
' }',
|
|
'}']);
|
|
return functionName;
|
|
};
|
|
|
|
Blockly.Dart['unittest_assertequals'] = function(block) {
|
|
// Asserts that a value equals another value.
|
|
var message = Blockly.Dart.valueToCode(block, 'MESSAGE',
|
|
Blockly.Dart.ORDER_NONE) || '';
|
|
var actual = Blockly.Dart.valueToCode(block, 'ACTUAL',
|
|
Blockly.Dart.ORDER_NONE) || 'null';
|
|
var expected = Blockly.Dart.valueToCode(block, 'EXPECTED',
|
|
Blockly.Dart.ORDER_NONE) || 'null';
|
|
return Blockly.Dart['unittest_main'].defineAssert_() +
|
|
'(' + actual + ', ' + expected + ', ' + message + ');\n';
|
|
};
|
|
|
|
Blockly.Dart['unittest_assertvalue'] = function(block) {
|
|
// Asserts that a value is true, false, or null.
|
|
var message = Blockly.Dart.valueToCode(block, 'MESSAGE',
|
|
Blockly.Dart.ORDER_NONE) || '';
|
|
var actual = Blockly.Dart.valueToCode(block, 'ACTUAL',
|
|
Blockly.Dart.ORDER_NONE) || 'null';
|
|
var expected = block.getFieldValue('EXPECTED');
|
|
if (expected == 'TRUE') {
|
|
expected = 'true';
|
|
} else if (expected == 'FALSE') {
|
|
expected = 'false';
|
|
} else if (expected == 'NULL') {
|
|
expected = 'null';
|
|
}
|
|
return Blockly.Dart['unittest_main'].defineAssert_() +
|
|
'(' + actual + ', ' + expected + ', ' + message + ');\n';
|
|
};
|
|
|
|
Blockly.Dart['unittest_fail'] = function(block) {
|
|
// Always assert an error.
|
|
var resultsVar = Blockly.Dart.nameDB_.getName('unittestResults',
|
|
Blockly.Names.DEVELOPER_VARIABLE_TYPE);
|
|
var message = Blockly.Dart.quote_(block.getFieldValue('MESSAGE'));
|
|
var functionName = Blockly.Dart.provideFunction_(
|
|
'unittest_fail',
|
|
[ 'void ' + Blockly.Dart.FUNCTION_NAME_PLACEHOLDER_ +
|
|
'(String message) {',
|
|
' // Always assert an error.',
|
|
' if (' + resultsVar + ' == null) {',
|
|
' throw "Orphaned assert fail: ${message}";',
|
|
' }',
|
|
' ' + resultsVar + '.add([false, "Fail.", message]);',
|
|
'}']);
|
|
return functionName + '(' + message + ');\n';
|
|
};
|
|
|
|
Blockly.Dart['unittest_adjustindex'] = function(block) {
|
|
var index = Blockly.Dart.valueToCode(block, 'INDEX',
|
|
Blockly.Dart.ORDER_ADDITIVE) || '0';
|
|
// Adjust index if using one-based indexing.
|
|
if (block.workspace.options.oneBasedIndex) {
|
|
if (Blockly.isNumber(index)) {
|
|
// If the index is a naked number, adjust it right now.
|
|
return [Number(index) + 1, Blockly.Dart.ORDER_ATOMIC];
|
|
} else {
|
|
// If the index is dynamic, adjust it in code.
|
|
index = index + ' + 1';
|
|
}
|
|
} else if (Blockly.isNumber(index)) {
|
|
return [index, Blockly.Dart.ORDER_ATOMIC];
|
|
}
|
|
return [index, Blockly.Dart.ORDER_ADDITIVE];
|
|
};
|