summaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/test/tap/bitbucket-https-url-with-creds.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/deps/npm/test/tap/bitbucket-https-url-with-creds.js')
-rw-r--r--deps/node/deps/npm/test/tap/bitbucket-https-url-with-creds.js82
1 files changed, 0 insertions, 82 deletions
diff --git a/deps/node/deps/npm/test/tap/bitbucket-https-url-with-creds.js b/deps/node/deps/npm/test/tap/bitbucket-https-url-with-creds.js
deleted file mode 100644
index ae87d858..00000000
--- a/deps/node/deps/npm/test/tap/bitbucket-https-url-with-creds.js
+++ /dev/null
@@ -1,82 +0,0 @@
-'use strict'
-
-const BB = require('bluebird')
-
-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', {
- 'pacote/lib/util/git': {
- 'revs': (repo, opts) => {
- return BB.resolve().then(() => {
- var cloneUrl = cloneUrls.shift()
- if (cloneUrl) {
- t.is(repo, cloneUrl[0], cloneUrl[1])
- } else {
- t.fail('too many attempts to clone')
- }
- throw new Error('git.revs mock fails on purpose')
- })
- }
- }
- })
-
- 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 (err) {
- t.match(err, /mock fails on purpose/, '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)
-}