-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
logout: Fix npm-logout to remove scope config if specified
Fixes: #10529 Credit: @wyze Reviewed-By: @iarna PR-URL: npm/npm#11417
- Loading branch information
Showing
2 changed files
with
82 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
var fs = require('fs') | ||
var path = require('path') | ||
|
||
var mkdirp = require('mkdirp') | ||
var mr = require('npm-registry-mock') | ||
var rimraf = require('rimraf') | ||
var test = require('tap').test | ||
|
||
var common = require('../common-tap.js') | ||
|
||
var pkg = path.resolve(__dirname, 'logout') | ||
var outfile = path.join(pkg, '_npmrc') | ||
var opts = { cwd: pkg } | ||
|
||
var contents = function () {/* | ||
foo=boo | ||
@bar:registry=http://localhost:1337 | ||
//localhost:1337/:_authToken=glarb | ||
*/}.toString().split('\n').slice(1, -1).join('\n') | ||
|
||
function mocks (server) { | ||
server.delete('/-/user/token/glarb') | ||
.reply(200, {}) | ||
} | ||
|
||
test('setup', function (t) { | ||
cleanup() | ||
setup() | ||
t.end() | ||
}) | ||
|
||
test('npm logout', function (t) { | ||
mr({ port: common.port, plugin: mocks }, function (err, s) { | ||
if (err) throw err | ||
|
||
common.npm( | ||
[ | ||
'logout', | ||
'--registry', common.registry, | ||
'--scope', '@bar', | ||
'--loglevel', 'silent', | ||
'--userconfig', outfile | ||
], | ||
opts, | ||
function (err, code) { | ||
t.ifError(err, 'no error output') | ||
t.notOk(code, 'exited OK') | ||
|
||
var config = fs.readFileSync(outfile, 'utf8') | ||
t.equal(config, 'foo=boo\n', 'creds gone') | ||
s.close() | ||
t.end() | ||
} | ||
) | ||
}) | ||
}) | ||
|
||
test('cleanup', function (t) { | ||
cleanup() | ||
t.end() | ||
}) | ||
|
||
function setup () { | ||
mkdirp.sync(pkg) | ||
fs.writeFileSync(outfile, contents) | ||
} | ||
|
||
function cleanup () { | ||
rimraf.sync(pkg) | ||
} |