summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/step-over-caught-exception.js
blob: c8e711b0bee2905d58b5ea8885f27cb6059be64d (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// 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 that stepping over caught exception will pause when asked for');

contextGroup.addScript(
`function testFunction()
{
  function foo()
  {
    try {
      throw new Error();
    } catch (e) {
    }
  }
  debugger;
  foo();
  console.log("completed");
}`);

Protocol.Debugger.enable();
Protocol.Runtime.enable();
step1();

function step1()
{
  Protocol.Runtime.evaluate({ "expression": "setTimeout(testFunction, 0);"});
  var commands = [ "Print", "stepOver", "stepOver", "Print", "resume" ];
  Protocol.Debugger.onPaused(function(messageObject)
  {
    var command = commands.shift();
    if (command === "Print") {
      var callFrames = messageObject.params.callFrames;
      for (var callFrame of callFrames)
        InspectorTest.log(callFrame.functionName + ":" + callFrame.location.lineNumber);
      command = commands.shift();
    }
    if (command)
      Protocol.Debugger[command]();
  });

  Protocol.Runtime.onConsoleAPICalled(function(messageObject)
  {
    if (messageObject.params.args[0].value === "completed") {
      if (commands.length)
        InspectorTest.log("[FAIL]: execution was resumed too earlier.")
      step2();
    }
  });
}

function step2()
{
  Protocol.Runtime.evaluate({ "expression": "setTimeout(testFunction, 0);"});
  var commands = [ "Print", "stepOver", "stepInto", "stepOver", "stepOver", "Print", "resume" ];
  Protocol.Debugger.onPaused(function(messageObject)
  {
    var command = commands.shift();
    if (command === "Print") {
      var callFrames = messageObject.params.callFrames;
      for (var callFrame of callFrames)
        InspectorTest.log(callFrame.functionName + ":" + callFrame.location.lineNumber);
      command = commands.shift();
    }
    if (command)
      Protocol.Debugger[command]();
  });

  Protocol.Runtime.onConsoleAPICalled(function(messageObject)
  {
    if (messageObject.params.args[0].value === "completed") {
      if (commands.length)
        InspectorTest.log("[FAIL]: execution was resumed too earlier.")
      InspectorTest.completeTest();
    }
  });
}