Skip to content

Commit 68dda61

Browse files
kimtaejin3ruyadorno
authored andcommitted
lib: add validation for options in compileFunction
PR-URL: #56023 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
1 parent ad107ca commit 68dda61

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

lib/vm.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,7 @@ function runInThisContext(code, options) {
319319

320320
function compileFunction(code, params, options = kEmptyObject) {
321321
validateString(code, 'code');
322+
validateObject(options, 'options');
322323
if (params !== undefined) {
323324
validateStringArray(params, 'params');
324325
}

test/parallel/test-vm-basic.js

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,30 @@ const vm = require('vm');
172172
'Received null'
173173
});
174174

175-
// vm.compileFunction('', undefined, null);
175+
// Test for invalid options type
176+
assert.throws(() => {
177+
vm.compileFunction('', [], null);
178+
}, {
179+
name: 'TypeError',
180+
code: 'ERR_INVALID_ARG_TYPE',
181+
message: 'The "options" argument must be of type object. Received null'
182+
});
183+
184+
assert.throws(() => {
185+
vm.compileFunction('', [], 'string');
186+
}, {
187+
name: 'TypeError',
188+
code: 'ERR_INVALID_ARG_TYPE',
189+
message: 'The "options" argument must be of type object. Received type string (\'string\')'
190+
});
191+
192+
assert.throws(() => {
193+
vm.compileFunction('', [], 123);
194+
}, {
195+
name: 'TypeError',
196+
code: 'ERR_INVALID_ARG_TYPE',
197+
message: 'The "options" argument must be of type object. Received type number (123)'
198+
});
176199

177200
const optionTypes = {
178201
'filename': 'string',

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy