mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.4 KiB
89 lines
2.4 KiB
var fs = require("fs")
|
|
var path = require("path")
|
|
var mkdirp = require("mkdirp")
|
|
var rimraf = require("rimraf")
|
|
var mr = require("npm-registry-mock")
|
|
|
|
var test = require("tap").test
|
|
var common = require("../common-tap.js")
|
|
|
|
var opts = {cwd : __dirname}
|
|
var pkg = path.resolve(__dirname, "adduser-legacy-auth")
|
|
var outfile = path.resolve(pkg, "_npmrc")
|
|
|
|
var contents = "_auth=" + new Buffer("u:x").toString("base64") + "\n" +
|
|
"email=u@p.me\n"
|
|
|
|
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(409, {"error": "user exists"})
|
|
server.get("/-/user/org.couchdb.user:u?write=true")
|
|
.reply(200, {_rev : "3-deadcafebabebeef"})
|
|
server.put("/-/user/org.couchdb.user:u/-rev/3-deadcafebabebeef", "auth", {"authorization" : "Basic dTpw"})
|
|
.reply(201, {username : "u", password : "p", email : "u@p.me"})
|
|
}
|
|
|
|
test("setup", function (t) {
|
|
mkdirp(pkg, function (er) {
|
|
t.ifError(er, pkg + " made successfully")
|
|
|
|
fs.writeFile(outfile, contents, function (er) {
|
|
t.ifError(er, "wrote legacy config")
|
|
|
|
t.end()
|
|
})
|
|
})
|
|
})
|
|
|
|
test("npm login", function (t) {
|
|
mr({port : common.port, plugin : mocks}, function (er, s) {
|
|
var runner = common.npm(
|
|
[
|
|
"login",
|
|
"--registry", common.registry,
|
|
"--loglevel", "silly",
|
|
"--userconfig", outfile
|
|
],
|
|
opts,
|
|
function (err, code) {
|
|
t.notOk(code, "exited OK")
|
|
t.notOk(err, "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()
|
|
})
|
|
})
|
|
|
|
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 })
|
|
})
|
|
})
|
|
|
|
test("cleanup", function (t) {
|
|
rimraf.sync(outfile)
|
|
t.pass("cleaned up")
|
|
t.end()
|
|
})
|
|
|