-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: split heap prof tests #44388
Closed
Closed
test: split heap prof tests #44388
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
'use strict'; | ||
|
||
const assert = require('assert'); | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
|
||
function getHeapProfiles(dir) { | ||
const list = fs.readdirSync(dir); | ||
return list | ||
.filter((file) => file.endsWith('.heapprofile')) | ||
.map((file) => path.join(dir, file)); | ||
} | ||
|
||
function findFirstFrameInNode(root, func) { | ||
const first = root.children.find( | ||
(child) => child.callFrame.functionName === func | ||
); | ||
if (first) { | ||
return first; | ||
} | ||
for (const child of root.children) { | ||
const first = findFirstFrameInNode(child, func); | ||
if (first) { | ||
return first; | ||
} | ||
} | ||
return undefined; | ||
} | ||
|
||
function findFirstFrame(file, func) { | ||
const data = fs.readFileSync(file, 'utf8'); | ||
const profile = JSON.parse(data); | ||
const first = findFirstFrameInNode(profile.head, func); | ||
return { frame: first, roots: profile.head.children }; | ||
} | ||
|
||
function verifyFrames(output, file, func) { | ||
const { frame, roots } = findFirstFrame(file, func); | ||
if (!frame) { | ||
// Show native debug output and the profile for debugging. | ||
console.log(output.stderr.toString()); | ||
console.log(roots); | ||
} | ||
assert.notStrictEqual(frame, undefined); | ||
} | ||
|
||
// We need to set --heap-prof-interval to a small enough value to make | ||
// sure we can find our workload in the samples, so we need to set | ||
// TEST_ALLOCATION > kHeapProfInterval. | ||
const kHeapProfInterval = 128; | ||
const TEST_ALLOCATION = kHeapProfInterval * 2; | ||
|
||
const env = { | ||
...process.env, | ||
TEST_ALLOCATION, | ||
NODE_DEBUG_NATIVE: 'INSPECTOR_PROFILER' | ||
}; | ||
|
||
// TODO(joyeecheung): share the fixutres with v8 coverage tests | ||
module.exports = { | ||
getHeapProfiles, | ||
verifyFrames, | ||
findFirstFrame, | ||
kHeapProfInterval, | ||
TEST_ALLOCATION, | ||
env | ||
}; |
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,37 @@ | ||
'use strict'; | ||
|
||
// Tests --heap-prof without --heap-prof-interval. Here we just verify that | ||
// we manage to generate a profile. | ||
|
||
const common = require('../common'); | ||
|
||
const fixtures = require('../common/fixtures'); | ||
common.skipIfInspectorDisabled(); | ||
|
||
const assert = require('assert'); | ||
const { spawnSync } = require('child_process'); | ||
|
||
const tmpdir = require('../common/tmpdir'); | ||
|
||
const { | ||
getHeapProfiles, | ||
env | ||
} = require('../common/prof'); | ||
|
||
{ | ||
tmpdir.refresh(); | ||
const output = spawnSync(process.execPath, [ | ||
'--heap-prof', | ||
fixtures.path('workload', 'allocation.js'), | ||
], { | ||
cwd: tmpdir.path, | ||
env | ||
}); | ||
if (output.status !== 0) { | ||
console.log(output.stderr.toString()); | ||
console.log(output); | ||
} | ||
assert.strictEqual(output.status, 0); | ||
const profiles = getHeapProfiles(tmpdir.path); | ||
assert.strictEqual(profiles.length, 1); | ||
} |
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,47 @@ | ||
'use strict'; | ||
|
||
// This tests that --heap-prof, --heap-prof-dir and --heap-prof-name works. | ||
|
||
const common = require('../common'); | ||
|
||
const fixtures = require('../common/fixtures'); | ||
common.skipIfInspectorDisabled(); | ||
|
||
const assert = require('assert'); | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const { spawnSync } = require('child_process'); | ||
|
||
const tmpdir = require('../common/tmpdir'); | ||
|
||
const { | ||
getHeapProfiles, | ||
verifyFrames, | ||
kHeapProfInterval, | ||
env | ||
} = require('../common/prof'); | ||
|
||
// Tests absolute --heap-prof-dir | ||
{ | ||
tmpdir.refresh(); | ||
const dir = path.join(tmpdir.path, 'prof'); | ||
const output = spawnSync(process.execPath, [ | ||
'--heap-prof', | ||
'--heap-prof-dir', | ||
dir, | ||
'--heap-prof-interval', | ||
kHeapProfInterval, | ||
fixtures.path('workload', 'allocation.js'), | ||
], { | ||
cwd: tmpdir.path, | ||
env | ||
}); | ||
if (output.status !== 0) { | ||
console.log(output.stderr.toString()); | ||
} | ||
assert.strictEqual(output.status, 0); | ||
assert(fs.existsSync(dir)); | ||
const profiles = getHeapProfiles(dir); | ||
assert.strictEqual(profiles.length, 1); | ||
verifyFrames(output, profiles[0], 'runAllocation'); | ||
} |
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,49 @@ | ||
'use strict'; | ||
|
||
// Tests --heap-prof-dir and --heap-prof-name work together. | ||
|
||
const common = require('../common'); | ||
|
||
const fixtures = require('../common/fixtures'); | ||
common.skipIfInspectorDisabled(); | ||
|
||
const assert = require('assert'); | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const { spawnSync } = require('child_process'); | ||
|
||
const tmpdir = require('../common/tmpdir'); | ||
|
||
const { | ||
getHeapProfiles, | ||
verifyFrames, | ||
kHeapProfInterval, | ||
env | ||
} = require('../common/prof'); | ||
|
||
{ | ||
tmpdir.refresh(); | ||
const dir = path.join(tmpdir.path, 'prof'); | ||
const file = path.join(dir, 'test.heapprofile'); | ||
const output = spawnSync(process.execPath, [ | ||
'--heap-prof', | ||
'--heap-prof-name', | ||
'test.heapprofile', | ||
'--heap-prof-dir', | ||
dir, | ||
'--heap-prof-interval', | ||
kHeapProfInterval, | ||
fixtures.path('workload', 'allocation.js'), | ||
], { | ||
cwd: tmpdir.path, | ||
env | ||
}); | ||
if (output.status !== 0) { | ||
console.log(output.stderr.toString()); | ||
} | ||
assert.strictEqual(output.status, 0); | ||
assert(fs.existsSync(dir)); | ||
const profiles = getHeapProfiles(dir); | ||
assert.deepStrictEqual(profiles, [file]); | ||
verifyFrames(output, file, 'runAllocation'); | ||
} |
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,46 @@ | ||
'use strict'; | ||
|
||
// Tests relative --heap-prof-dir works. | ||
|
||
const common = require('../common'); | ||
|
||
const fixtures = require('../common/fixtures'); | ||
common.skipIfInspectorDisabled(); | ||
|
||
const assert = require('assert'); | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const { spawnSync } = require('child_process'); | ||
|
||
const tmpdir = require('../common/tmpdir'); | ||
|
||
const { | ||
getHeapProfiles, | ||
verifyFrames, | ||
kHeapProfInterval, | ||
env | ||
} = require('../common/prof'); | ||
|
||
{ | ||
tmpdir.refresh(); | ||
const output = spawnSync(process.execPath, [ | ||
'--heap-prof', | ||
'--heap-prof-dir', | ||
'prof', | ||
'--heap-prof-interval', | ||
kHeapProfInterval, | ||
fixtures.path('workload', 'allocation.js'), | ||
], { | ||
cwd: tmpdir.path, | ||
env | ||
}); | ||
if (output.status !== 0) { | ||
console.log(output.stderr.toString()); | ||
} | ||
assert.strictEqual(output.status, 0); | ||
const dir = path.join(tmpdir.path, 'prof'); | ||
assert(fs.existsSync(dir)); | ||
const profiles = getHeapProfiles(dir); | ||
assert.strictEqual(profiles.length, 1); | ||
verifyFrames(output, profiles[0], 'runAllocation'); | ||
} |
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,39 @@ | ||
'use strict'; | ||
|
||
// Tests --heap-prof generates a heap profile from worker | ||
// when execArgv is set. | ||
|
||
const common = require('../common'); | ||
|
||
const fixtures = require('../common/fixtures'); | ||
common.skipIfInspectorDisabled(); | ||
|
||
const assert = require('assert'); | ||
const { spawnSync } = require('child_process'); | ||
|
||
const tmpdir = require('../common/tmpdir'); | ||
|
||
const { | ||
getHeapProfiles, | ||
verifyFrames, | ||
} = require('../common/prof'); | ||
|
||
{ | ||
tmpdir.refresh(); | ||
const output = spawnSync(process.execPath, [ | ||
fixtures.path('workload', 'allocation-worker-argv.js'), | ||
], { | ||
cwd: tmpdir.path, | ||
env: { | ||
...process.env, | ||
HEAP_PROF_INTERVAL: '128' | ||
} | ||
}); | ||
if (output.status !== 0) { | ||
console.log(output.stderr.toString()); | ||
} | ||
assert.strictEqual(output.status, 0); | ||
const profiles = getHeapProfiles(tmpdir.path); | ||
assert.strictEqual(profiles.length, 1); | ||
verifyFrames(output, profiles[0], 'runAllocation'); | ||
} |
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,41 @@ | ||
'use strict'; | ||
|
||
// Tests --heap-prof generates a heap profile when process.exit(55) exits | ||
// process. | ||
|
||
const common = require('../common'); | ||
|
||
const fixtures = require('../common/fixtures'); | ||
common.skipIfInspectorDisabled(); | ||
|
||
const assert = require('assert'); | ||
const { spawnSync } = require('child_process'); | ||
|
||
const tmpdir = require('../common/tmpdir'); | ||
|
||
const { | ||
getHeapProfiles, | ||
verifyFrames, | ||
kHeapProfInterval, | ||
env | ||
} = require('../common/prof'); | ||
|
||
{ | ||
tmpdir.refresh(); | ||
const output = spawnSync(process.execPath, [ | ||
'--heap-prof', | ||
'--heap-prof-interval', | ||
kHeapProfInterval, | ||
fixtures.path('workload', 'allocation-exit.js'), | ||
], { | ||
cwd: tmpdir.path, | ||
env | ||
}); | ||
if (output.status !== 55) { | ||
console.log(output.stderr.toString()); | ||
} | ||
assert.strictEqual(output.status, 55); | ||
const profiles = getHeapProfiles(tmpdir.path); | ||
assert.strictEqual(profiles.length, 1); | ||
verifyFrames(output, profiles[0], 'runAllocation'); | ||
} |
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,56 @@ | ||
'use strict'; | ||
|
||
// Tests multiple profiles generated by --heap-prof-interval are valid. | ||
|
||
const common = require('../common'); | ||
|
||
const fixtures = require('../common/fixtures'); | ||
common.skipIfInspectorDisabled(); | ||
|
||
const assert = require('assert'); | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const { spawnSync } = require('child_process'); | ||
|
||
const tmpdir = require('../common/tmpdir'); | ||
|
||
const { | ||
getHeapProfiles, | ||
findFirstFrame, | ||
kHeapProfInterval, | ||
env | ||
} = require('../common/prof'); | ||
|
||
{ | ||
tmpdir.refresh(); | ||
const output = spawnSync(process.execPath, [ | ||
'--heap-prof-interval', | ||
kHeapProfInterval, | ||
'--heap-prof-dir', | ||
'prof', | ||
'--heap-prof', | ||
fixtures.path('workload', 'allocation-worker.js'), | ||
], { | ||
cwd: tmpdir.path, | ||
env | ||
}); | ||
if (output.status !== 0) { | ||
console.log(output.stderr.toString()); | ||
} | ||
assert.strictEqual(output.status, 0); | ||
const dir = path.join(tmpdir.path, 'prof'); | ||
assert(fs.existsSync(dir)); | ||
const profiles = getHeapProfiles(dir); | ||
assert.strictEqual(profiles.length, 2); | ||
const profile1 = findFirstFrame(profiles[0], 'runAllocation'); | ||
const profile2 = findFirstFrame(profiles[1], 'runAllocation'); | ||
if (!profile1.frame && !profile2.frame) { | ||
// Show native debug output and the profile for debugging. | ||
console.log(output.stderr.toString()); | ||
console.log('heap path: ', profiles[0]); | ||
console.log(profile1.roots); | ||
console.log('heap path: ', profiles[1]); | ||
console.log(profile2.roots); | ||
} | ||
assert(profile1.frame || profile2.frame); | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: some basic doc comments for each of these utilities added into
test/common
would be helpful. Not blocking tho.