|
| 1 | +import{spawnPromisified}from'../common/index.mjs'; |
| 2 | +import*astmpdirfrom'../common/tmpdir.js'; |
| 3 | + |
| 4 | +importassertfrom'node:assert'; |
| 5 | +import{mkdir,writeFile}from'node:fs/promises'; |
| 6 | +import*aspathfrom'node:path'; |
| 7 | +import{execPath}from'node:process'; |
| 8 | +import{describe,it,before}from'node:test'; |
| 9 | + |
| 10 | +describe('ESM in main field',{concurrency: true},()=>{ |
| 11 | +before(()=>tmpdir.refresh()); |
| 12 | + |
| 13 | +it('should handle fully-specified relative path without any warning',async()=>{ |
| 14 | +constcwd=path.join(tmpdir.path,Math.random().toString()); |
| 15 | +constpkgPath=path.join(cwd,'./node_modules/pkg/'); |
| 16 | +awaitmkdir(pkgPath,{recursive: true}); |
| 17 | +awaitwriteFile(path.join(pkgPath,'./index.js'),'console.log("Hello World!")'); |
| 18 | +awaitwriteFile(path.join(pkgPath,'./package.json'),JSON.stringify({ |
| 19 | +main: './index.js', |
| 20 | +type: 'module', |
| 21 | +})); |
| 22 | +const{ code, stdout, stderr }=awaitspawnPromisified(execPath,[ |
| 23 | +'--input-type=module', |
| 24 | +'--eval','import "pkg"', |
| 25 | +],{ cwd }); |
| 26 | + |
| 27 | +assert.strictEqual(stderr,''); |
| 28 | +assert.match(stdout,/^HelloWorld!\r?\n$/); |
| 29 | +assert.strictEqual(code,0); |
| 30 | +}); |
| 31 | +it('should handle fully-specified absolute path without any warning',async()=>{ |
| 32 | +constcwd=path.join(tmpdir.path,Math.random().toString()); |
| 33 | +constpkgPath=path.join(cwd,'./node_modules/pkg/'); |
| 34 | +awaitmkdir(pkgPath,{recursive: true}); |
| 35 | +awaitwriteFile(path.join(pkgPath,'./index.js'),'console.log("Hello World!")'); |
| 36 | +awaitwriteFile(path.join(pkgPath,'./package.json'),JSON.stringify({ |
| 37 | +main: path.join(pkgPath,'./index.js'), |
| 38 | +type: 'module', |
| 39 | +})); |
| 40 | +const{ code, stdout, stderr }=awaitspawnPromisified(execPath,[ |
| 41 | +'--input-type=module', |
| 42 | +'--eval','import "pkg"', |
| 43 | +],{ cwd }); |
| 44 | + |
| 45 | +assert.strictEqual(stderr,''); |
| 46 | +assert.match(stdout,/^HelloWorld!\r?\n$/); |
| 47 | +assert.strictEqual(code,0); |
| 48 | +}); |
| 49 | + |
| 50 | +it('should emit warning when "main" and "exports" are missing',async()=>{ |
| 51 | +constcwd=path.join(tmpdir.path,Math.random().toString()); |
| 52 | +constpkgPath=path.join(cwd,'./node_modules/pkg/'); |
| 53 | +awaitmkdir(pkgPath,{recursive: true}); |
| 54 | +awaitwriteFile(path.join(pkgPath,'./index.js'),'console.log("Hello World!")'); |
| 55 | +awaitwriteFile(path.join(pkgPath,'./package.json'),JSON.stringify({ |
| 56 | +type: 'module', |
| 57 | +})); |
| 58 | +const{ code, stdout, stderr }=awaitspawnPromisified(execPath,[ |
| 59 | +'--input-type=module', |
| 60 | +'--eval','import "pkg"', |
| 61 | +],{ cwd }); |
| 62 | + |
| 63 | +assert.match(stderr,/\[DEP0151\]/); |
| 64 | +assert.match(stdout,/^HelloWorld!\r?\n$/); |
| 65 | +assert.strictEqual(code,0); |
| 66 | +}); |
| 67 | +it('should emit warning when "main" is falsy',async()=>{ |
| 68 | +constcwd=path.join(tmpdir.path,Math.random().toString()); |
| 69 | +constpkgPath=path.join(cwd,'./node_modules/pkg/'); |
| 70 | +awaitmkdir(pkgPath,{recursive: true}); |
| 71 | +awaitwriteFile(path.join(pkgPath,'./index.js'),'console.log("Hello World!")'); |
| 72 | +awaitwriteFile(path.join(pkgPath,'./package.json'),JSON.stringify({ |
| 73 | +type: 'module', |
| 74 | +main: '', |
| 75 | +})); |
| 76 | +const{ code, stdout, stderr }=awaitspawnPromisified(execPath,[ |
| 77 | +'--input-type=module', |
| 78 | +'--eval','import "pkg"', |
| 79 | +],{ cwd }); |
| 80 | + |
| 81 | +assert.match(stderr,/\[DEP0151\]/); |
| 82 | +assert.match(stdout,/^HelloWorld!\r?\n$/); |
| 83 | +assert.strictEqual(code,0); |
| 84 | +}); |
| 85 | +it('should emit warning when "main" is a relative path without extension',async()=>{ |
| 86 | +constcwd=path.join(tmpdir.path,Math.random().toString()); |
| 87 | +constpkgPath=path.join(cwd,'./node_modules/pkg/'); |
| 88 | +awaitmkdir(pkgPath,{recursive: true}); |
| 89 | +awaitwriteFile(path.join(pkgPath,'./index.js'),'console.log("Hello World!")'); |
| 90 | +awaitwriteFile(path.join(pkgPath,'./package.json'),JSON.stringify({ |
| 91 | +main: 'index', |
| 92 | +type: 'module', |
| 93 | +})); |
| 94 | +const{ code, stdout, stderr }=awaitspawnPromisified(execPath,[ |
| 95 | +'--input-type=module', |
| 96 | +'--eval','import "pkg"', |
| 97 | +],{ cwd }); |
| 98 | + |
| 99 | +assert.match(stderr,/\[DEP0151\]/); |
| 100 | +assert.match(stdout,/^HelloWorld!\r?\n$/); |
| 101 | +assert.strictEqual(code,0); |
| 102 | +}); |
| 103 | +it('should emit warning when "main" is an absolute path without extension',async()=>{ |
| 104 | +constcwd=path.join(tmpdir.path,Math.random().toString()); |
| 105 | +constpkgPath=path.join(cwd,'./node_modules/pkg/'); |
| 106 | +awaitmkdir(pkgPath,{recursive: true}); |
| 107 | +awaitwriteFile(path.join(pkgPath,'./index.js'),'console.log("Hello World!")'); |
| 108 | +awaitwriteFile(path.join(pkgPath,'./package.json'),JSON.stringify({ |
| 109 | +main: pkgPath+'index', |
| 110 | +type: 'module', |
| 111 | +})); |
| 112 | +const{ code, stdout, stderr }=awaitspawnPromisified(execPath,[ |
| 113 | +'--input-type=module', |
| 114 | +'--eval','import "pkg"', |
| 115 | +],{ cwd }); |
| 116 | + |
| 117 | +assert.match(stderr,/\[DEP0151\]/); |
| 118 | +assert.match(stdout,/^HelloWorld!\r?\n$/); |
| 119 | +assert.strictEqual(code,0); |
| 120 | +}); |
| 121 | +}); |
0 commit comments