mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-02 12:32:55 +00:00

Differential Revision: https://phabricator.services.mozilla.com/D8389 --HG-- extra : moz-landing-system : lando
88 lines
2.4 KiB
JavaScript
88 lines
2.4 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
/**
|
|
* Check that we source map frame locations returned by "frames" requests.
|
|
*/
|
|
|
|
var gDebuggee;
|
|
var gClient;
|
|
var gThreadClient;
|
|
|
|
const {SourceNode} = require("source-map");
|
|
|
|
function run_test() {
|
|
initTestDebuggerServer();
|
|
gDebuggee = addTestGlobal("test-source-map");
|
|
gClient = new DebuggerClient(DebuggerServer.connectPipe());
|
|
gClient.connect().then(function() {
|
|
attachTestTabAndResume(
|
|
gClient, "test-source-map",
|
|
function(response, targetFront, threadClient) {
|
|
gThreadClient = threadClient;
|
|
Promise.resolve(define_code())
|
|
.then(run_code)
|
|
.then(test_frames)
|
|
.catch(error => {
|
|
dump(error + "\n");
|
|
dump(error.stack);
|
|
Assert.ok(false);
|
|
})
|
|
.then(() => {
|
|
finishClient(gClient);
|
|
});
|
|
});
|
|
});
|
|
do_test_pending();
|
|
}
|
|
|
|
function define_code() {
|
|
let { code, map } = (new SourceNode(null, null, null, [
|
|
new SourceNode(1, 0, "a.js", "function a() {\n"),
|
|
new SourceNode(2, 0, "a.js", " b();\n"),
|
|
new SourceNode(3, 0, "a.js", "}\n"),
|
|
new SourceNode(1, 0, "b.js", "function b() {\n"),
|
|
new SourceNode(2, 0, "b.js", " c();\n"),
|
|
new SourceNode(3, 0, "b.js", "}\n"),
|
|
new SourceNode(1, 0, "c.js", "function c() {\n"),
|
|
new SourceNode(2, 0, "c.js", " debugger;\n"),
|
|
new SourceNode(3, 0, "c.js", "}\n"),
|
|
])).toStringWithSourceMap({
|
|
file: "abc.js",
|
|
sourceRoot: "http://example.com/www/js/",
|
|
});
|
|
|
|
code += "//# sourceMappingURL=data:text/json," + map.toString();
|
|
|
|
Cu.evalInSandbox(code, gDebuggee, "1.8",
|
|
"http://example.com/www/js/abc.js", 1);
|
|
}
|
|
|
|
function run_code() {
|
|
const d = defer();
|
|
gClient.addOneTimeListener("paused", function() {
|
|
gThreadClient.getFrames(0, 3, function(response) {
|
|
d.resolve(response);
|
|
gThreadClient.resume();
|
|
});
|
|
});
|
|
gDebuggee.a();
|
|
return d.promise;
|
|
}
|
|
|
|
function test_frames({ error, frames }) {
|
|
Assert.ok(!error);
|
|
Assert.equal(frames.length, 3);
|
|
check_frame(frames[0], "http://example.com/www/js/c.js");
|
|
check_frame(frames[1], "http://example.com/www/js/b.js");
|
|
check_frame(frames[2], "http://example.com/www/js/a.js");
|
|
}
|
|
|
|
function check_frame({ where: { source, line, column } }, expectedUrl) {
|
|
Assert.equal(source.url, expectedUrl);
|
|
Assert.equal(line, 2);
|
|
Assert.equal(column, 0);
|
|
}
|