|
| 1 | +#!/usr/bin/env node |
| 2 | +/** |
| 3 | + * Usage: |
| 4 | + * test-npm-package.js [--install] [--rebuild] <source> <test-arg>+ |
| 5 | + * |
| 6 | + * Everything after the <source> directory gets passed to `npm run` to build |
| 7 | + * the test command. |
| 8 | + * |
| 9 | + * If `--install` is passed, we'll run a full `npm install` before running the |
| 10 | + * test suite. Same for `--rebuild` and `npm rebuild`. |
| 11 | + * |
| 12 | + * We always use the node used to spawn this script and the `npm` version |
| 13 | + * bundled in `deps/npm`. |
| 14 | + * |
| 15 | + * If an additional `--logfile=<filename>` option is passed before `<source>`, |
| 16 | + * the stdout output of the test script will be written to that file. |
| 17 | + */ |
| 18 | +'use strict'; |
| 19 | +const { spawn, spawnSync } = require('child_process'); |
| 20 | +const { createHash } = require('crypto'); |
| 21 | +const { createWriteStream, mkdirSync, rmdirSync } = require('fs'); |
| 22 | +const path = require('path'); |
| 23 | + |
| 24 | +const common = require('../test/common'); |
| 25 | + |
| 26 | +const projectDir = path.resolve(__dirname, '..'); |
| 27 | +const npmBin = path.join(projectDir, 'deps', 'npm', 'cli.js'); |
| 28 | +const nodePath = path.dirname(process.execPath); |
| 29 | + |
| 30 | +function spawnCopyDeepSync(source, destination) { |
| 31 | + if (common.isWindows) { |
| 32 | + mkdirSync(destination); // prevent interactive prompt |
| 33 | + return spawnSync('xcopy.exe', ['/E', source, destination]); |
| 34 | + } else { |
| 35 | + return spawnSync('cp', ['-r', `${source}/`, destination]); |
| 36 | + } |
| 37 | +} |
| 38 | + |
| 39 | +function runNPMPackageTests({ srcDir, install, rebuild, testArgs, logfile }) { |
| 40 | + // Make sure we don't conflict with concurrent test runs |
| 41 | + const srcHash = createHash('md5').update(srcDir).digest('hex'); |
| 42 | + common.tmpDir = common.tmpDir + '.npm.' + srcHash; |
| 43 | + common.refreshTmpDir(); |
| 44 | + |
| 45 | + const tmpDir = common.tmpDir; |
| 46 | + const npmCache = path.join(tmpDir, 'npm-cache'); |
| 47 | + const npmPrefix = path.join(tmpDir, 'npm-prefix'); |
| 48 | + const npmTmp = path.join(tmpDir, 'npm-tmp'); |
| 49 | + const npmUserconfig = path.join(tmpDir, 'npm-userconfig'); |
| 50 | + const pkgDir = path.join(tmpDir, 'pkg'); |
| 51 | + |
| 52 | + spawnCopyDeepSync(srcDir, pkgDir); |
| 53 | + |
| 54 | + const npmOptions = { |
| 55 | + cwd: pkgDir, |
| 56 | + env: Object.assign({}, process.env, { |
| 57 | + 'npm_config_cache': npmCache, |
| 58 | + 'npm_config_prefix': npmPrefix, |
| 59 | + 'npm_config_tmp': npmTmp, |
| 60 | + 'npm_config_userconfig': npmUserconfig, |
| 61 | + }), |
| 62 | + stdio: 'inherit', |
| 63 | + }; |
| 64 | + |
| 65 | + if (common.isWindows) { |
| 66 | + npmOptions.env.home = tmpDir; |
| 67 | + npmOptions.env.Path = `${nodePath};${process.env.Path}`; |
| 68 | + } else { |
| 69 | + npmOptions.env.HOME = tmpDir; |
| 70 | + npmOptions.env.PATH = `${nodePath}:${process.env.PATH}`; |
| 71 | + } |
| 72 | + |
| 73 | + if (rebuild) { |
| 74 | + spawnSync(process.execPath, [ |
| 75 | + npmBin, |
| 76 | + 'rebuild', |
| 77 | + ], npmOptions); |
| 78 | + } |
| 79 | + |
| 80 | + if (install) { |
| 81 | + spawnSync(process.execPath, [ |
| 82 | + npmBin, |
| 83 | + 'install', |
| 84 | + '--ignore-scripts', |
| 85 | + ], npmOptions); |
| 86 | + } |
| 87 | + |
| 88 | + const testChild = spawn(process.execPath, [ |
| 89 | + npmBin, |
| 90 | + '--silent', |
| 91 | + 'run', |
| 92 | + ...testArgs, |
| 93 | + ], Object.assign({}, npmOptions, { stdio: 'pipe' })); |
| 94 | + |
| 95 | + testChild.stdout.pipe(process.stdout); |
| 96 | + testChild.stderr.pipe(process.stderr); |
| 97 | + |
| 98 | + if (logfile) { |
| 99 | + const logStream = createWriteStream(logfile); |
| 100 | + testChild.stdout.pipe(logStream); |
| 101 | + } |
| 102 | + |
| 103 | + testChild.on('exit', () => { |
| 104 | + common.refreshTmpDir(); |
| 105 | + rmdirSync(tmpDir); |
| 106 | + }); |
| 107 | +} |
| 108 | + |
| 109 | +function parseArgs(args) { |
| 110 | + let srcDir; |
| 111 | + let rebuild = false; |
| 112 | + let install = false; |
| 113 | + let logfile = null; |
| 114 | + const testArgs = []; |
| 115 | + args.forEach((arg) => { |
| 116 | + if (srcDir) { |
| 117 | + testArgs.push(arg); |
| 118 | + return; |
| 119 | + } |
| 120 | + |
| 121 | + if (arg === '--install') { |
| 122 | + install = true; |
| 123 | + } else if (arg === '--rebuild') { |
| 124 | + rebuild = true; |
| 125 | + } else if (arg[0] !== '-') { |
| 126 | + srcDir = path.resolve(projectDir, arg); |
| 127 | + } else if (arg.startsWith('--logfile=')) { |
| 128 | + logfile = path.resolve(projectDir, arg.slice('--logfile='.length)); |
| 129 | + } else { |
| 130 | + throw new Error(`Unrecognized option ${arg}`); |
| 131 | + } |
| 132 | + }); |
| 133 | + if (!srcDir) { |
| 134 | + throw new Error('Expected a source directory'); |
| 135 | + } |
| 136 | + return { srcDir, install, rebuild, testArgs, logfile }; |
| 137 | +} |
| 138 | + |
| 139 | +runNPMPackageTests(parseArgs(process.argv.slice(2))); |
0 commit comments