summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/set-blackbox-patterns.js
blob: d060c90a9d1ce3b183cc343986dba707236a9828 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

let {session, contextGroup, Protocol} = InspectorTest.start('Tests blackboxing by patterns');

contextGroup.addScript(
`function bar()
{
    return 42;
}`);

contextGroup.addScript(
`function foo()
{
    var a = bar();
    return a + 1;
}
//# sourceURL=foo.js`);

contextGroup.addScript(
`function qwe()
{
    var a = foo();
    return a + 1;
}
//# sourceURL=qwe.js`);

contextGroup.addScript(
`function baz()
{
    var a = qwe();
    return a + 1;
}
//# sourceURL=baz.js`);

Protocol.Debugger.enable();
Protocol.Debugger.setBlackboxPatterns({ patterns: [ "foo([" ] }).then(dumpError);

function dumpError(message)
{
  InspectorTest.log(message.error.message);
  Protocol.Debugger.onPaused(dumpStackAndRunNextCommand);
  Protocol.Debugger.setBlackboxPatterns({ patterns: [ "baz\.js", "foo\.js" ] });
  Protocol.Runtime.evaluate({ "expression": "debugger;baz()" });
}

var commands = [ "stepInto", "stepInto", "stepInto", "stepOut", "stepInto", "stepInto" ];
function dumpStackAndRunNextCommand(message)
{
  InspectorTest.log("Paused in");
  var callFrames = message.params.callFrames;
  for (var callFrame of callFrames)
    InspectorTest.log((callFrame.functionName || "(...)") + ":" + (callFrame.location.lineNumber + 1));
  var command = commands.shift();
  if (!command) {
    InspectorTest.completeTest();
    return;
  }
  Protocol.Debugger[command]();
}