This repository has been archived by the owner on Aug 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
config: only send token to registry hosts
- Loading branch information
Showing
7 changed files
with
268 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
var resolve = require('path').resolve | ||
var writeFileSync = require('graceful-fs').writeFileSync | ||
|
||
var mkdirp = require('mkdirp') | ||
var mr = require('npm-registry-mock') | ||
var osenv = require('osenv') | ||
var rimraf = require('rimraf') | ||
var test = require('tap').test | ||
|
||
var common = require('../common-tap.js') | ||
var toNerfDart = require('../../lib/config/nerf-dart.js') | ||
|
||
var pkg = resolve(__dirname, 'install-bearer-check') | ||
var outfile = resolve(pkg, '_npmrc') | ||
var modules = resolve(pkg, 'node_modules') | ||
var tarballPath = '/scoped-underscore/-/scoped-underscore-1.3.1.tgz' | ||
// needs to be a different hostname to verify tokens (not) being sent correctly | ||
var tarballURL = 'http://lvh.me:' + common.port + tarballPath | ||
var tarball = resolve(__dirname, '../fixtures/scoped-underscore-1.3.1.tgz') | ||
|
||
var server | ||
|
||
var EXEC_OPTS = { cwd: pkg } | ||
|
||
function mocks (server) { | ||
var auth = 'Bearer 0xabad1dea' | ||
server.get(tarballPath, { authorization: auth }).reply(403, { | ||
error: 'token leakage', | ||
reason: 'This token should not be sent.' | ||
}) | ||
server.get(tarballPath).replyWithFile(200, tarball) | ||
} | ||
|
||
test('setup', function (t) { | ||
mr({ port: common.port, plugin: mocks }, function (er, s) { | ||
server = s | ||
t.ok(s, 'set up mock registry') | ||
setup() | ||
t.end() | ||
}) | ||
}) | ||
|
||
test('authed npm install with tarball not on registry', function (t) { | ||
common.npm( | ||
[ | ||
'install', | ||
'--loglevel', 'silent', | ||
'--json', | ||
'--fetch-retries', 0, | ||
'--userconfig', outfile | ||
], | ||
EXEC_OPTS, | ||
function (err, code, stdout, stderr) { | ||
t.ifError(err, 'test runner executed without error') | ||
t.equal(code, 0, 'npm install exited OK') | ||
t.notOk(stderr, 'no output on stderr') | ||
try { | ||
var results = JSON.parse(stdout) | ||
} catch (ex) { | ||
console.error('#', ex) | ||
t.ifError(ex, 'stdout was valid JSON') | ||
} | ||
|
||
if (results) { | ||
var installedversion = { | ||
'name': '@scoped/underscore', | ||
'version': '1.3.1', | ||
'from': 'http://lvh.me:1337/scoped-underscore/-/scoped-underscore-1.3.1.tgz', | ||
'dependencies': {} | ||
} | ||
t.isDeeply(results[0], installedversion, '@scoped/underscore installed') | ||
} | ||
|
||
t.end() | ||
} | ||
) | ||
}) | ||
|
||
test('cleanup', function (t) { | ||
server.close() | ||
cleanup() | ||
t.end() | ||
}) | ||
|
||
var contents = '@scoped:registry=' + common.registry + '\n' + | ||
toNerfDart(common.registry) + ':_authToken=0xabad1dea\n' | ||
|
||
var json = { | ||
name: 'test-package-install', | ||
version: '1.0.0' | ||
} | ||
|
||
var shrinkwrap = { | ||
name: 'test-package-install', | ||
version: '1.0.0', | ||
dependencies: { | ||
'@scoped/underscore': { | ||
resolved: tarballURL, | ||
from: '>=1.3.1 <2', | ||
version: '1.3.1' | ||
} | ||
} | ||
} | ||
|
||
function setup () { | ||
cleanup() | ||
mkdirp.sync(modules) | ||
writeFileSync(resolve(pkg, 'package.json'), JSON.stringify(json, null, 2) + '\n') | ||
writeFileSync(outfile, contents) | ||
writeFileSync( | ||
resolve(pkg, 'npm-shrinkwrap.json'), | ||
JSON.stringify(shrinkwrap, null, 2) + '\n' | ||
) | ||
} | ||
|
||
function cleanup () { | ||
process.chdir(osenv.tmpdir()) | ||
rimraf.sync(pkg) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters