summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/add-remote-git-get-resolved.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/test/tap/add-remote-git-get-resolved.js')
-rw-r--r--deps/npm/test/tap/add-remote-git-get-resolved.js73
1 files changed, 51 insertions, 22 deletions
diff --git a/deps/npm/test/tap/add-remote-git-get-resolved.js b/deps/npm/test/tap/add-remote-git-get-resolved.js
index 4a4f0a5fe..0bd0f29eb 100644
--- a/deps/npm/test/tap/add-remote-git-get-resolved.js
+++ b/deps/npm/test/tap/add-remote-git-get-resolved.js
@@ -4,6 +4,17 @@ var test = require('tap').test
var npm = require('../../lib/npm.js')
var common = require('../common-tap.js')
+var normalizeGitUrl = require('normalize-git-url')
+var getResolved = null
+
+/**
+ * Note: This is here because `normalizeGitUrl` is usually called
+ * before getResolved is, and receives *that* URL.
+ */
+function tryGetResolved(uri, treeish) {
+ return getResolved(normalizeGitUrl(uri).url, treeish)
+}
+
test('setup', function (t) {
var opts = {
registry: common.registry,
@@ -11,14 +22,12 @@ test('setup', function (t) {
}
npm.load(opts, function (er) {
t.ifError(er, 'npm loaded without error')
-
+ getResolved = require('../../lib/cache/add-remote-git.js').getResolved
t.end()
})
})
test('add-remote-git#get-resolved git: passthru', function (t) {
- var getResolved = require('../../lib/cache/add-remote-git.js').getResolved
-
verify('git:github.com/foo/repo')
verify('git:github.com/foo/repo.git')
verify('git://github.com/foo/repo#decadacefadabade')
@@ -26,7 +35,7 @@ test('add-remote-git#get-resolved git: passthru', function (t) {
function verify (uri) {
t.equal(
- getResolved(uri, 'decadacefadabade'),
+ tryGetResolved(uri, 'decadacefadabade'),
'git://github.com/foo/repo.git#decadacefadabade',
uri + ' normalized to canonical form git://github.com/foo/repo.git#decadacefadabade'
)
@@ -35,8 +44,6 @@ test('add-remote-git#get-resolved git: passthru', function (t) {
})
test('add-remote-git#get-resolved SSH', function (t) {
- var getResolved = require('../../lib/cache/add-remote-git.js').getResolved
-
t.comment('tests for https://github.com/npm/npm/issues/7961')
verify('git@github.com:foo/repo')
verify('git@github.com:foo/repo#master')
@@ -45,7 +52,7 @@ test('add-remote-git#get-resolved SSH', function (t) {
function verify (uri) {
t.equal(
- getResolved(uri, 'decadacefadabade'),
+ tryGetResolved(uri, 'decadacefadabade'),
'git+ssh://git@github.com/foo/repo.git#decadacefadabade',
uri + ' normalized to canonical form git+ssh://git@github.com/foo/repo.git#decadacefadabade'
)
@@ -54,16 +61,20 @@ test('add-remote-git#get-resolved SSH', function (t) {
})
test('add-remote-git#get-resolved HTTPS', function (t) {
- var getResolved = require('../../lib/cache/add-remote-git.js').getResolved
-
verify('https://github.com/foo/repo')
verify('https://github.com/foo/repo#master')
verify('git+https://github.com/foo/repo.git#master')
verify('git+https://github.com/foo/repo#decadacefadabade')
+ // DEPRECATED
+ // this is an invalid URL but we normalize it
+ // anyway. Users shouldn't use this in the future. See note
+ // below for how this affected non-hosted URLs.
+ // See https://github.com/npm/npm/issues/8881
+ verify('git+https://github.com:foo/repo.git#master')
function verify (uri) {
t.equal(
- getResolved(uri, 'decadacefadabade'),
+ tryGetResolved(uri, 'decadacefadabade'),
'git+https://github.com/foo/repo.git#decadacefadabade',
uri + ' normalized to canonical form git+https://github.com/foo/repo.git#decadacefadabade'
)
@@ -72,30 +83,48 @@ test('add-remote-git#get-resolved HTTPS', function (t) {
})
test('add-remote-git#get-resolved edge cases', function (t) {
- var getResolved = require('../../lib/cache/add-remote-git.js').getResolved
- t.notOk(
- getResolved('git@bananaboat.com:galbi.git', 'decadacefadabade'),
- 'non-hosted Git SSH non-URI strings are invalid'
+ t.equal(
+ tryGetResolved('git+ssh://user@bananaboat.com:galbi/blah.git', 'decadacefadabade'),
+ 'git+ssh://user@bananaboat.com:galbi/blah.git#decadacefadabade',
+ 'don\'t break non-hosted scp-style locations'
+ )
+
+ t.equal(
+ tryGetResolved('git+ssh://bananaboat:galbi/blah', 'decadacefadabade'),
+ 'git+ssh://bananaboat:galbi/blah#decadacefadabade',
+ 'don\'t break non-hosted scp-style locations'
)
+ // DEPRECATED
+ // When we were normalizing all git URIs, git+https: was being
+ // automatically converted to ssh:. Some users were relying
+ // on this funky behavior, so after removing the aggressive
+ // normalization from non-hosted URIs, we brought this back.
+ // See https://github.com/npm/npm/issues/8881
t.equal(
- getResolved('git+ssh://git.bananaboat.net/foo', 'decadacefadabade'),
+ tryGetResolved('git+https://bananaboat:galbi/blah', 'decadacefadabade'),
+ 'git+https://bananaboat/galbi/blah#decadacefadabade',
+ 'don\'t break non-hosted scp-style locations'
+ )
+
+ t.equal(
+ tryGetResolved('git+ssh://git.bananaboat.net/foo', 'decadacefadabade'),
'git+ssh://git.bananaboat.net/foo#decadacefadabade',
'don\'t break non-hosted SSH URLs'
)
t.equal(
- getResolved('git://gitbub.com/foo/bar.git', 'decadacefadabade'),
- 'git://gitbub.com/foo/bar.git#decadacefadabade',
- 'don\'t break non-hosted git: URLs'
+ tryGetResolved('git+ssh://git.bananaboat.net:/foo', 'decadacefadabade'),
+ 'git+ssh://git.bananaboat.net:/foo#decadacefadabade',
+ 'don\'t break non-hosted SSH URLs'
)
- t.comment('test for https://github.com/npm/npm/issues/3224')
t.equal(
- getResolved('git+ssh://git@git.example.com:my-repo.git#9abe82cb339a70065e75300f62b742622774693c', 'decadacefadabade'),
- 'git+ssh://git@git.example.com:my-repo.git#decadacefadabade',
- 'preserve weird colon in semi-standard ssh:// URLs'
+ tryGetResolved('git://gitbub.com/foo/bar.git', 'decadacefadabade'),
+ 'git://gitbub.com/foo/bar.git#decadacefadabade',
+ 'don\'t break non-hosted git: URLs'
)
+
t.end()
})