���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /home/real/node-v13.0.1/deps/npm/test/tap/ |
// verify that prepare runs on pack and publish var common = require('../common-tap') var test = require('tap').test var fs = require('graceful-fs') var join = require('path').join var mkdirp = require('mkdirp') var rimraf = require('rimraf') var pkg = common.pkg var tmp = join(pkg, 'tmp') var cache = common.cache test('setup', function (t) { var n = 0 cleanup() mkdirp(pkg, then()) mkdirp(cache, then()) mkdirp(tmp, then()) function then () { n++ return function (er) { if (er) throw er if (--n === 0) next() } } function next () { fs.writeFile(join(pkg, 'package.json'), JSON.stringify({ name: 'npm-test-prepare', version: '1.2.5', scripts: { prepare: 'echo ok' } }), 'ascii', function (er) { if (er) throw er t.pass('setup done') t.end() }) } }) test('test', function (t) { var env = { 'npm_config_cache': cache, 'npm_config_tmp': tmp, 'npm_config_prefix': pkg, 'npm_config_global': 'false' } for (var i in process.env) { if (!/^npm_config_/.test(i)) { env[i] = process.env[i] } } common.npm([ 'pack', '--loglevel', 'warn' ], { cwd: pkg, env: env }, function (err, code, stdout, stderr) { t.equal(code, 0, 'pack finished successfully') t.ifErr(err, 'pack finished successfully') t.notOk(stderr, 'got stderr data:' + JSON.stringify('' + stderr)) var c = stdout.trim() var regex = new RegExp( '> [email protected] prepare [^\\r\\n]+\\r?\\n' + '> echo ok\\r?\\n' + '\\r?\\n' + 'ok\\r?\\n' + 'npm-test-prepare-1.2.5.tgz', 'ig' ) t.match(c, regex) t.end() }) }) test('cleanup', function (t) { cleanup() t.pass('cleaned up') t.end() }) function cleanup () { rimraf.sync(pkg) }