69d166fcef
After this CL all liveedit tests call the same LiveEdit::PatchScript method. This method will be updated later. As well some new liveedit cctests added, unfortunately part of them do not work with current implementation. R=dgozman@chromium.org,yangguo@chromium.org Bug: v8:7862 Cq-Include-Trybots: luci.chromium.try:linux_chromium_headless_rel;luci.chromium.try:linux_chromium_rel_ng;master.tryserver.blink:linux_trusty_blink_rel Change-Id: I3521af12b0f95b39d13aaafb1d1cf60f3f642a97 Reviewed-on: https://chromium-review.googlesource.com/1108382 Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> Reviewed-by: Yang Guo <yangguo@chromium.org> Reviewed-by: Dmitry Gozman <dgozman@chromium.org> Cr-Commit-Position: refs/heads/master@{#53936}
100 lines
3.6 KiB
JavaScript
100 lines
3.6 KiB
JavaScript
// Copyright 2017 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.
|
|
|
|
// Flags: --no-always-opt
|
|
|
|
let {session, contextGroup, Protocol} =
|
|
InspectorTest.start('Tests Debugger.setScriptSource');
|
|
|
|
session.setupScriptMap();
|
|
|
|
function foo(a,b,c) {
|
|
var x = a;
|
|
debugger;
|
|
return x + b;
|
|
}
|
|
|
|
function boo() {
|
|
debugger;
|
|
var x = 1;
|
|
return x + 2;
|
|
}
|
|
|
|
InspectorTest.runAsyncTestSuite([
|
|
async function addLineAfter() {
|
|
await Protocol.Debugger.enable();
|
|
Protocol.Runtime.evaluate({expression: foo.toString()});
|
|
let {params:{scriptId}} = await Protocol.Debugger.onceScriptParsed();
|
|
Protocol.Runtime.evaluate({
|
|
expression: 'setTimeout(() => foo(1,2,3), 0)//# sourceURL=test.js'});
|
|
let {params:{callFrames}} = await Protocol.Debugger.oncePaused();
|
|
await session.logSourceLocation(callFrames[0].location);
|
|
await replaceInSource(scriptId, 'debugger;', 'debugger;\nvar x = 3;');
|
|
|
|
Protocol.Debugger.resume();
|
|
await Protocol.Debugger.oncePaused();
|
|
await Protocol.Debugger.disable();
|
|
},
|
|
|
|
async function addLineBefore() {
|
|
await Protocol.Debugger.enable();
|
|
Protocol.Runtime.evaluate({expression: foo.toString()});
|
|
let {params:{scriptId}} = await Protocol.Debugger.onceScriptParsed();
|
|
Protocol.Runtime.evaluate({
|
|
expression: 'setTimeout(foo, 0)//# sourceURL=test.js'});
|
|
let {params:{callFrames}} = await Protocol.Debugger.oncePaused();
|
|
await session.logSourceLocation(callFrames[0].location);
|
|
await replaceInSource(scriptId, 'debugger;', 'var x = 3;\ndebugger;');
|
|
|
|
Protocol.Debugger.resume();
|
|
await Protocol.Debugger.oncePaused();
|
|
await Protocol.Debugger.disable();
|
|
},
|
|
|
|
async function breakAtFirstLineAddLineAfter() {
|
|
await Protocol.Debugger.enable();
|
|
Protocol.Runtime.evaluate({expression: boo.toString()});
|
|
let {params:{scriptId}} = await Protocol.Debugger.onceScriptParsed();
|
|
Protocol.Runtime.evaluate({
|
|
expression: 'setTimeout(boo, 0)//# sourceURL=test.js'});
|
|
let {params:{callFrames}} = await Protocol.Debugger.oncePaused();
|
|
await session.logSourceLocation(callFrames[0].location);
|
|
await replaceInSource(scriptId, 'debugger;', 'debugger;\nvar x = 3;');
|
|
|
|
await Protocol.Debugger.disable();
|
|
},
|
|
|
|
async function breakAtFirstLineAddLineBefore() {
|
|
await Protocol.Debugger.enable();
|
|
Protocol.Runtime.evaluate({expression: boo.toString()});
|
|
let {params:{scriptId}} = await Protocol.Debugger.onceScriptParsed();
|
|
Protocol.Runtime.evaluate({
|
|
expression: 'setTimeout(boo, 0)//# sourceURL=test.js'});
|
|
let {params:{callFrames}} = await Protocol.Debugger.oncePaused();
|
|
await session.logSourceLocation(callFrames[0].location);
|
|
await replaceInSource(scriptId, 'debugger;', 'var x = 3;\ndebugger;');
|
|
|
|
await Protocol.Debugger.disable();
|
|
}
|
|
]);
|
|
|
|
async function replaceInSource(scriptId, oldString, newString) {
|
|
InspectorTest.log('---');
|
|
let {result:{scriptSource}} =
|
|
await Protocol.Debugger.getScriptSource({scriptId});
|
|
let {result} = await Protocol.Debugger.setScriptSource({
|
|
scriptId,
|
|
scriptSource: scriptSource.replace(oldString, newString)
|
|
});
|
|
InspectorTest.log('Break location after LiveEdit:');
|
|
await session.logSourceLocation(result.callFrames[0].location, true);
|
|
InspectorTest.log('stackChanged: ' + result.stackChanged);
|
|
if (result.stackChanged) {
|
|
InspectorTest.log('Protocol.Debugger.stepInto');
|
|
Protocol.Debugger.stepInto();
|
|
var {params:{callFrames}} = await Protocol.Debugger.oncePaused();
|
|
await session.logSourceLocation(callFrames[0].location);
|
|
}
|
|
}
|