v8/test/inspector/debugger/set-script-source-2.js
Alexey Kozyatinskiy 6b0bf1659e [inspector] move SetScriptSource call to native
To avoid using debugging context and debugger-script.js on inspector side we can move SetScriptSource call to v8::internal::Debug. Theoretically we can move live edit implementation to native completely but since it will be reimplemented it looks redundant.

R=yangguo@chromium.org,jgruber@chromium.org

Bug: chromium:652939
Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_chromium_rel_ng
Change-Id: Id09492c2d2a93efbde429c9cc1bc181d5fdda19b
Reviewed-on: https://chromium-review.googlesource.com/590736
Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org>
Reviewed-by: Jakob Gruber <jgruber@chromium.org>
Cr-Commit-Position: refs/heads/master@{#46985}
2017-07-28 21:55:05 +00:00

98 lines
3.5 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.
let {session, contextGroup, Protocol} =
InspectorTest.start('Tests Debugger.setScriptSource');
session.setupScriptMap();
function foo() {
var x = 1;
debugger;
return x + 2;
}
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, 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);
}
}