set-blackbox-patterns.js 1.49 KB
Newer Older
1 2 3 4
// 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.

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

contextGroup.addScript(
8 9 10 11 12
`function bar()
{
    return 42;
}`);

13
contextGroup.addScript(
14 15 16 17 18 19 20
`function foo()
{
    var a = bar();
    return a + 1;
}
//# sourceURL=foo.js`);

21
contextGroup.addScript(
22 23 24 25 26 27 28
`function qwe()
{
    var a = foo();
    return a + 1;
}
//# sourceURL=qwe.js`);

29
contextGroup.addScript(
30 31 32 33 34 35 36
`function baz()
{
    var a = qwe();
    return a + 1;
}
//# sourceURL=baz.js`);

37 38
Protocol.Debugger.enable();
Protocol.Debugger.setBlackboxPatterns({ patterns: [ "foo([" ] }).then(dumpError);
39 40 41 42

function dumpError(message)
{
  InspectorTest.log(message.error.message);
43 44 45
  Protocol.Debugger.onPaused(dumpStackAndRunNextCommand);
  Protocol.Debugger.setBlackboxPatterns({ patterns: [ "baz\.js", "foo\.js" ] });
  Protocol.Runtime.evaluate({ "expression": "debugger;baz()" });
46 47 48 49 50 51 52 53 54 55 56 57 58 59
}

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;
  }
60
  Protocol.Debugger[command]();
61
}