2018-01-16 23:35:54 +01:00
|
|
|
// Flags: --expose-internals
|
2017-07-24 18:23:04 +02:00
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
common.skipIfInspectorDisabled();
|
|
|
|
const assert = require('assert');
|
2017-10-14 04:42:38 +02:00
|
|
|
const { NodeInstance } = require('../common/inspector-helper.js');
|
|
|
|
const fixtures = require('../common/fixtures');
|
2018-08-30 23:59:34 +02:00
|
|
|
const { pathToFileURL } = require('url');
|
2017-07-24 18:23:04 +02:00
|
|
|
|
2017-10-14 04:42:38 +02:00
|
|
|
const script = fixtures.path('inspector-global-function.js');
|
2017-07-24 18:23:04 +02:00
|
|
|
|
|
|
|
async function setupDebugger(session) {
|
|
|
|
console.log('[test]', 'Setting up a debugger');
|
|
|
|
const commands = [
|
|
|
|
{ 'method': 'Runtime.enable' },
|
|
|
|
{ 'method': 'Debugger.enable' },
|
|
|
|
{ 'method': 'Debugger.setAsyncCallStackDepth',
|
|
|
|
'params': { 'maxDepth': 0 } },
|
|
|
|
{ 'method': 'Runtime.runIfWaitingForDebugger' },
|
|
|
|
];
|
|
|
|
session.send(commands);
|
|
|
|
await session.waitForNotification('Runtime.consoleAPICalled');
|
|
|
|
}
|
|
|
|
|
|
|
|
async function breakOnLine(session) {
|
|
|
|
console.log('[test]', 'Breaking in the code');
|
|
|
|
const commands = [
|
|
|
|
{ 'method': 'Debugger.setBreakpointByUrl',
|
|
|
|
'params': { 'lineNumber': 9,
|
2018-08-30 23:59:34 +02:00
|
|
|
'url': pathToFileURL(script).toString(),
|
2017-07-24 18:23:04 +02:00
|
|
|
'columnNumber': 0,
|
|
|
|
'condition': ''
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ 'method': 'Runtime.evaluate',
|
|
|
|
'params': { 'expression': 'sum()',
|
|
|
|
'objectGroup': 'console',
|
|
|
|
'includeCommandLineAPI': true,
|
|
|
|
'silent': false,
|
|
|
|
'contextId': 1,
|
|
|
|
'returnByValue': false,
|
|
|
|
'generatePreview': true,
|
|
|
|
'userGesture': true,
|
|
|
|
'awaitPromise': false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
];
|
|
|
|
session.send(commands);
|
2018-08-30 23:59:34 +02:00
|
|
|
await session.waitForBreakOnLine(9, pathToFileURL(script).toString());
|
2017-07-24 18:23:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async function stepOverConsoleStatement(session) {
|
|
|
|
console.log('[test]', 'Step over console statement and test output');
|
|
|
|
session.send({ 'method': 'Debugger.stepOver' });
|
|
|
|
await session.waitForConsoleOutput('log', [0, 3]);
|
|
|
|
await session.waitForNotification('Debugger.paused');
|
|
|
|
}
|
|
|
|
|
|
|
|
async function runTests() {
|
|
|
|
const child = new NodeInstance(['--inspect=0'], undefined, script);
|
|
|
|
const session = await child.connectInspectorSession();
|
|
|
|
await setupDebugger(session);
|
|
|
|
await breakOnLine(session);
|
|
|
|
await stepOverConsoleStatement(session);
|
|
|
|
await session.runToCompletion();
|
2018-10-12 19:23:40 +02:00
|
|
|
assert.strictEqual((await child.expectShutdown()).exitCode, 0);
|
2017-07-24 18:23:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
runTests();
|