-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: improve
UV_THREADPOOL_SIZE
tests on .env
PR-URL: #49213 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
- Loading branch information
Showing
3 changed files
with
32 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
UV_THREADPOOL_SIZE=4 |
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,31 @@ | ||
'use strict'; | ||
|
||
const common = require('../../common'); | ||
const assert = require('assert'); | ||
const path = require('path'); | ||
const { spawnSync } = require('child_process'); | ||
|
||
if (process.config.variables.node_without_node_options) { | ||
common.skip('missing NODE_OPTIONS support'); | ||
} | ||
|
||
const uvThreadPoolPath = '../../fixtures/dotenv/uv-threadpool.env'; | ||
|
||
// Should update UV_THREADPOOL_SIZE | ||
let filePath = path.join(__dirname, `./build/${common.buildType}/test_uv_threadpool_size`); | ||
if (common.isWindows) { | ||
filePath = filePath.replaceAll('\\', '\\\\'); | ||
} | ||
const code = ` | ||
const { test } = require('${filePath}'); | ||
const size = parseInt(process.env.UV_THREADPOOL_SIZE, 10); | ||
require('assert').strictEqual(size, 4); | ||
test(size); | ||
`.trim(); | ||
const child = spawnSync( | ||
process.execPath, | ||
[ `--env-file=${uvThreadPoolPath}`, '--eval', code ], | ||
{ cwd: __dirname, encoding: 'utf-8' }, | ||
); | ||
assert.strictEqual(child.stderr, ''); | ||
assert.strictEqual(child.status, 0); |
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