@@ -10,6 +10,9 @@ import { createNpmRegistry } from './e2e/utils/registry';
10
10
import { launchTestProcess } from './e2e/utils/process' ;
11
11
import { join } from 'path' ;
12
12
import { findFreePort } from './e2e/utils/network' ;
13
+ import { extractFile } from './e2e/utils/tar' ;
14
+ import { realpathSync } from 'fs' ;
15
+ import { PkgInfo } from './e2e/utils/packages' ;
13
16
14
17
Error . stackTraceLimit = Infinity ;
15
18
@@ -34,6 +37,8 @@ Error.stackTraceLimit = Infinity;
34
37
* --shard Index of this processes' shard.
35
38
* --tmpdir=path Override temporary directory to use for new projects.
36
39
* --yarn Use yarn as package manager.
40
+ * --package=path An npm package to be published before running tests
41
+ *
37
42
* If unnamed flags are passed in, the list of tests will be filtered to include only those passed.
38
43
*/
39
44
const argv = yargsParser ( process . argv . slice ( 2 ) , {
@@ -49,10 +54,14 @@ const argv = yargsParser(process.argv.slice(2), {
49
54
] ,
50
55
string : [ 'devkit' , 'glob' , 'ignore' , 'reuse' , 'ng-tag' , 'tmpdir' , 'ng-version' ] ,
51
56
number : [ 'nb-shards' , 'shard' ] ,
57
+ array : [ 'package' ] ,
52
58
configuration : {
53
59
'dot-notation' : false ,
54
60
'camel-case-expansion' : false ,
55
61
} ,
62
+ default : {
63
+ 'package' : [ './dist/_*.tgz' ] ,
64
+ } ,
56
65
} ) ;
57
66
58
67
/**
@@ -162,10 +171,11 @@ console.log(['Tests:', ...testsToRun].join('\n '));
162
171
setGlobalVariable ( 'argv' , argv ) ;
163
172
setGlobalVariable ( 'package-manager' , argv . yarn ? 'yarn' : 'npm' ) ;
164
173
165
- Promise . all ( [ findFreePort ( ) , findFreePort ( ) ] )
166
- . then ( async ( [ httpPort , httpsPort ] ) => {
174
+ Promise . all ( [ findFreePort ( ) , findFreePort ( ) , findPackageTars ( ) ] )
175
+ . then ( async ( [ httpPort , httpsPort , packageTars ] ) => {
167
176
setGlobalVariable ( 'package-registry' , 'http://localhost:' + httpPort ) ;
168
177
setGlobalVariable ( 'package-secure-registry' , 'http://localhost:' + httpsPort ) ;
178
+ setGlobalVariable ( 'package-tars' , packageTars ) ;
169
179
170
180
// NPM registries for the lifetime of the test execution
171
181
const registryProcess = await createNpmRegistry ( httpPort , httpPort ) ;
@@ -308,3 +318,23 @@ function printFooter(testName: string, type: 'setup' | 'initializer' | 'test', s
308
318
) ;
309
319
console . log ( '' ) ;
310
320
}
321
+
322
+ // Collect the packages passed as arguments and return as {package-name => pkg-path}
323
+ async function findPackageTars ( ) : Promise < { [ pkg : string ] : PkgInfo } > {
324
+ const pkgs : string [ ] = ( getGlobalVariable ( 'argv' ) . package as string [ ] ) . flatMap ( ( p ) =>
325
+ glob . sync ( p , { realpath : true } ) ,
326
+ ) ;
327
+
328
+ const pkgJsons = await Promise . all ( pkgs . map ( ( pkg ) => extractFile ( pkg , './package/package.json' ) ) ) ;
329
+
330
+ return pkgs . reduce ( ( all , pkg , i ) => {
331
+ const json = pkgJsons [ i ] . toString ( 'utf8' ) ;
332
+ const { name, version } = JSON . parse ( json ) ;
333
+ if ( ! name ) {
334
+ throw new Error ( `Package ${ pkg } - package.json name/version not found` ) ;
335
+ }
336
+
337
+ all [ name ] = { path : realpathSync ( pkg ) , name, version } ;
338
+ return all ;
339
+ } , { } as { [ pkg : string ] : PkgInfo } ) ;
340
+ }
0 commit comments