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.
support saving --always-auth on adduser
- Loading branch information
Showing
3 changed files
with
177 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
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,157 @@ | ||
var fs = require("fs") | ||
var path = require("path") | ||
var spawn = require("child_process").spawn | ||
var rimraf = require("rimraf") | ||
var mr = require("npm-registry-mock") | ||
|
||
var test = require("tap").test | ||
var common = require("../common-tap.js") | ||
|
||
var node = process.execPath | ||
var npm = require.resolve("../../bin/npm-cli.js") | ||
var opts = {cwd : __dirname} | ||
var outfile = path.resolve(__dirname, "_npmrc") | ||
var responses = { | ||
"Username": "u\n", | ||
"Password": "p\n", | ||
"Email": "u@p.me\n" | ||
} | ||
|
||
function mocks(server) { | ||
server.filteringRequestBody(function (r) { | ||
if (r.match(/\"_id\":\"org\.couchdb\.user:u\"/)) { | ||
return "auth" | ||
} | ||
}) | ||
server.put("/-/user/org.couchdb.user:u", "auth") | ||
.reply(201, {username : "u", password : "p", email : "u@p.me"}) | ||
} | ||
|
||
test("npm login", function (t) { | ||
mr({port : common.port, mocks : mocks}, function (s) { | ||
var runner = spawn( | ||
node, | ||
[ | ||
npm, | ||
"login", | ||
"--registry=" + common.registry, | ||
"--loglevel=silent", | ||
"--userconfig=" + outfile | ||
], | ||
opts | ||
) | ||
|
||
var o = "", e = "", remaining = Object.keys(responses).length | ||
runner.stdout.on("data", function (chunk) { | ||
remaining-- | ||
o += chunk | ||
|
||
var label = chunk.toString("utf8").split(":")[0] | ||
runner.stdin.write(responses[label]) | ||
|
||
if (remaining === 0) runner.stdin.end() | ||
}) | ||
runner.stderr.on("data", function (chunk) { e += chunk }) | ||
|
||
runner.on("close", function (code) { | ||
t.notOk(code, "exited OK") | ||
t.notOk(e, "no error output") | ||
var config = fs.readFileSync(outfile, "utf8") | ||
t.like(config, /:always-auth=false/, "always-auth is scoped and false (by default)") | ||
s.close() | ||
rimraf(outfile, function (err) { | ||
t.ifError(err, "removed config file OK") | ||
t.end() | ||
}) | ||
}) | ||
}) | ||
}) | ||
|
||
test("npm login --always-auth", function (t) { | ||
mr({port : common.port, mocks : mocks}, function (s) { | ||
var runner = spawn( | ||
node, | ||
[ | ||
npm, | ||
"login", | ||
"--registry=" + common.registry, | ||
"--loglevel=silent", | ||
"--userconfig=" + outfile, | ||
"--always-auth" | ||
], | ||
opts | ||
) | ||
|
||
var o = "", e = "", remaining = Object.keys(responses).length | ||
runner.stdout.on("data", function (chunk) { | ||
remaining-- | ||
o += chunk | ||
|
||
var label = chunk.toString("utf8").split(":")[0] | ||
runner.stdin.write(responses[label]) | ||
|
||
if (remaining === 0) runner.stdin.end() | ||
}) | ||
runner.stderr.on("data", function (chunk) { e += chunk }) | ||
|
||
runner.on("close", function (code) { | ||
t.notOk(code, "exited OK") | ||
t.notOk(e, "no error output") | ||
var config = fs.readFileSync(outfile, "utf8") | ||
t.like(config, /:always-auth=true/, "always-auth is scoped and true") | ||
s.close() | ||
rimraf(outfile, function (err) { | ||
t.ifError(err, "removed config file OK") | ||
t.end() | ||
}) | ||
}) | ||
}) | ||
}) | ||
|
||
test("npm login --no-always-auth", function (t) { | ||
mr({port : common.port, mocks : mocks}, function (s) { | ||
var runner = spawn( | ||
node, | ||
[ | ||
npm, | ||
"login", | ||
"--registry=" + common.registry, | ||
"--loglevel=silent", | ||
"--userconfig=" + outfile, | ||
"--no-always-auth" | ||
], | ||
opts | ||
) | ||
|
||
var o = "", e = "", remaining = Object.keys(responses).length | ||
runner.stdout.on("data", function (chunk) { | ||
remaining-- | ||
o += chunk | ||
|
||
var label = chunk.toString("utf8").split(":")[0] | ||
runner.stdin.write(responses[label]) | ||
|
||
if (remaining === 0) runner.stdin.end() | ||
}) | ||
runner.stderr.on("data", function (chunk) { e += chunk }) | ||
|
||
runner.on("close", function (code) { | ||
t.notOk(code, "exited OK") | ||
t.notOk(e, "no error output") | ||
var config = fs.readFileSync(outfile, "utf8") | ||
t.like(config, /:always-auth=false/, "always-auth is scoped and false") | ||
s.close() | ||
rimraf(outfile, function (err) { | ||
t.ifError(err, "removed config file OK") | ||
t.end() | ||
}) | ||
}) | ||
}) | ||
}) | ||
|
||
|
||
test("cleanup", function (t) { | ||
rimraf.sync(outfile) | ||
t.pass("cleaned up") | ||
t.end() | ||
}) |