@@ -1000,7 +1000,7 @@ describe('zip-it-and-ship-it', () => {
1000
1000
1001
1001
testMany (
1002
1002
'Handles a JavaScript function ({name}.cjs, {name}/{name}.cjs, {name}/index.cjs)' ,
1003
- [ 'bundler_esbuild' , 'bundler_default' ] ,
1003
+ [ 'bundler_esbuild' ] ,
1004
1004
async ( options ) => {
1005
1005
const { files, tmpDir } = await zipFixture ( 'node-cjs-extension' , {
1006
1006
length : 3 ,
@@ -1023,6 +1023,32 @@ describe('zip-it-and-ship-it', () => {
1023
1023
} ,
1024
1024
)
1025
1025
1026
+ // TODO can be merged with the above once the FF is on `zisi_output_cjs_extension`
1027
+ testMany (
1028
+ 'Handles a JavaScript function ({name}.cjs, {name}/{name}.cjs, {name}/index.cjs)' ,
1029
+ [ 'bundler_default' ] ,
1030
+ async ( options ) => {
1031
+ const { files, tmpDir } = await zipFixture ( 'node-cjs-extension' , {
1032
+ length : 3 ,
1033
+ opts : options ,
1034
+ } )
1035
+
1036
+ await unzipFiles ( files )
1037
+
1038
+ expect ( files ) . toHaveLength ( 3 )
1039
+ files . forEach ( ( file ) => {
1040
+ expect ( file . bundler ) . toBe ( options . getCurrentBundlerName ( ) ?? 'zisi' )
1041
+ } )
1042
+
1043
+ const { handler : handler1 } = await importFunctionFile ( `${ tmpDir } /func1.cjs` )
1044
+ expect ( handler1 ( ) ) . toBe ( true )
1045
+ const { handler : handler2 } = await importFunctionFile ( `${ tmpDir } /func2.cjs` )
1046
+ expect ( handler2 ( ) ) . toBe ( true )
1047
+ const { handler : handler3 } = await importFunctionFile ( `${ tmpDir } /func3.js` )
1048
+ expect ( handler3 ( ) ) . toBe ( true )
1049
+ } ,
1050
+ )
1051
+
1026
1052
testMany (
1027
1053
'Loads a tsconfig.json placed in the same directory as the function' ,
1028
1054
[ 'bundler_default' , 'bundler_esbuild' , 'bundler_esbuild_zisi' , 'bundler_default_nft' , 'todo:bundler_nft' ] ,
@@ -2445,4 +2471,81 @@ describe('zip-it-and-ship-it', () => {
2445
2471
expect ( result . stderr ) . not . toContain ( 'Dynamic require of "path" is not supported' )
2446
2472
expect ( result ) . not . toBeInstanceOf ( Error )
2447
2473
} )
2474
+
2475
+ testMany (
2476
+ 'Emits entry file with .cjs extension when `zisi_output_cjs_extension` flag is on' ,
2477
+ [ 'bundler_default' , 'bundler_esbuild' , 'bundler_nft' ] ,
2478
+ async ( options ) => {
2479
+ const fixtureName = 'node-esm'
2480
+ const opts = merge ( options , {
2481
+ basePath : join ( FIXTURES_DIR , fixtureName ) ,
2482
+ featureFlags : { zisi_output_cjs_extension : true } ,
2483
+ } )
2484
+ const { files, tmpDir } = await zipFixture ( fixtureName , {
2485
+ length : 2 ,
2486
+ opts,
2487
+ } )
2488
+
2489
+ await unzipFiles ( files )
2490
+
2491
+ const bundledFile2 = await importFunctionFile ( join ( tmpDir , 'func2.cjs' ) )
2492
+ expect ( bundledFile2 . handler ( ) ) . toBe ( true )
2493
+
2494
+ if ( options . getCurrentBundlerName ( ) === 'esbuild' ) {
2495
+ // nft does not create an entry here because the main file is already an entrypoint
2496
+ const bundledFile1 = await importFunctionFile ( join ( tmpDir , 'func1.cjs' ) )
2497
+ expect ( bundledFile1 . handler ( ) ) . toBe ( true )
2498
+ }
2499
+ } ,
2500
+ )
2501
+
2502
+ testMany ( 'Keeps .cjs extension' , [ 'bundler_default' , 'bundler_nft' ] , async ( options ) => {
2503
+ const fixtureName = 'node-cjs-extension'
2504
+ const opts = merge ( options , {
2505
+ basePath : join ( FIXTURES_DIR , fixtureName ) ,
2506
+ } )
2507
+ const { files, tmpDir } = await zipFixture ( fixtureName , {
2508
+ length : 3 ,
2509
+ opts,
2510
+ } )
2511
+
2512
+ await unzipFiles ( files )
2513
+
2514
+ const bundledFile1 = await importFunctionFile ( join ( tmpDir , 'func1.cjs' ) )
2515
+ const bundledFile2 = await importFunctionFile ( join ( tmpDir , 'func2.cjs' ) )
2516
+ const bundledFile3 = await importFunctionFile ( join ( tmpDir , 'index.cjs' ) )
2517
+
2518
+ expect ( bundledFile1 . handler ( ) ) . toBe ( true )
2519
+ expect ( bundledFile2 . handler ( ) ) . toBe ( true )
2520
+ expect ( bundledFile3 . handler ( ) ) . toBe ( true )
2521
+ } )
2522
+
2523
+ testMany (
2524
+ 'Does not create .cjs entry file if entry with .js extension is already present' ,
2525
+ [ 'bundler_default' , 'bundler_nft' ] ,
2526
+ async ( options ) => {
2527
+ const fixtureName = 'node-js-extension'
2528
+ const opts = merge ( options , {
2529
+ basePath : join ( FIXTURES_DIR , fixtureName ) ,
2530
+ featureFlags : { zisi_output_cjs_extension : true } ,
2531
+ } )
2532
+ const { files, tmpDir } = await zipFixture ( fixtureName , {
2533
+ length : 3 ,
2534
+ opts,
2535
+ } )
2536
+
2537
+ await unzipFiles ( files )
2538
+
2539
+ const bundledFile1 = await importFunctionFile ( join ( tmpDir , 'func1.js' ) )
2540
+ const bundledFile2 = await importFunctionFile ( join ( tmpDir , 'func2.js' ) )
2541
+
2542
+ expect ( bundledFile1 . handler ( ) ) . toBe ( true )
2543
+ expect ( bundledFile2 . handler ( ) ) . toBe ( true )
2544
+
2545
+ expect ( `${ tmpDir } /func1.cjs` ) . not . toPathExist ( )
2546
+ expect ( `${ tmpDir } /func1.mjs` ) . not . toPathExist ( )
2547
+ expect ( `${ tmpDir } /func2.cjs` ) . not . toPathExist ( )
2548
+ expect ( `${ tmpDir } /func2.mjs` ) . not . toPathExist ( )
2549
+ } ,
2550
+ )
2448
2551
} )
1 commit comments
github-actions[bot] commentedon Jan 11, 2023
⏱ Benchmark results