summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Debugger-findScripts-24.js
blob: 54b37d811ffdb031ed8d149bae14aa05e3901ed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// findScripts should reject Debugger.Source objects from other Debuggers.

load(libdir + 'asserts.js');

var g = newGlobal({newCompartment: true});
g.evaluate(`function f() { print("earth/heart/hater"); }`,
           { lineNumber: 1800 });

var dbg1 = new Debugger;
var gDO1 = dbg1.addDebuggee(g);
var fDO1 = gDO1.getOwnPropertyDescriptor('f').value;
assertEq(fDO1.script.source instanceof Debugger.Source, true);

var dbg2 = new Debugger;
var gDO2 = dbg2.addDebuggee(g);
var fDO2 = gDO2.getOwnPropertyDescriptor('f').value;
assertEq(fDO2.script.source instanceof Debugger.Source, true);

assertEq(fDO1.script.source !== fDO2.script.source, true);

// findScripts should reject Debugger.Source objects that don't belong to the
// Debugger it's being invoked on.
assertThrowsInstanceOf(() => dbg1.findScripts({ source: fDO2.script.source }),
                       TypeError);
assertThrowsInstanceOf(() => dbg2.findScripts({ source: fDO1.script.source }),
                       TypeError);

// findScripts should reject Debugger.Source.prototype.
assertThrowsInstanceOf(() => dbg1.findScripts({ source: Debugger.Source.prototype }),
                       TypeError);

// These should not throw, and should return something, but we're not going to
// be picky about exactly what, given findScript's sensitivity to GC.
dbg1.findScripts({ source: fDO1.script.source });
dbg2.findScripts({ source: fDO2.script.source });