2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2020-07-24 06:02:07 +02:00
|
|
|
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");
|
2021-03-16 23:38:59 +01:00
|
|
|
const blueslip = require("./zblueslip");
|
2021-03-11 05:43:45 +01:00
|
|
|
const zjquery = require("./zjquery");
|
2021-03-25 22:35:45 +01:00
|
|
|
const zpage_params = require("./zpage_params");
|
2021-02-21 15:38:51 +01: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
|
|
|
],
|
2021-02-27 20:28:33 +01:00
|
|
|
plugins: [
|
|
|
|
"babel-plugin-rewire-ts",
|
|
|
|
["@babel/plugin-transform-modules-commonjs", {lazy: () => true}],
|
|
|
|
],
|
2019-10-12 03:37:06 +02:00
|
|
|
});
|
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
|
|
|
|
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
|
|
|
|
2021-03-13 18:47:11 +01:00
|
|
|
const i = lines.findIndex((line) => 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) {
|
2021-03-13 15:49:01 +01:00
|
|
|
zjquery.clear_initialize_function();
|
2021-03-11 05:43:45 +01:00
|
|
|
zjquery.clear_all_elements();
|
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);
|
2021-03-13 14:14:40 +01:00
|
|
|
namespace.complain_about_unused_mocks();
|
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) {
|
zjsunit: Remove rewiremock dependency.
We now just use a module._load hook to inject
stubs into our code.
For conversion purposes I temporarily maintain
the API of rewiremock, apart from the enable/disable
pieces, but I will make a better wrapper in an
upcoming commit.
We can detect when rewiremock is called after
zrequire now, and I fix all the violations in
this commit, mostly by using override.
We can also detect when a mock is needlessly
created, and I fix all the violations in this
commit.
The one minor nuisance that this commit introduces
is that you can only stub out modules in the Zulip
source tree, which is now static/js. This should
not really be a problem--there are usually better
techniques to deal with third party depenencies.
In the prior commit I show a typical workaround,
which is to create a one-line wrapper in your
test code. It's often the case that you can simply
use override(), as well.
In passing I kill off `reset_modules`, and I
eliminated the second argument to zrequire,
which dates back to pre-es6 days.
2021-03-06 12:47:54 +01:00
|
|
|
namespace.start();
|
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;
|
2021-03-25 22:35:45 +01:00
|
|
|
zpage_params.reset();
|
2018-05-14 21:37:36 +02:00
|
|
|
|
2021-03-16 23:38:59 +01:00
|
|
|
namespace.mock_esm("../../static/js/blueslip", blueslip);
|
|
|
|
require("../../static/js/blueslip");
|
2021-03-25 21:38:40 +01:00
|
|
|
namespace.mock_esm("../../static/js/i18n", stub_i18n);
|
|
|
|
require("../../static/js/i18n");
|
2021-03-25 22:35:45 +01:00
|
|
|
namespace.mock_esm("../../static/js/page_params", zpage_params);
|
|
|
|
require("../../static/js/page_params");
|
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
|
|
|
}
|
|
|
|
|
zjsunit: Remove rewiremock dependency.
We now just use a module._load hook to inject
stubs into our code.
For conversion purposes I temporarily maintain
the API of rewiremock, apart from the enable/disable
pieces, but I will make a better wrapper in an
upcoming commit.
We can detect when rewiremock is called after
zrequire now, and I fix all the violations in
this commit, mostly by using override.
We can also detect when a mock is needlessly
created, and I fix all the violations in this
commit.
The one minor nuisance that this commit introduces
is that you can only stub out modules in the Zulip
source tree, which is now static/js. This should
not really be a problem--there are usually better
techniques to deal with third party depenencies.
In the prior commit I show a typical workaround,
which is to create a one-line wrapper in your
test code. It's often the case that you can simply
use override(), as well.
In passing I kill off `reset_modules`, and I
eliminated the second argument to zrequire,
which dates back to pre-es6 days.
2021-03-06 12:47:54 +01:00
|
|
|
namespace.finish();
|
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);
|
|
|
|
}
|