@@ -189,7 +189,11 @@ metatests.test('Call undefined as a function', async (test) => {
189
189
metatests . test ( 'Metarequire node internal module' , async ( test ) => {
190
190
const sandbox = { } ;
191
191
sandbox . global = sandbox ;
192
- sandbox . require = metavm . metarequire ( sandbox , { fs } ) ;
192
+ sandbox . require = metavm . metarequire ( {
193
+ dirname : __dirname ,
194
+ sandbox,
195
+ access : { fs } ,
196
+ } ) ;
193
197
const context = metavm . createContext ( sandbox ) ;
194
198
const src = `({ fs: require('fs') })` ;
195
199
const ms = metavm . createScript ( 'Example' , src , { context } ) ;
@@ -201,41 +205,86 @@ metatests.test('Metarequire node internal module', async (test) => {
201
205
metatests . test ( 'Metarequire internal not permitted' , async ( test ) => {
202
206
const sandbox = { } ;
203
207
sandbox . global = sandbox ;
204
- sandbox . require = metavm . metarequire ( sandbox ) ;
208
+ sandbox . require = metavm . metarequire ( { dirname : __dirname , sandbox } ) ;
205
209
const context = metavm . createContext ( sandbox ) ;
206
210
const src = `({ fs: require('fs') })` ;
207
211
try {
208
212
const ms = metavm . createScript ( 'Example' , src , { context } ) ;
209
213
test . strictSame ( ms , undefined ) ;
210
214
} catch ( err ) {
211
- test . strictSame ( err . message , `Cannot find module: 'fs'` ) ;
215
+ test . strictSame ( err . message , `Access denied 'fs'` ) ;
212
216
}
213
217
test . end ( ) ;
214
218
} ) ;
215
219
216
- metatests . test ( 'Metarequire non-existent module' , async ( test ) => {
220
+ metatests . test ( 'Metarequire not permitted module' , async ( test ) => {
217
221
const sandbox = { } ;
218
222
sandbox . global = sandbox ;
219
- sandbox . require = metavm . metarequire ( sandbox ) ;
223
+ sandbox . require = metavm . metarequire ( { dirname : __dirname , sandbox } ) ;
220
224
const context = metavm . createContext ( sandbox ) ;
221
225
const src = `({ notExist: require('nothing') })` ;
222
226
try {
223
227
const ms = metavm . createScript ( 'Example' , src , { context } ) ;
224
228
test . strictSame ( ms , undefined ) ;
225
229
} catch ( err ) {
226
- test . strictSame ( err . message , `Cannot find module: 'nothing'` ) ;
230
+ test . strictSame ( err . message , `Access denied 'nothing'` ) ;
231
+ }
232
+ test . end ( ) ;
233
+ } ) ;
234
+
235
+ metatests . test ( 'Metarequire non-existent module' , async ( test ) => {
236
+ const sandbox = { } ;
237
+ sandbox . global = sandbox ;
238
+ sandbox . require = metavm . metarequire ( {
239
+ dirname : __dirname ,
240
+ sandbox,
241
+ access : { metalog : true } ,
242
+ } ) ;
243
+ const context = metavm . createContext ( sandbox ) ;
244
+ const src = `({ notExist: require('metalog') })` ;
245
+ try {
246
+ const ms = metavm . createScript ( 'Example' , src , { context } ) ;
247
+ test . strictSame ( ms , undefined ) ;
248
+ } catch ( err ) {
249
+ test . strictSame ( err . message , `Cannot find module 'metalog'` ) ;
227
250
}
228
251
test . end ( ) ;
229
252
} ) ;
230
253
231
254
metatests . test ( 'Metarequire nestsed modules' , async ( test ) => {
232
255
const sandbox = { } ;
233
256
sandbox . global = sandbox ;
234
- sandbox . require = metavm . metarequire ( sandbox ) ;
257
+ const access = {
258
+ './examples/nestedmodule1.js' : true ,
259
+ './examples/nestedmodule2.js' : true ,
260
+ } ;
261
+ sandbox . require = metavm . metarequire ( { dirname : __dirname , sandbox, access } ) ;
235
262
const context = metavm . createContext ( sandbox ) ;
236
- const src = `({ loaded: require('./test/ examples/nestedmodule1.js') })` ;
263
+ const src = `({ loaded: require('./examples/nestedmodule1.js') })` ;
237
264
const ms = metavm . createScript ( 'Example' , src , { context } ) ;
238
- test . strictSame ( ms . exports . loaded . exports . value , 1 ) ;
239
- test . strictSame ( ms . exports . loaded . exports . nested . exports . value , 2 ) ;
265
+ test . strictSame ( ms . exports . loaded . value , 1 ) ;
266
+ test . strictSame ( ms . exports . loaded . nested . value , 2 ) ;
267
+ test . end ( ) ;
268
+ } ) ;
269
+
270
+ metatests . test ( 'Metarequire nestsed not permitted' , async ( test ) => {
271
+ const sandbox = { } ;
272
+ sandbox . global = sandbox ;
273
+ sandbox . require = metavm . metarequire ( {
274
+ dirname : __dirname ,
275
+ sandbox,
276
+ access : {
277
+ './examples/nestedmodule1.js' : true ,
278
+ } ,
279
+ } ) ;
280
+ const context = metavm . createContext ( sandbox ) ;
281
+ const src = `({ loaded: require('./examples/nestedmodule1.js') })` ;
282
+ try {
283
+ const ms = metavm . createScript ( 'Example' , src , { context } ) ;
284
+ test . fail ( 'Should not be loaded' , ms ) ;
285
+ } catch ( err ) {
286
+ const module2 = './nestedmodule2.js' ;
287
+ test . strictSame ( err . message , `Access denied '${ module2 } '` ) ;
288
+ }
240
289
test . end ( ) ;
241
290
} ) ;
0 commit comments