debug-backtrace.js 8.52 KB
Newer Older
1
// Copyright 2008 the V8 project authors. All rights reserved.
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
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
//       copyright notice, this list of conditions and the following
//       disclaimer in the documentation and/or other materials provided
//       with the distribution.
//     * Neither the name of Google Inc. nor the names of its
//       contributors may be used to endorse or promote products derived
//       from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

// Flags: --expose-debug-as debug
// The functions used for testing backtraces. They are at the top to make the
// testing of source line/column easier.
function f(x, y) {
  a=1;
};

function g() {
  new f(1);
};


// Get the Debug object exposed from the debug context global object.
Debug = debug.Debug

listenerCalled = false;
exception = false;

46 47 48 49 50 51 52 53

function ParsedResponse(json) {
  this.response_ = eval('(' + json + ')');
  this.refs_ = [];
  if (this.response_.refs) {
    for (var i = 0; i < this.response_.refs.length; i++) {
      this.refs_[this.response_.refs[i].handle] = this.response_.refs[i];
    }
54 55 56
  }
}

57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72

ParsedResponse.prototype.response = function() {
  return this.response_;
}


ParsedResponse.prototype.body = function() {
  return this.response_.body;
}


ParsedResponse.prototype.lookup = function(handle) {
  return this.refs_[handle];
}


73 74 75 76 77 78 79 80 81
function listener(event, exec_state, event_data, data) {
  try {
  if (event == Debug.DebugEvent.Break)
  {
    // The expected backtrace is
    // 0: f
    // 1: g
    // 2: [anonymous]
    
82 83 84 85 86
    var response;
    var backtrace;
    var frame;
    var source;
    
87 88 89 90 91 92
    // Get the debug command processor.
    var dcp = exec_state.debugCommandProcessor();

    // Get the backtrace.
    var json;
    json = '{"seq":0,"type":"request","command":"backtrace"}'
93 94
    response = new ParsedResponse(dcp.processDebugJSONRequest(json));
    backtrace = response.body();
95 96 97 98 99 100 101 102 103
    assertEquals(0, backtrace.fromFrame);
    assertEquals(3, backtrace.toFrame);
    assertEquals(3, backtrace.totalFrames);
    var frames = backtrace.frames;
    assertEquals(3, frames.length);
    for (var i = 0; i < frames.length; i++) {
      assertEquals('frame', frames[i].type);
    }
    assertEquals(0, frames[0].index);
104
    assertEquals("f", response.lookup(frames[0].func.ref).name);
105
    assertEquals(1, frames[1].index);
106
    assertEquals("g", response.lookup(frames[1].func.ref).name);
107
    assertEquals(2, frames[2].index);
108
    assertEquals("", response.lookup(frames[2].func.ref).name);
109 110 111

    // Get backtrace with two frames.
    json = '{"seq":0,"type":"request","command":"backtrace","arguments":{"fromFrame":1,"toFrame":3}}'
112 113
    response = new ParsedResponse(dcp.processDebugJSONRequest(json));
    backtrace = response.body();
114 115 116 117 118 119 120 121 122
    assertEquals(1, backtrace.fromFrame);
    assertEquals(3, backtrace.toFrame);
    assertEquals(3, backtrace.totalFrames);
    var frames = backtrace.frames;
    assertEquals(2, frames.length);
    for (var i = 0; i < frames.length; i++) {
      assertEquals('frame', frames[i].type);
    }
    assertEquals(1, frames[0].index);
123
    assertEquals("g", response.lookup(frames[0].func.ref).name);
124
    assertEquals(2, frames[1].index);
125
    assertEquals("", response.lookup(frames[1].func.ref).name);
126 127 128

    // Get the individual frames.
    json = '{"seq":0,"type":"request","command":"frame"}'
129 130
    response = new ParsedResponse(dcp.processDebugJSONRequest(json));
    frame = response.body();
131
    assertEquals(0, frame.index);
132
    assertEquals("f", response.lookup(frame.func.ref).name);
133 134 135 136 137
    assertTrue(frame.constructCall);
    assertEquals(31, frame.line);
    assertEquals(3, frame.column);
    assertEquals(2, frame.arguments.length);
    assertEquals('x', frame.arguments[0].name);
138 139
    assertEquals('number', response.lookup(frame.arguments[0].value.ref).type);
    assertEquals(1, response.lookup(frame.arguments[0].value.ref).value);
140
    assertEquals('y', frame.arguments[1].name);
141
    assertEquals('undefined', response.lookup(frame.arguments[1].value.ref).type);
142 143

    json = '{"seq":0,"type":"request","command":"frame","arguments":{"number":0}}'
144 145
    response = new ParsedResponse(dcp.processDebugJSONRequest(json));
    frame = response.body();
146
    assertEquals(0, frame.index);
147
    assertEquals("f", response.lookup(frame.func.ref).name);
148 149 150 151
    assertEquals(31, frame.line);
    assertEquals(3, frame.column);
    assertEquals(2, frame.arguments.length);
    assertEquals('x', frame.arguments[0].name);
152 153
    assertEquals('number', response.lookup(frame.arguments[0].value.ref).type);
    assertEquals(1, response.lookup(frame.arguments[0].value.ref).value);
154
    assertEquals('y', frame.arguments[1].name);
155
    assertEquals('undefined', response.lookup(frame.arguments[1].value.ref).type);
156 157

    json = '{"seq":0,"type":"request","command":"frame","arguments":{"number":1}}'
158 159
    response = new ParsedResponse(dcp.processDebugJSONRequest(json));
    frame = response.body();
160
    assertEquals(1, frame.index);
161
    assertEquals("g", response.lookup(frame.func.ref).name);
162 163 164 165 166 167
    assertFalse(frame.constructCall);
    assertEquals(35, frame.line);
    assertEquals(2, frame.column);
    assertEquals(0, frame.arguments.length);

    json = '{"seq":0,"type":"request","command":"frame","arguments":{"number":2}}'
168 169
    response = new ParsedResponse(dcp.processDebugJSONRequest(json));
    frame = response.body();
170
    assertEquals(2, frame.index);
171
    assertEquals("", response.lookup(frame.func.ref).name);
172 173 174 175

    // Source slices for the individual frames (they all refer to this script).
    json = '{"seq":0,"type":"request","command":"source",' +
            '"arguments":{"frame":0,"fromLine":30,"toLine":32}}'
176 177
    response = new ParsedResponse(dcp.processDebugJSONRequest(json));
    source = response.body();
178 179 180 181 182 183
    assertEquals("function f(x, y) {", source.source.substring(0, 18));
    assertEquals(30, source.fromLine);
    assertEquals(32, source.toLine);
    
    json = '{"seq":0,"type":"request","command":"source",' +
            '"arguments":{"frame":1,"fromLine":31,"toLine":32}}'
184 185
    response = new ParsedResponse(dcp.processDebugJSONRequest(json));
    source = response.body();
186 187 188 189 190 191
    assertEquals("  a=1;", source.source.substring(0, 6));
    assertEquals(31, source.fromLine);
    assertEquals(32, source.toLine);
    
    json = '{"seq":0,"type":"request","command":"source",' +
            '"arguments":{"frame":2,"fromLine":35,"toLine":36}}'
192 193
    response = new ParsedResponse(dcp.processDebugJSONRequest(json));
    source = response.body();
194 195 196 197 198 199 200
    assertEquals("  new f(1);", source.source.substring(0, 11));
    assertEquals(35, source.fromLine);
    assertEquals(36, source.toLine);
    
    // Test line interval way beyond this script will result in an error.
    json = '{"seq":0,"type":"request","command":"source",' +
            '"arguments":{"frame":0,"fromLine":10000,"toLine":20000}}'
201 202
    response = new ParsedResponse(dcp.processDebugJSONRequest(json));
    assertFalse(response.response().success);
203 204 205
    
    // Test without arguments.
    json = '{"seq":0,"type":"request","command":"source"}'
206 207
    response = new ParsedResponse(dcp.processDebugJSONRequest(json));
    source = response.body();
208 209 210 211 212 213 214 215 216 217
    assertEquals(Debug.findScript(f).source, source.source);
    
    listenerCalled = true;
  }
  } catch (e) {
    exception = e
  };
};

// Add the debug event listener.
218
Debug.setListener(listener);
219 220 221 222 223 224 225 226 227

// Set a break point and call to invoke the debug event listener.
Debug.setBreakPoint(f, 0, 0);
g();

// Make sure that the debug event listener vas invoked.
assertFalse(exception, "exception in listener");
assertTrue(listenerCalled);