2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2020-07-24 06:02:07 +02:00
|
|
|
const Module = require("module");
|
|
|
|
const path = require("path");
|
|
|
|
|
2021-02-03 23:23:32 +01:00
|
|
|
require("css.escape");
|
2020-07-29 01:37:13 +02:00
|
|
|
const Handlebars = require("handlebars/runtime");
|
2020-07-25 02:02:35 +02:00
|
|
|
const _ = require("lodash");
|
2018-04-12 22:50:09 +02:00
|
|
|
|
2020-08-29 04:08:14 +02:00
|
|
|
const handlebars = require("./handlebars");
|
|
|
|
const stub_i18n = require("./i18n");
|
|
|
|
const namespace = require("./namespace");
|
2020-12-01 00:39:47 +01:00
|
|
|
const test = require("./test");
|
2020-08-03 23:57:48 +02:00
|
|
|
const {make_zblueslip} = require("./zblueslip");
|
2020-07-24 06:02:07 +02:00
|
|
|
|
2019-10-12 03:37:06 +02:00
|
|
|
require("@babel/register")({
|
|
|
|
extensions: [".es6", ".es", ".jsx", ".js", ".mjs", ".ts"],
|
|
|
|
only: [
|
2020-12-01 00:30:47 +01:00
|
|
|
new RegExp("^" + _.escapeRegExp(path.resolve(__dirname, "../../static/js") + path.sep)),
|
2020-07-15 00:34:28 +02:00
|
|
|
new RegExp(
|
2020-12-01 00:30:47 +01:00
|
|
|
"^" + _.escapeRegExp(path.resolve(__dirname, "../../static/shared/js") + path.sep),
|
2020-07-15 00:34:28 +02:00
|
|
|
),
|
2019-10-12 03:37:06 +02:00
|
|
|
],
|
|
|
|
plugins: ["rewire-ts"],
|
|
|
|
});
|
2013-08-20 06:15:41 +02:00
|
|
|
|
2018-04-25 15:25:30 +02:00
|
|
|
// Create a helper function to avoid sneaky delays in tests.
|
|
|
|
function immediate(f) {
|
2020-07-02 01:41:40 +02:00
|
|
|
return () => f();
|
2018-04-25 15:25:30 +02:00
|
|
|
}
|
|
|
|
|
2016-07-30 18:14:42 +02:00
|
|
|
// Find the files we need to run.
|
2020-09-02 21:58:08 +02:00
|
|
|
const files = process.argv.slice(2);
|
2020-02-08 06:23:59 +01:00
|
|
|
if (files.length === 0) {
|
2020-10-07 13:01:09 +02:00
|
|
|
throw new Error("No tests found");
|
2016-07-30 18:14:42 +02:00
|
|
|
}
|
|
|
|
|
2016-07-30 17:00:12 +02:00
|
|
|
// Set up our namespace helpers.
|
2020-12-01 00:42:45 +01:00
|
|
|
const window = new Proxy(global, {
|
2020-08-01 03:48:32 +02:00
|
|
|
set: (obj, prop, value) => {
|
|
|
|
namespace.set_global(prop, value);
|
|
|
|
return true;
|
|
|
|
},
|
2019-07-25 09:13:22 +02:00
|
|
|
});
|
|
|
|
|
2019-07-11 05:06:20 +02:00
|
|
|
// Set up Handlebars
|
2020-12-01 00:19:42 +01:00
|
|
|
handlebars.hook_require();
|
2019-07-11 05:06:20 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const noop = function () {};
|
2013-08-21 23:53:00 +02:00
|
|
|
|
2017-07-16 21:14:03 +02:00
|
|
|
// Set up fake module.hot
|
2020-05-27 00:38:59 +02:00
|
|
|
Module.prototype.hot = {
|
2017-07-16 21:14:03 +02:00
|
|
|
accept: noop,
|
|
|
|
};
|
|
|
|
|
2018-05-14 21:37:36 +02:00
|
|
|
function short_tb(tb) {
|
2020-07-15 01:29:15 +02:00
|
|
|
const lines = tb.split("\n");
|
2018-05-14 21:37:36 +02:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
const i = lines.findIndex(
|
|
|
|
(line) => line.includes("run_test") || line.includes("run_one_module"),
|
|
|
|
);
|
2018-05-14 21:37:36 +02:00
|
|
|
|
|
|
|
if (i === -1) {
|
|
|
|
return tb;
|
|
|
|
}
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
return lines.splice(0, i + 1).join("\n") + "\n(...)\n";
|
2018-05-14 21:37:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function run_one_module(file) {
|
2020-09-02 21:58:08 +02:00
|
|
|
console.info("running test " + path.basename(file, ".js"));
|
2020-12-01 00:39:47 +01:00
|
|
|
test.set_current_file_name(file);
|
2020-09-02 21:58:08 +02:00
|
|
|
require(file);
|
2018-05-14 21:37:36 +02:00
|
|
|
}
|
|
|
|
|
2020-12-01 00:39:47 +01:00
|
|
|
test.set_verbose(files.length === 1);
|
2018-05-15 12:40:07 +02:00
|
|
|
|
2018-05-14 21:37:36 +02:00
|
|
|
try {
|
2021-01-22 22:29:08 +01:00
|
|
|
for (const file of files) {
|
2020-12-01 00:42:45 +01:00
|
|
|
namespace.set_global("window", window);
|
|
|
|
namespace.set_global("to_$", () => window);
|
2020-12-01 00:02:16 +01:00
|
|
|
namespace.set_global("location", {
|
2020-07-15 01:29:15 +02:00
|
|
|
hash: "#",
|
2019-07-25 09:13:22 +02:00
|
|
|
});
|
2020-12-01 00:02:16 +01:00
|
|
|
namespace.set_global("setTimeout", noop);
|
|
|
|
namespace.set_global("setInterval", noop);
|
2018-05-14 21:37:36 +02:00
|
|
|
_.throttle = immediate;
|
|
|
|
_.debounce = immediate;
|
|
|
|
|
2020-12-01 00:02:16 +01:00
|
|
|
namespace.set_global("blueslip", make_zblueslip());
|
|
|
|
namespace.set_global("i18n", stub_i18n);
|
2020-02-27 15:40:59 +01:00
|
|
|
namespace.clear_zulip_refs();
|
2020-04-03 18:08:38 +02:00
|
|
|
|
2018-05-14 21:37:36 +02:00
|
|
|
run_one_module(file);
|
2020-04-03 16:41:13 +02:00
|
|
|
|
2020-04-03 18:08:38 +02:00
|
|
|
if (blueslip.reset) {
|
2020-04-03 17:18:04 +02:00
|
|
|
blueslip.reset();
|
2020-04-03 16:41:13 +02:00
|
|
|
}
|
|
|
|
|
2018-05-14 21:37:36 +02:00
|
|
|
namespace.restore();
|
2020-12-11 04:26:23 +01:00
|
|
|
Handlebars.HandlebarsEnvironment.call(Handlebars);
|
2021-01-22 22:29:08 +01:00
|
|
|
}
|
2020-10-07 10:20:41 +02:00
|
|
|
} catch (error) {
|
|
|
|
if (error.stack) {
|
|
|
|
console.info(short_tb(error.stack));
|
2018-05-14 21:37:36 +02:00
|
|
|
} else {
|
2020-10-07 10:20:41 +02:00
|
|
|
console.info(error);
|
2018-05-14 21:37:36 +02:00
|
|
|
}
|
|
|
|
process.exit(1);
|
|
|
|
}
|