v8/test/debugger/debug/debug-liveedit-double-call.js
jgruber 1834ab7246 [debug-wrapper] Adapt tests, breakpoint.actual_location
Adapted various tests to restrictions of inspector protocol:

* osr-typing-debug-change: Don't set function variable value.
* debug-evaluate-locals: Add variable introduced by eval, run typeof
  inside evaluate().
* regress-419663: Don't set duplicate breakpoints.
* regress-crbug-465298: Compare against function name instead of value.
* regress-crbug-621361: Make evaluate return string results.
* debug-script: Various counts were off due to new way tests are called.
                Added new inspector script type.

Breakpoints now contain the actual break position, and remote object
reconstruction has been extended a bit.

BUG=v8:5530

Review-Url: https://codereview.chromium.org/2505363002
Cr-Commit-Position: refs/heads/master@{#41129}
2016-11-21 09:29:17 +00:00

141 lines
4.7 KiB
JavaScript

// Copyright 2012 the V8 project authors. All rights reserved.
// 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.
Debug = debug.Debug
function TestCase(test_scenario, expected_output) {
// Global variable, accessed from eval'd script.
test_output = "";
var script_text_generator = (function() {
var variables = { a: 1, b: 1, c: 1, d: 1, e: 1, f: 1 };
return {
get: function() {
return "(function() {\n " +
" function A() {\n " +
" test_output += 'a' + " + variables.a + ";\n " +
" test_output += '=';\n " +
" debugger;\n " +
" return 'Capybara';\n " +
" }\n " +
" function B(p1, p2) {\n " +
" test_output += 'b' + " + variables.b + ";\n " +
" return A();\n " +
" }\n " +
" function C() {\n " +
" test_output += 'c' + " + variables.c + ";\n " +
" // Function call with argument adaptor is intentional.\n " +
" return B();\n " +
" }\n " +
" function D() {\n " +
" test_output += 'd' + " + variables.d + ";\n " +
" // Function call with argument adaptor is intentional.\n " +
" return C(1, 2);\n " +
" }\n " +
" function E() {\n " +
" test_output += 'e' + " + variables.e + ";\n " +
" return D();\n " +
" }\n " +
" function F() {\n " +
" test_output += 'f' + " + variables.f + ";\n " +
" return E();\n " +
" }\n " +
" return F();\n " +
"})\n";
},
change: function(var_name) {
variables[var_name]++;
}
};
})();
var test_fun = eval(script_text_generator.get());
var script = Debug.findScript(test_fun);
var scenario_pos = 0;
function DebuggerStatementHandler() {
while (true) {
assertTrue(scenario_pos < test_scenario.length);
var change_var = test_scenario[scenario_pos++];
if (change_var == '=') {
// Continue.
return;
}
script_text_generator.change(change_var);
try {
Debug.LiveEdit.SetScriptSource(script, script_text_generator.get(),
false, []);
} catch (e) {
print("LiveEdit exception: " + e);
throw e;
}
}
}
var saved_exception = null;
function listener(event, exec_state, event_data, data) {
if (event == Debug.DebugEvent.Break) {
try {
DebuggerStatementHandler();
} catch (e) {
saved_exception = e;
}
} else {
print("Other: " + event);
}
}
Debug.setListener(listener);
assertEquals("Capybara", test_fun());
Debug.setListener(null);
if (saved_exception) {
print("Exception: " + saved_exception);
assertUnreachable();
}
print(test_output);
assertEquals(expected_output, test_output);
}
TestCase(['='], "f1e1d1c1b1a1=");
TestCase(['c', '=', '='], "f1e1d1c1b1a1=c2b1a1=");
TestCase(['b', 'c', 'd', 'e', '=', '='], "f1e1d1c1b1a1=e2d2c2b2a1=");
TestCase(['b', 'c', '=', 'b', 'c', 'd', 'e', '=', '='], "f1e1d1c1b1a1=c2b2a1=e2d2c3b3a1=");
TestCase(['e', 'f', '=', '='], "f1e1d1c1b1a1=f2e2d1c1b1a1=");