mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-04 20:40:07 +02:00
update packages to latest version
This commit is contained in:
80
node_modules/npm/test/tap/bitbucket-https-url-with-creds.js
generated
vendored
Normal file
80
node_modules/npm/test/tap/bitbucket-https-url-with-creds.js
generated
vendored
Normal file
@@ -0,0 +1,80 @@
|
||||
'use strict'
|
||||
var fs = require('graceful-fs')
|
||||
var path = require('path')
|
||||
|
||||
var mkdirp = require('mkdirp')
|
||||
var osenv = require('osenv')
|
||||
var requireInject = require('require-inject')
|
||||
var rimraf = require('rimraf')
|
||||
var test = require('tap').test
|
||||
|
||||
var common = require('../common-tap.js')
|
||||
|
||||
var pkg = path.resolve(__dirname, 'bitbucket-https-url-with-creds')
|
||||
|
||||
var json = {
|
||||
name: 'bitbucket-https-url-with-creds',
|
||||
version: '0.0.0'
|
||||
}
|
||||
|
||||
test('setup', function (t) {
|
||||
setup()
|
||||
t.end()
|
||||
})
|
||||
|
||||
test('bitbucket-https-url-with-creds', function (t) {
|
||||
var cloneUrls = [
|
||||
['https://user:pass@bitbucket.org/foo/private.git', 'Bitbucket URLs with passwords try only that.']
|
||||
]
|
||||
|
||||
var npm = requireInject.installGlobally('../../lib/npm.js', {
|
||||
'child_process': {
|
||||
'execFile': function (cmd, args, options, cb) {
|
||||
process.nextTick(function () {
|
||||
if (args[0] !== 'clone') return cb(null, '', '')
|
||||
var cloneUrl = cloneUrls.shift()
|
||||
if (cloneUrl) {
|
||||
t.is(args[3], cloneUrl[0], cloneUrl[1])
|
||||
} else {
|
||||
t.fail('too many attempts to clone')
|
||||
}
|
||||
cb(new Error())
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
var opts = {
|
||||
cache: path.resolve(pkg, 'cache'),
|
||||
prefix: pkg,
|
||||
registry: common.registry,
|
||||
loglevel: 'silent'
|
||||
}
|
||||
npm.load(opts, function (er) {
|
||||
t.ifError(er, 'npm loaded without error')
|
||||
npm.commands.install(['git+https://user:pass@bitbucket.org/foo/private.git'], function (er) {
|
||||
t.ok(er, 'mocked install failed as expected')
|
||||
t.end()
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
test('cleanup', function (t) {
|
||||
cleanup()
|
||||
t.end()
|
||||
})
|
||||
|
||||
function setup () {
|
||||
cleanup()
|
||||
mkdirp.sync(pkg)
|
||||
fs.writeFileSync(
|
||||
path.join(pkg, 'package.json'),
|
||||
JSON.stringify(json, null, 2)
|
||||
)
|
||||
process.chdir(pkg)
|
||||
}
|
||||
|
||||
function cleanup () {
|
||||
process.chdir(osenv.tmpdir())
|
||||
rimraf.sync(pkg)
|
||||
}
|
Reference in New Issue
Block a user