Files
meteor/tools/tests/source-maps.js
2023-04-27 17:19:14 -03:00

115 lines
3.2 KiB
JavaScript

var selftest = require('../tool-testing/selftest.js');
var Sandbox = selftest.Sandbox;
var files = require('../fs/files');
function matchPath (text, doubleBS) {
if (process.platform === 'win32') {
return text.replace(/\//g, doubleBS ? '\\\\' : '\\');
}
return text;
}
function matchPathRegexp (regexp) {
return new RegExp(matchPath(regexp, true));
}
selftest.define("source maps from checkout", ['checkout'], async function () {
try {
throw new Error();
} catch (e) {
// this refers to the line number where the error is thrown
const errorLine = "17";
var index = (process.platform === 'win32') ? 2 : 1;
const sourceMap = e.stack.split(":")[index];
const result = (sourceMap === errorLine);
await selftest.expectEqual(result, true);
}
});
selftest.define("source maps from an app", ['checkout', 'custom-warehouse'], async function () {
var s = new Sandbox({
warehouse: {
v1: { recommended: true }
}
});
await s.init();
// If run not in an app dir, runs the latest version ...
var run = s.run("--version");
await run.read('Meteor v1\n');
await run.expectEnd();
await run.expectExit(0);
// Starting a run
await s.createApp("myapp", "app-throws-error", {
release: "v1"
});
s.cd("myapp");
s.set("METEOR_TEST_TMP", files.convertToOSPath(files.mkdtemp())); // XXX why?
run = s.run("run");
run.waitSecs(10);
await run.match(matchPathRegexp('at throw\\.js:3\\b'));
await run.stop();
s.set('THROW_FROM_PACKAGE', 't');
run = s.run('run');
run.waitSecs(10);
await run.match(matchPathRegexp('packages/throwing-package/thrower\\.js:2\\b'));
await run.stop();
});
selftest.define("source maps from built meteor tool", ['checkout', 'custom-warehouse'], async function () {
var s = new Sandbox({
warehouse: {
v1: { recommended: true }
}
});
await s.init();
// Find the line number that is supposed to throw an error
var commandsJs = files.readFile(files.pathJoin(
files.convertToStandardPath(__dirname), '../cli/commands.js'), "utf8");
var lineNumber = 0;
commandsJs.split("\n").some((line, index) => {
if (line.indexOf("#StackTraceTest") != -1) {
// Lines aren't zero-indexed
lineNumber = index + 1;
// Short-circuit the some
return true;
}
});
if (lineNumber === 0) {
throw new Error("Couldn't find the right line. This test is broken.");
}
var run = s.run("throw-error");
await run.matchErr(matchPathRegexp('\\(/tools/cli/commands\\.js:' + lineNumber));
await run.expectExit(1);
});
selftest.define("source maps from a build plugin implementation", ['checkout', 'custom-warehouse'], async function () {
var s = new Sandbox({
warehouse: {
v1: { recommended: true }
}
});
await s.init();
// Starting a run
await s.createApp("myapp", "build-plugin-throws-error", {
release: "v1"
});
s.cd("myapp");
var run = s.run("run");
run.waitSecs(10);
// XXX This is wrong! The path on disk is
// packages/build-plugin/build-plugin.js, but at some point we switched to the
// servePath which is based on the *plugin*'s "package" name.
await run.match(matchPathRegexp('packages/build-plugin-itself/build-plugin\\.js:2:'));
await run.stop();
});