-
Notifications
You must be signed in to change notification settings - Fork 30k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This enables inspector support for contexts created using the vm module. PR-URL: #14465 Reviewed-By: Jan Krems <[email protected]> Reviewed-By: Timothy Gu <[email protected]> Reviewed-By: Aleksey Kozyatinskiy <[email protected]>
- Loading branch information
Showing
4 changed files
with
80 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
'use strict'; | ||
|
||
// Flags: --expose-gc | ||
|
||
const common = require('../common'); | ||
common.skipIfInspectorDisabled(); | ||
|
||
const { strictEqual } = require('assert'); | ||
const { runInNewContext } = require('vm'); | ||
const { Session } = require('inspector'); | ||
|
||
const session = new Session(); | ||
session.connect(); | ||
|
||
function notificationPromise(method) { | ||
return new Promise((resolve) => session.once(method, resolve)); | ||
} | ||
|
||
async function testContextCreatedAndDestroyed() { | ||
console.log('Testing context created/destroyed notifications'); | ||
const mainContextPromise = | ||
notificationPromise('Runtime.executionContextCreated'); | ||
|
||
session.post('Runtime.enable'); | ||
let contextCreated = await mainContextPromise; | ||
strictEqual('Node.js Main Context', | ||
contextCreated.params.context.name, | ||
JSON.stringify(contextCreated)); | ||
|
||
const secondContextCreatedPromise = | ||
notificationPromise('Runtime.executionContextCreated'); | ||
|
||
let contextDestroyed = null; | ||
session.once('Runtime.executionContextDestroyed', | ||
(notification) => contextDestroyed = notification); | ||
|
||
runInNewContext('1 + 1', {}); | ||
|
||
contextCreated = await secondContextCreatedPromise; | ||
strictEqual('VM Context 1', | ||
contextCreated.params.context.name, | ||
JSON.stringify(contextCreated)); | ||
|
||
// GC is unpredictable... | ||
while (!contextDestroyed) | ||
global.gc(); | ||
|
||
strictEqual(contextCreated.params.context.id, | ||
contextDestroyed.params.executionContextId, | ||
JSON.stringify(contextDestroyed)); | ||
} | ||
|
||
async function testBreakpointHit() { | ||
console.log('Testing breakpoint is hit in a new context'); | ||
session.post('Debugger.enable'); | ||
|
||
const pausedPromise = notificationPromise('Debugger.paused'); | ||
runInNewContext('debugger', {}); | ||
await pausedPromise; | ||
} | ||
|
||
common.crashOnUnhandledRejection(); | ||
testContextCreatedAndDestroyed().then(testBreakpointHit); |