123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /* eslint no-console: 0 */
- /**
- * Test Runner
- *
- * 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 {
- setLongTestFailure,
- logTestReport,
- } from "../lib/utils";
- import TestRegister from "../lib/TestRegister.mjs";
- import "./tests/BCD";
- import "./tests/BSON";
- import "./tests/Base58";
- import "./tests/Base64";
- import "./tests/Base62";
- import "./tests/BitwiseOp";
- import "./tests/ByteRepr";
- import "./tests/CartesianProduct";
- import "./tests/CharEnc";
- import "./tests/ChangeIPFormat";
- import "./tests/Charts";
- import "./tests/Checksum";
- import "./tests/Ciphers";
- import "./tests/Code";
- import "./tests/Comment";
- import "./tests/Compress";
- import "./tests/ConditionalJump";
- import "./tests/Crypt";
- import "./tests/CSV";
- import "./tests/DateTime";
- import "./tests/ExtractEmailAddresses";
- import "./tests/Fork";
- import "./tests/FromDecimal";
- import "./tests/Hash";
- import "./tests/HaversineDistance";
- import "./tests/Hexdump";
- import "./tests/Image";
- import "./tests/IndexOfCoincidence";
- import "./tests/Jump";
- import "./tests/JSONBeautify";
- import "./tests/JSONMinify";
- import "./tests/JSONtoCSV";
- import "./tests/JWTDecode";
- import "./tests/JWTSign";
- import "./tests/JWTVerify";
- import "./tests/MS";
- import "./tests/Magic";
- import "./tests/MorseCode";
- import "./tests/NetBIOS";
- import "./tests/OTP";
- import "./tests/PGP";
- import "./tests/PHP";
- import "./tests/ParseIPRange";
- import "./tests/ParseQRCode";
- import "./tests/PowerSet";
- import "./tests/Regex";
- import "./tests/Register";
- import "./tests/RemoveDiacritics";
- import "./tests/Rotate";
- import "./tests/SeqUtils";
- import "./tests/SetDifference";
- import "./tests/SetIntersection";
- import "./tests/SetUnion";
- import "./tests/StrUtils";
- import "./tests/SymmetricDifference";
- import "./tests/TextEncodingBruteForce";
- import "./tests/TranslateDateTimeFormat";
- import "./tests/Magic";
- import "./tests/ParseTLV";
- import "./tests/Media";
- import "./tests/ToFromInsensitiveRegex";
- import "./tests/YARA.mjs";
- import "./tests/ConvertCoordinateFormat";
- import "./tests/Enigma";
- import "./tests/Bombe";
- import "./tests/MultipleBombe";
- import "./tests/Typex";
- import "./tests/BLAKE2b";
- import "./tests/BLAKE2s";
- import "./tests/Protobuf";
- import "./tests/ParseSSHHostKey";
- import "./tests/DefangIP";
- import "./tests/ParseUDP";
- // Cannot test operations that use the File type yet
- //import "./tests/SplitColourChannels";
- // import "./tests/nodeApi/nodeApi";
- // import "./tests/nodeApi/ops";
- const testStatus = {
- allTestsPassing: true,
- counts: {
- total: 0,
- }
- };
- setLongTestFailure();
- const logOpsTestReport = logTestReport.bind(null, testStatus);
- TestRegister.runTests()
- .then(logOpsTestReport);
|