123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /* eslint no-console: 0 */
- /**
- * TestRunner.js
- *
- * For running the tests in the test register.
- *
- * @author tlwr [toby@toby.codes]
- * @author n1474335 [n1474335@gmail.com]
- * @copyright Crown Copyright 2017
- * @license Apache-2.0
- */
- import "babel-polyfill";
- import TestRegister from "./TestRegister.js";
- import "./tests/operations/Base58.js";
- import "./tests/operations/BCD.js";
- import "./tests/operations/BitwiseOp.js";
- import "./tests/operations/ByteRepr.js";
- import "./tests/operations/CharEnc.js";
- import "./tests/operations/Cipher.js";
- import "./tests/operations/Code.js";
- import "./tests/operations/Compress.js";
- import "./tests/operations/DateTime.js";
- import "./tests/operations/FlowControl.js";
- import "./tests/operations/Hash.js";
- import "./tests/operations/Image.js";
- import "./tests/operations/MorseCode.js";
- import "./tests/operations/MS.js";
- import "./tests/operations/PHP.js";
- import "./tests/operations/NetBIOS.js";
- import "./tests/operations/OTP.js";
- import "./tests/operations/Regex.js";
- import "./tests/operations/StrUtils.js";
- import "./tests/operations/SeqUtils.js";
- let allTestsPassing = true;
- const testStatusCounts = {
- total: 0,
- };
- /**
- * Helper function to convert a status to an icon.
- *
- * @param {string} status
- * @returns {string}
- */
- function statusToIcon(status) {
- const icons = {
- erroring: "🔥",
- failing: "❌",
- passing: "✔️️",
- };
- return icons[status] || "?";
- }
- /**
- * Displays a given test result in the console.
- *
- * @param {Object} testResult
- */
- function handleTestResult(testResult) {
- allTestsPassing = allTestsPassing && testResult.status === "passing";
- const newCount = (testStatusCounts[testResult.status] || 0) + 1;
- testStatusCounts[testResult.status] = newCount;
- testStatusCounts.total += 1;
- console.log([
- statusToIcon(testResult.status),
- testResult.test.name
- ].join(" "));
- if (testResult.output) {
- console.log(
- testResult.output
- .trim()
- .replace(/^/, "\t")
- .replace(/\n/g, "\n\t")
- );
- }
- }
- /**
- * Fail if the process takes longer than 10 seconds.
- */
- setTimeout(function() {
- console.log("Tests took longer than 10 seconds to run, returning.");
- process.exit(1);
- }, 10 * 1000);
- TestRegister.runTests()
- .then(function(results) {
- results.forEach(handleTestResult);
- console.log("\n");
- for (const testStatus in testStatusCounts) {
- const count = testStatusCounts[testStatus];
- if (count > 0) {
- console.log(testStatus.toUpperCase(), count);
- }
- }
- if (!allTestsPassing) {
- console.log("\nNot all tests are passing");
- }
- process.exit(allTestsPassing ? 0 : 1);
- });
|