mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
var test = require('tap').test
|
|
var fs = require('fs')
|
|
var pkg = process.env.npm_config_tmp || '/tmp'
|
|
pkg += '/npm-test-publish-config'
|
|
|
|
require('mkdirp').sync(pkg)
|
|
|
|
fs.writeFileSync(pkg + '/package.json', JSON.stringify({
|
|
name: 'npm-test-publish-config',
|
|
version: '1.2.3',
|
|
publishConfig: { registry: 'http://localhost:13370' }
|
|
}), 'utf8')
|
|
|
|
var spawn = require('child_process').spawn
|
|
var npm = require.resolve('../../bin/npm-cli.js')
|
|
var node = process.execPath
|
|
|
|
console.error('pkg=%j', pkg)
|
|
|
|
test(function (t) {
|
|
var child
|
|
require('http').createServer(function (req, res) {
|
|
t.pass('got request on the fakey fake registry')
|
|
t.end()
|
|
this.close()
|
|
res.statusCode = 500
|
|
res.end('{"error":"sshhh. naptime nao. \\^O^/ <(YAWWWWN!)"}')
|
|
child.kill()
|
|
}).listen(13370, function () {
|
|
t.pass('server is listening')
|
|
|
|
// don't much care about listening to the child's results
|
|
// just wanna make sure it hits the server we just set up.
|
|
//
|
|
// there are plenty of other tests to verify that publish
|
|
// itself functions normally.
|
|
child = spawn(node, [npm, 'publish'], {
|
|
cwd: pkg
|
|
})
|
|
})
|
|
})
|
|
|