mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Increase unit test coverage of auth code
This commit is contained in:
parent
b2aae93fa6
commit
fbf7ee50eb
@ -61,7 +61,7 @@ RED.user = (function() {
|
|||||||
$(".login-spinner").show();
|
$(".login-spinner").show();
|
||||||
|
|
||||||
var body = {
|
var body = {
|
||||||
client_id: "node-red-admin",
|
client_id: "node-red-editor",
|
||||||
grant_type: "password",
|
grant_type: "password",
|
||||||
scope:"*"
|
scope:"*"
|
||||||
}
|
}
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
var when = require("when");
|
var when = require("when");
|
||||||
|
|
||||||
var clients = [
|
var clients = [
|
||||||
|
{id:"node-red-editor",secret:"not_available"},
|
||||||
{id:"node-red-admin",secret:"not_available"}
|
{id:"node-red-admin",secret:"not_available"}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -22,6 +22,8 @@ var Tokens = require("./tokens");
|
|||||||
var Users = require("./users");
|
var Users = require("./users");
|
||||||
|
|
||||||
var settings = require("../../settings");
|
var settings = require("../../settings");
|
||||||
|
var log = require("../../log");
|
||||||
|
|
||||||
|
|
||||||
passport.use(strategies.bearerStrategy.BearerStrategy);
|
passport.use(strategies.bearerStrategy.BearerStrategy);
|
||||||
passport.use(strategies.clientPasswordStrategy.ClientPasswordStrategy);
|
passport.use(strategies.clientPasswordStrategy.ClientPasswordStrategy);
|
||||||
@ -32,7 +34,10 @@ var server = oauth2orize.createServer();
|
|||||||
server.exchange(oauth2orize.exchange.password(strategies.passwordTokenExchange));
|
server.exchange(oauth2orize.exchange.password(strategies.passwordTokenExchange));
|
||||||
|
|
||||||
function init() {
|
function init() {
|
||||||
Users.init();
|
if (settings.adminAuth) {
|
||||||
|
Users.init(settings.adminAuth);
|
||||||
|
Tokens.init(settings)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function authenticate(req,res,next) {
|
function authenticate(req,res,next) {
|
||||||
@ -70,6 +75,7 @@ function login(req,res) {
|
|||||||
|
|
||||||
function revoke(req,res) {
|
function revoke(req,res) {
|
||||||
var token = req.body.token;
|
var token = req.body.token;
|
||||||
|
// TODO: audit log
|
||||||
Tokens.revoke(token).then(function() {
|
Tokens.revoke(token).then(function() {
|
||||||
res.send(200);
|
res.send(200);
|
||||||
});
|
});
|
||||||
@ -81,7 +87,13 @@ module.exports = {
|
|||||||
ensureClientSecret: ensureClientSecret,
|
ensureClientSecret: ensureClientSecret,
|
||||||
authenticateClient: authenticateClient,
|
authenticateClient: authenticateClient,
|
||||||
getToken: getToken,
|
getToken: getToken,
|
||||||
errorHandler: server.errorHandler(),
|
errorHandler: function(err,req,res,next) {
|
||||||
|
//TODO: standardize json response
|
||||||
|
//TODO: audit log statment
|
||||||
|
//console.log(err.stack);
|
||||||
|
//log.log({level:"audit",type:"auth",msg:err.toString()});
|
||||||
|
return server.errorHandler()(err,req,res,next);
|
||||||
|
},
|
||||||
login: login,
|
login: login,
|
||||||
revoke: revoke
|
revoke: revoke
|
||||||
}
|
}
|
||||||
|
@ -16,8 +16,8 @@
|
|||||||
|
|
||||||
var util = require('util');
|
var util = require('util');
|
||||||
|
|
||||||
var readRE = /^(.*)\.read$/
|
var readRE = /^((.+)\.)?read$/
|
||||||
var writeRE = /^(.*)\.write$/
|
var writeRE = /^((.+)\.)?write$/
|
||||||
|
|
||||||
function needsPermission(perm) {
|
function needsPermission(perm) {
|
||||||
return function(req,res,next) {
|
return function(req,res,next) {
|
||||||
|
@ -16,10 +16,11 @@
|
|||||||
|
|
||||||
var BearerStrategy = require('passport-http-bearer').Strategy;
|
var BearerStrategy = require('passport-http-bearer').Strategy;
|
||||||
var ClientPasswordStrategy = require('passport-oauth2-client-password').Strategy;
|
var ClientPasswordStrategy = require('passport-oauth2-client-password').Strategy;
|
||||||
var passport = require("passport");
|
|
||||||
|
|
||||||
|
var passport = require("passport");
|
||||||
var crypto = require("crypto");
|
var crypto = require("crypto");
|
||||||
var util = require("util");
|
var util = require("util");
|
||||||
|
|
||||||
var Tokens = require("./tokens");
|
var Tokens = require("./tokens");
|
||||||
var Users = require("./users");
|
var Users = require("./users");
|
||||||
var Clients = require("./clients");
|
var Clients = require("./clients");
|
||||||
@ -53,28 +54,52 @@ var clientPasswordStrategy = function(clientId, clientSecret, done) {
|
|||||||
}
|
}
|
||||||
clientPasswordStrategy.ClientPasswordStrategy = new ClientPasswordStrategy(clientPasswordStrategy);
|
clientPasswordStrategy.ClientPasswordStrategy = new ClientPasswordStrategy(clientPasswordStrategy);
|
||||||
|
|
||||||
var passwordTokenExchange = function(client, username, password, scope, done) {
|
var loginAttempts = [];
|
||||||
Users.authenticate(username,password).then(function(user) {
|
var loginSignUpWindow = 36000000; // 10 minutes
|
||||||
if (user) {
|
|
||||||
Tokens.create(username,client.id,scope).then(function(token) {
|
|
||||||
done(null,token);
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
done(null,false);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
var passwordTokenExchange = function(client, username, password, scope, done) {
|
||||||
|
var now = Date.now();
|
||||||
|
loginAttempts = loginAttempts.filter(function(logEntry) {
|
||||||
|
return logEntry.time + loginSignUpWindow > now;
|
||||||
|
});
|
||||||
|
loginAttempts.push({time:now, user:username});
|
||||||
|
var attemptCount = 0;
|
||||||
|
loginAttempts.forEach(function(logEntry) {
|
||||||
|
if (logEntry.user == username) {
|
||||||
|
attemptCount++;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (attemptCount > 5) {
|
||||||
|
// TODO: audit log
|
||||||
|
done(new Error("Too many login attempts. Wait 10 minutes and try again"),false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Users.authenticate(username,password).then(function(user) {
|
||||||
|
if (user) {
|
||||||
|
loginAttempts = loginAttempts.filter(function(logEntry) {
|
||||||
|
return logEntry.user !== username;
|
||||||
|
});
|
||||||
|
Tokens.create(username,client.id,scope).then(function(tokens) {
|
||||||
|
// TODO: audit log
|
||||||
|
done(null,tokens.accessToken);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
// TODO: audit log
|
||||||
|
done(null,false);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function AnonymousStrategy() {
|
function AnonymousStrategy() {
|
||||||
passport.Strategy.call(this);
|
passport.Strategy.call(this);
|
||||||
this.name = 'anon';
|
this.name = 'anon';
|
||||||
}
|
}
|
||||||
util.inherits(AnonymousStrategy, passport.Strategy);
|
util.inherits(AnonymousStrategy, passport.Strategy);
|
||||||
AnonymousStrategy.prototype.authenticate = function(req) {
|
AnonymousStrategy.prototype.authenticate = function(req) {
|
||||||
var authorization = req.headers['authorization'];
|
|
||||||
var self = this;
|
var self = this;
|
||||||
Users.anonymous().then(function(anon) {
|
Users.default().then(function(anon) {
|
||||||
if (anon) {
|
if (anon) {
|
||||||
self.success(anon);
|
self.success(anon);
|
||||||
} else {
|
} else {
|
||||||
|
@ -1,44 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright 2015 IBM Corp.
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
**/
|
|
||||||
|
|
||||||
var when = require("when");
|
|
||||||
|
|
||||||
function generateToken(length) {
|
|
||||||
var c = "ABCDEFGHIJKLMNOPQRSTUZWXYZabcdefghijklmnopqrstuvwxyz1234567890";
|
|
||||||
var token = [];
|
|
||||||
for (var i=0;i<length;i++) {
|
|
||||||
token.push(c[Math.floor(Math.random()*c.length)]);
|
|
||||||
}
|
|
||||||
return token.join("");
|
|
||||||
}
|
|
||||||
|
|
||||||
var tokens = {}
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
get: function(token) {
|
|
||||||
return when.resolve(tokens[token]);
|
|
||||||
},
|
|
||||||
create: function(user,client,scope) {
|
|
||||||
var token = generateToken(256);
|
|
||||||
tokens[token] = {user:user,client:client,scope:scope};
|
|
||||||
return when.resolve(token);
|
|
||||||
},
|
|
||||||
revoke: function(token) {
|
|
||||||
delete tokens[token];
|
|
||||||
return when.resolve();
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
|
81
red/api/auth/tokens/index.js
Normal file
81
red/api/auth/tokens/index.js
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
/**
|
||||||
|
* Copyright 2015 IBM Corp.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
**/
|
||||||
|
|
||||||
|
var when = require("when");
|
||||||
|
var Sessions;
|
||||||
|
|
||||||
|
function generateToken(length) {
|
||||||
|
var c = "ABCDEFGHIJKLMNOPQRSTUZWXYZabcdefghijklmnopqrstuvwxyz1234567890";
|
||||||
|
var token = [];
|
||||||
|
for (var i=0;i<length;i++) {
|
||||||
|
token.push(c[Math.floor(Math.random()*c.length)]);
|
||||||
|
}
|
||||||
|
return token.join("");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
var sessionModule;
|
||||||
|
|
||||||
|
function moduleSelector(aSettings) {
|
||||||
|
var toReturn;
|
||||||
|
if (aSettings.sessionStorageModule) {
|
||||||
|
if (typeof aSettings.sessionStorageModule === "string") {
|
||||||
|
// TODO: allow storage modules to be specified by absolute path
|
||||||
|
toReturn = require("./"+aSettings.sessionStorageModule);
|
||||||
|
} else {
|
||||||
|
toReturn = aSettings.sessionStorageModule;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
toReturn = require("./localfilesystem");
|
||||||
|
}
|
||||||
|
return toReturn;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
init: function(settings) {
|
||||||
|
sessionModule = moduleSelector(settings);
|
||||||
|
sessionModule.init(settings);
|
||||||
|
},
|
||||||
|
get: function(token) {
|
||||||
|
return sessionModule.get(token).then(function(session) {
|
||||||
|
if (session && session.accessExpires < Date.now()) {
|
||||||
|
return sessionModule.delete(token).then(function() {
|
||||||
|
return null;
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
return session;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
create: function(user,client,scope) {
|
||||||
|
var accessToken = generateToken(128);
|
||||||
|
var session = {
|
||||||
|
user:user,
|
||||||
|
client:client,
|
||||||
|
scope:scope,
|
||||||
|
accessToken: accessToken,
|
||||||
|
};
|
||||||
|
return sessionModule.create(accessToken,session).then(function() {
|
||||||
|
return {
|
||||||
|
accessToken: accessToken,
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
revoke: function(token) {
|
||||||
|
return sessionModule.delete(token);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
72
red/api/auth/tokens/localfilesystem.js
Normal file
72
red/api/auth/tokens/localfilesystem.js
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
/**
|
||||||
|
* Copyright 2015 IBM Corp.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
**/
|
||||||
|
|
||||||
|
var fs = require('fs');
|
||||||
|
var when = require('when');
|
||||||
|
var nodeFn = require('when/node/function');
|
||||||
|
var fspath = require("path");
|
||||||
|
|
||||||
|
var settings;
|
||||||
|
var sessionsFile;
|
||||||
|
|
||||||
|
var sessions = {};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Write content to a file using UTF8 encoding.
|
||||||
|
* This forces a fsync before completing to ensure
|
||||||
|
* the write hits disk.
|
||||||
|
*/
|
||||||
|
function writeFile(path,content) {
|
||||||
|
return when.promise(function(resolve,reject) {
|
||||||
|
var stream = fs.createWriteStream(path);
|
||||||
|
stream.on('open',function(fd) {
|
||||||
|
stream.end(content,'utf8',function() {
|
||||||
|
fs.fsync(fd,resolve);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
stream.on('error',function(err) {
|
||||||
|
reject(err);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
var api = module.exports = {
|
||||||
|
init: function(_settings) {
|
||||||
|
settings = _settings;
|
||||||
|
var userDir = settings.userDir || process.env.NODE_RED_HOME;
|
||||||
|
sessionsFile = fspath.join(userDir,".sessions.json");
|
||||||
|
|
||||||
|
try {
|
||||||
|
sessions = JSON.parse(fs.readFileSync(sessionsFile,'utf8'));
|
||||||
|
} catch(err) {
|
||||||
|
sessions = {};
|
||||||
|
}
|
||||||
|
|
||||||
|
return when.resolve();
|
||||||
|
},
|
||||||
|
|
||||||
|
get: function(token) {
|
||||||
|
return when.resolve(sessions[token]);
|
||||||
|
},
|
||||||
|
create: function(token,session) {
|
||||||
|
sessions[token] = session;
|
||||||
|
return writeFile(sessionsFile,JSON.stringify(sessions));
|
||||||
|
},
|
||||||
|
delete: function(token) {
|
||||||
|
delete sessions[token];
|
||||||
|
return writeFile(sessionsFile,JSON.stringify(sessions));
|
||||||
|
}
|
||||||
|
}
|
@ -17,8 +17,6 @@
|
|||||||
var when = require("when");
|
var when = require("when");
|
||||||
var crypto = require("crypto");
|
var crypto = require("crypto");
|
||||||
var util = require("util");
|
var util = require("util");
|
||||||
|
|
||||||
var settings = require("../../settings");
|
|
||||||
/*
|
/*
|
||||||
adminAuth: {
|
adminAuth: {
|
||||||
type: "credentials",
|
type: "credentials",
|
||||||
@ -26,7 +24,7 @@ var settings = require("../../settings");
|
|||||||
username: "nol",
|
username: "nol",
|
||||||
password: "5f4dcc3b5aa765d61d8327deb882cf99" // password
|
password: "5f4dcc3b5aa765d61d8327deb882cf99" // password
|
||||||
}],
|
}],
|
||||||
anonymous: {}
|
default: {}
|
||||||
},
|
},
|
||||||
|
|
||||||
adminAuth: {
|
adminAuth: {
|
||||||
@ -34,85 +32,85 @@ var settings = require("../../settings");
|
|||||||
api: {
|
api: {
|
||||||
get: function(username) {}
|
get: function(username) {}
|
||||||
authenticate: function(username,password) {}
|
authenticate: function(username,password) {}
|
||||||
anonymous: function() {}
|
default: function() {}
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//{username:"nick",password:crypto.createHash('md5').update("foo",'utf8').digest('hex')}
|
//{username:"nick",password:crypto.createHash('md5').update("foo",'utf8').digest('hex')}
|
||||||
|
|
||||||
var users = {};
|
var users = {};
|
||||||
var passwords = {};
|
var passwords = {};
|
||||||
var anonymousUser = null;
|
var defaultUser = null;
|
||||||
|
|
||||||
|
function authenticate(username,password) {
|
||||||
|
var user = users[username];
|
||||||
|
if (user) {
|
||||||
|
var pass = crypto.createHash('md5').update(password,'utf8').digest('hex');
|
||||||
|
if (pass == passwords[username]) {
|
||||||
|
return when.resolve(user);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return when.resolve(null);
|
||||||
|
}
|
||||||
|
function get(username) {
|
||||||
|
return when.resolve(users[username]);
|
||||||
|
}
|
||||||
|
function getDefaultUser() {
|
||||||
|
return when.resolve(null);
|
||||||
|
}
|
||||||
|
|
||||||
var api = {
|
var api = {
|
||||||
get: function(username) {
|
get: get,
|
||||||
return when.resolve(null);
|
authenticate: authenticate,
|
||||||
},
|
default: getDefaultUser
|
||||||
authenticate: function(username,password) {
|
|
||||||
return when.resolve(null);
|
|
||||||
},
|
|
||||||
anonymous: function() {
|
|
||||||
return when.resolve(null);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
function init() {
|
|
||||||
|
function init(config) {
|
||||||
users = {};
|
users = {};
|
||||||
passwords = {};
|
passwords = {};
|
||||||
anonymousUser = null;
|
defaultUser = null;
|
||||||
if (settings.adminAuth) {
|
if (config.type == "credentials") {
|
||||||
if (settings.adminAuth.type == "credentials") {
|
if (config.users) {
|
||||||
if (settings.adminAuth.api) {
|
if (typeof config.users === "function") {
|
||||||
api.get = settings.adminAuth.api.get || api.get;
|
api.get = config.users;
|
||||||
api.authenticate = settings.adminAuth.api.authenticate || api.authenticate;
|
|
||||||
api.anonymous = settings.adminAuth.api.anonymous || api.anonymous;
|
|
||||||
} else {
|
} else {
|
||||||
if (settings.adminAuth.users) {
|
var us = config.users;
|
||||||
var us = settings.adminAuth.users;
|
if (!util.isArray(us)) {
|
||||||
if (!util.isArray(us)) {
|
us = [us];
|
||||||
us = [us];
|
|
||||||
}
|
|
||||||
for (var i=0;i<us.length;i++) {
|
|
||||||
var u = us[i];
|
|
||||||
users[u.username] = {
|
|
||||||
"username":u.username,
|
|
||||||
"permissions":u.permissions
|
|
||||||
};
|
|
||||||
passwords[u.username] = u.password;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (settings.adminAuth.anonymous) {
|
for (var i=0;i<us.length;i++) {
|
||||||
anonymousUser = {
|
var u = us[i];
|
||||||
"anonymous": true,
|
users[u.username] = {
|
||||||
"permissions":settings.adminAuth.anonymous.permissions
|
"username":u.username,
|
||||||
}
|
"permissions":u.permissions
|
||||||
}
|
};
|
||||||
api = {
|
passwords[u.username] = u.password;
|
||||||
get: function(username) {
|
|
||||||
return when.resolve(users[username]);
|
|
||||||
},
|
|
||||||
authenticate: function(username,password) {
|
|
||||||
return api.get(username).then(function(user) {
|
|
||||||
if (user) {
|
|
||||||
var pass = crypto.createHash('md5').update(password,'utf8').digest('hex');
|
|
||||||
if (pass == passwords[username]) {
|
|
||||||
return when.resolve(user);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return when.resolve(null);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
anonymous: function() {
|
|
||||||
return when.resolve(anonymousUser);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (config.authenticate && typeof config.authenticate === "function") {
|
||||||
|
api.authenticate = config.authenticate;
|
||||||
|
} else {
|
||||||
|
api.authenticate = authenticate;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (config.default) {
|
||||||
|
api.default = function() {
|
||||||
|
return when.resolve({
|
||||||
|
"anonymous": true,
|
||||||
|
"permissions":config.default.permissions
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
api.default = getDefaultUser;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
init: init,
|
init: init,
|
||||||
get: function(username) { return api.get(username) },
|
get: function(username) { return api.get(username) },
|
||||||
authenticate: function(username,password) { return api.authenticate(username,password) },
|
authenticate: function(username,password) { return api.authenticate(username,password) },
|
||||||
anonymous: function() { return api.anonymous(); }
|
default: function() { return api.default(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -32,6 +32,7 @@ var settings = require("../settings");
|
|||||||
|
|
||||||
var errorHandler = function(err,req,res,next) {
|
var errorHandler = function(err,req,res,next) {
|
||||||
//TODO: standardize json response
|
//TODO: standardize json response
|
||||||
|
console.log(err.stack);
|
||||||
res.send(400,err.toString());
|
res.send(400,err.toString());
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -51,18 +52,19 @@ function init(adminApp) {
|
|||||||
adminApp.use(express.json());
|
adminApp.use(express.json());
|
||||||
adminApp.use(express.urlencoded());
|
adminApp.use(express.urlencoded());
|
||||||
|
|
||||||
//TODO: all passport references ought to be in ./auth
|
if (settings.adminAuth) {
|
||||||
adminApp.use(passport.initialize());
|
//TODO: all passport references ought to be in ./auth
|
||||||
|
adminApp.use(passport.initialize());
|
||||||
adminApp.use(auth.authenticate);
|
adminApp.use(auth.authenticate);
|
||||||
adminApp.post("/auth/token",
|
adminApp.post("/auth/token",
|
||||||
auth.ensureClientSecret,
|
auth.ensureClientSecret,
|
||||||
auth.authenticateClient,
|
auth.authenticateClient,
|
||||||
auth.getToken,
|
auth.getToken,
|
||||||
auth.errorHandler
|
auth.errorHandler
|
||||||
);
|
);
|
||||||
adminApp.get("/auth/login",auth.login);
|
adminApp.get("/auth/login",auth.login);
|
||||||
adminApp.post("/auth/revoke",auth.revoke);
|
adminApp.post("/auth/revoke",auth.revoke);
|
||||||
|
}
|
||||||
|
|
||||||
// Flows
|
// Flows
|
||||||
adminApp.get("/flows",needsPermission("flows.read"),flows.get);
|
adminApp.get("/flows",needsPermission("flows.read"),flows.get);
|
||||||
|
61
red/comms.js
61
red/comms.js
@ -42,7 +42,7 @@ function start() {
|
|||||||
var Permissions = require("./api/auth/permissions");
|
var Permissions = require("./api/auth/permissions");
|
||||||
|
|
||||||
if (!settings.disableEditor) {
|
if (!settings.disableEditor) {
|
||||||
Users.anonymous().then(function(anonymousUser) {
|
Users.default().then(function(anonymousUser) {
|
||||||
var webSocketKeepAliveTime = settings.webSocketKeepAliveTime || 15000;
|
var webSocketKeepAliveTime = settings.webSocketKeepAliveTime || 15000;
|
||||||
var path = settings.httpAdminRoot || "/";
|
var path = settings.httpAdminRoot || "/";
|
||||||
path = path + (path.slice(-1) == "/" ? "":"/") + "comms";
|
path = path + (path.slice(-1) == "/" ? "":"/") + "comms";
|
||||||
@ -53,16 +53,7 @@ function start() {
|
|||||||
if (!pendingAuth) {
|
if (!pendingAuth) {
|
||||||
activeConnections.push(ws);
|
activeConnections.push(ws);
|
||||||
} else {
|
} else {
|
||||||
removePendingConnection(ws);
|
pendingConnections.push(ws);
|
||||||
}
|
|
||||||
});
|
|
||||||
ws.on('message', function(data,flags) {
|
|
||||||
var msg = null;
|
|
||||||
try {
|
|
||||||
msg = JSON.parse(data);
|
|
||||||
} catch(err) {
|
|
||||||
log.warn("comms received malformed message : "+err.toString());
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
ws.on('close',function() {
|
ws.on('close',function() {
|
||||||
removeActiveConnection(ws);
|
removeActiveConnection(ws);
|
||||||
@ -73,7 +64,7 @@ function start() {
|
|||||||
try {
|
try {
|
||||||
msg = JSON.parse(data);
|
msg = JSON.parse(data);
|
||||||
} catch(err) {
|
} catch(err) {
|
||||||
util.log("[red:comms] received malformed message : "+err.toString());
|
log.warn("comms received malformed message : "+err.toString());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!pendingAuth) {
|
if (!pendingAuth) {
|
||||||
@ -81,59 +72,55 @@ function start() {
|
|||||||
handleRemoteSubscription(ws,msg.subscribe);
|
handleRemoteSubscription(ws,msg.subscribe);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
var completeConnection = function(user) {
|
var completeConnection = function(user,sendAck) {
|
||||||
if (!user || !Permissions.hasPermission(user,"status.read")) {
|
if (!user || !Permissions.hasPermission(user,"status.read")) {
|
||||||
ws.close();
|
ws.close();
|
||||||
} else {
|
} else {
|
||||||
pendingAuth = false;
|
pendingAuth = false;
|
||||||
removePendingConnection(ws);
|
removePendingConnection(ws);
|
||||||
activeConnections.push(ws);
|
activeConnections.push(ws);
|
||||||
ws.send(JSON.stringify({auth:"ok"}));
|
if (sendAck) {
|
||||||
|
ws.send(JSON.stringify({auth:"ok"}));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (msg.auth) {
|
if (msg.auth) {
|
||||||
Tokens.get(msg.auth).then(function(client) {
|
Tokens.get(msg.auth).then(function(client) {
|
||||||
if (client) {
|
if (client) {
|
||||||
Users.get(client.user).then(completeConnection);
|
Users.get(client.user).then(function(user) {
|
||||||
|
completeConnection(user,true);
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
completeConnection(null);
|
completeConnection(null,false);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
completeConnection(anonymousUser);
|
completeConnection(anonymousUser,false);
|
||||||
|
//TODO: duplicated code - pull non-auth message handling out
|
||||||
|
if (msg.subscribe) {
|
||||||
|
handleRemoteSubscription(ws,msg.subscribe);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
ws.on('error', function(err) {
|
ws.on('error', function(err) {
|
||||||
util.log("[red:comms] error : "+err.toString());
|
log.warn("comms error : "+err.toString());
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
ws.on('error', function(err) {
|
wsServer.on('error', function(err) {
|
||||||
log.warn("comms error : "+err.toString());
|
log.warn("comms server error : "+err.toString());
|
||||||
});
|
});
|
||||||
|
|
||||||
lastSentTime = Date.now();
|
lastSentTime = Date.now();
|
||||||
|
|
||||||
heartbeatTimer = setInterval(function() {
|
heartbeatTimer = setInterval(function() {
|
||||||
var now = Date.now();
|
var now = Date.now();
|
||||||
if (now-lastSentTime > webSocketKeepAliveTime) {
|
if (now-lastSentTime > webSocketKeepAliveTime) {
|
||||||
publish("hb",lastSentTime);
|
publish("hb",lastSentTime);
|
||||||
}
|
}
|
||||||
}, webSocketKeepAliveTime);
|
}, webSocketKeepAliveTime);
|
||||||
});
|
});
|
||||||
wsServer.on('error', function(err) {
|
|
||||||
log.warn("comms server error : "+err.toString());
|
|
||||||
});
|
|
||||||
|
|
||||||
lastSentTime = Date.now();
|
|
||||||
|
|
||||||
heartbeatTimer = setInterval(function() {
|
|
||||||
var now = Date.now();
|
|
||||||
if (now-lastSentTime > webSocketKeepAliveTime) {
|
|
||||||
publish("hb",lastSentTime);
|
|
||||||
}
|
|
||||||
}, webSocketKeepAliveTime);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,6 +18,7 @@ var when = require('when');
|
|||||||
|
|
||||||
var storageModule;
|
var storageModule;
|
||||||
var settingsAvailable;
|
var settingsAvailable;
|
||||||
|
var sessionsAvailable;
|
||||||
|
|
||||||
function moduleSelector(aSettings) {
|
function moduleSelector(aSettings) {
|
||||||
var toReturn;
|
var toReturn;
|
||||||
@ -43,6 +44,7 @@ var storageModuleInterface = {
|
|||||||
try {
|
try {
|
||||||
storageModule = moduleSelector(settings);
|
storageModule = moduleSelector(settings);
|
||||||
settingsAvailable = storageModule.hasOwnProperty("getSettings") && storageModule.hasOwnProperty("saveSettings");
|
settingsAvailable = storageModule.hasOwnProperty("getSettings") && storageModule.hasOwnProperty("saveSettings");
|
||||||
|
sessionsAvailable = storageModule.hasOwnProperty("getUserSessions") && storageModule.hasOwnProperty("saveUserSessions");
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return when.reject(e);
|
return when.reject(e);
|
||||||
}
|
}
|
||||||
@ -74,6 +76,7 @@ var storageModuleInterface = {
|
|||||||
return when.resolve();
|
return when.resolve();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
/* Library Functions */
|
/* Library Functions */
|
||||||
getAllFlows: function() {
|
getAllFlows: function() {
|
||||||
return storageModule.getAllFlows();
|
return storageModule.getAllFlows();
|
||||||
|
@ -262,7 +262,6 @@ var localfilesystem = {
|
|||||||
return writeFile(globalSettingsFile,JSON.stringify(settings,null,1));
|
return writeFile(globalSettingsFile,JSON.stringify(settings,null,1));
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
getAllFlows: function() {
|
getAllFlows: function() {
|
||||||
return listFiles(libFlowsDir);
|
return listFiles(libFlowsDir);
|
||||||
},
|
},
|
||||||
|
@ -0,0 +1,47 @@
|
|||||||
|
/**
|
||||||
|
* Copyright 2015 IBM Corp.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
**/
|
||||||
|
|
||||||
|
var should = require("should");
|
||||||
|
var Clients = require("../../../../red/api/auth/clients");
|
||||||
|
|
||||||
|
describe("Clients", function() {
|
||||||
|
it('finds the known editor client',function(done) {
|
||||||
|
Clients.get("node-red-editor").then(function(client) {
|
||||||
|
client.should.have.property("id","node-red-editor");
|
||||||
|
client.should.have.property("secret","not_available");
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
it('finds the known admin client',function(done) {
|
||||||
|
Clients.get("node-red-admin").then(function(client) {
|
||||||
|
client.should.have.property("id","node-red-admin");
|
||||||
|
client.should.have.property("secret","not_available");
|
||||||
|
done();
|
||||||
|
}).catch(function(err) {
|
||||||
|
done(err);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
it('returns null for unknown client',function(done) {
|
||||||
|
Clients.get("unknown-client").then(function(client) {
|
||||||
|
should.not.exist(client);
|
||||||
|
done();
|
||||||
|
}).catch(function(err) {
|
||||||
|
done(err);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright 2014 IBM Corp.
|
* Copyright 2015 IBM Corp.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@ -15,13 +15,13 @@
|
|||||||
**/
|
**/
|
||||||
|
|
||||||
var should = require("should");
|
var should = require("should");
|
||||||
|
var when = require("when");
|
||||||
var sinon = require("sinon");
|
var sinon = require("sinon");
|
||||||
var request = require('supertest');
|
|
||||||
var express = require('express');
|
|
||||||
|
|
||||||
var passport = require("passport");
|
var passport = require("passport");
|
||||||
|
|
||||||
var auth = require("../../../../red/api/auth");
|
var auth = require("../../../../red/api/auth");
|
||||||
|
var Tokens = require("../../../../red/api/auth/tokens");
|
||||||
|
|
||||||
var settings = require("../../../../red/settings");
|
var settings = require("../../../../red/settings");
|
||||||
|
|
||||||
@ -103,4 +103,36 @@ describe("api auth middleware",function() {
|
|||||||
})
|
})
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe("revoke", function() {
|
||||||
|
it("revokes a token", function(done) {
|
||||||
|
var revokeToken = sinon.stub(Tokens,"revoke",function() {
|
||||||
|
return when.resolve();
|
||||||
|
});
|
||||||
|
|
||||||
|
var req = { body: { token: "abcdef" } };
|
||||||
|
|
||||||
|
var res = { send: function(resp) {
|
||||||
|
revokeToken.restore();
|
||||||
|
|
||||||
|
resp.should.equal(200);
|
||||||
|
done();
|
||||||
|
}};
|
||||||
|
|
||||||
|
auth.revoke(req,res);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("login", function() {
|
||||||
|
it("returns login details", function(done) {
|
||||||
|
auth.login(null,{json: function(resp) {
|
||||||
|
resp.should.have.a.property("type","credentials");
|
||||||
|
resp.should.have.a.property("prompts");
|
||||||
|
resp.prompts.should.have.a.lengthOf(2);
|
||||||
|
done();
|
||||||
|
}});
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -0,0 +1,61 @@
|
|||||||
|
/**
|
||||||
|
* Copyright 2015 IBM Corp.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
**/
|
||||||
|
|
||||||
|
var should = require("should");
|
||||||
|
|
||||||
|
var permissions = require("../../../../red/api/auth/permissions");
|
||||||
|
|
||||||
|
|
||||||
|
describe("Auth permissions", function() {
|
||||||
|
describe("hasPermission", function() {
|
||||||
|
it('a user with no permissions',function() {
|
||||||
|
permissions.hasPermission({},"*").should.be.false;
|
||||||
|
});
|
||||||
|
it('a user with global permissions',function() {
|
||||||
|
permissions.hasPermission({permissions:"*"},"read").should.be.true;
|
||||||
|
permissions.hasPermission({permissions:"*"},"write").should.be.true;
|
||||||
|
});
|
||||||
|
it('a user with read permissions',function() {
|
||||||
|
permissions.hasPermission({permissions:"read"},"read").should.be.true;
|
||||||
|
permissions.hasPermission({permissions:"read"},"node.read").should.be.true;
|
||||||
|
permissions.hasPermission({permissions:"read"},"write").should.be.false;
|
||||||
|
permissions.hasPermission({permissions:"read"},"node.write").should.be.false;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("needsPermission middleware", function() {
|
||||||
|
it('passes if no user on request',function(done) {
|
||||||
|
var needsPermission = permissions.needsPermission("*");
|
||||||
|
needsPermission({},null,function() {
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
it('passes if user has required permission',function(done) {
|
||||||
|
var needsPermission = permissions.needsPermission("read");
|
||||||
|
needsPermission({user:{permissions:"read"}},null,function() {
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
it('rejects if user does not have required permission',function(done) {
|
||||||
|
var needsPermission = permissions.needsPermission("write");
|
||||||
|
needsPermission({user:{permissions:"read"}},{send: function(code) {
|
||||||
|
code.should.equal(401);
|
||||||
|
done();
|
||||||
|
}},null);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
});
|
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright 2014 IBM Corp.
|
* Copyright 2015 IBM Corp.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@ -14,6 +14,201 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
**/
|
**/
|
||||||
|
|
||||||
|
var should = require("should");
|
||||||
|
var when = require('when');
|
||||||
|
var sinon = require('sinon');
|
||||||
|
|
||||||
|
|
||||||
var strategies = require("../../../../red/api/auth/strategies");
|
var strategies = require("../../../../red/api/auth/strategies");
|
||||||
|
var Users = require("../../../../red/api/auth/users");
|
||||||
|
var Tokens = require("../../../../red/api/auth/tokens");
|
||||||
|
var Clients = require("../../../../red/api/auth/clients");
|
||||||
|
|
||||||
|
|
||||||
|
describe("Auth strategies", function() {
|
||||||
|
describe("Password Token Exchange", function() {
|
||||||
|
|
||||||
|
var userAuthentication;
|
||||||
|
afterEach(function() {
|
||||||
|
if (userAuthentication) {
|
||||||
|
userAuthentication.restore();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Handles authentication failure',function(done) {
|
||||||
|
userAuthentication = sinon.stub(Users,"authenticate",function(username,password) {
|
||||||
|
return when.resolve(null);
|
||||||
|
});
|
||||||
|
|
||||||
|
strategies.passwordTokenExchange({},"user","password","scope",function(err,token) {
|
||||||
|
try {
|
||||||
|
should.not.exist(err);
|
||||||
|
token.should.be.false;
|
||||||
|
done();
|
||||||
|
} catch(e) {
|
||||||
|
done(e);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Creates new token on authentication success',function(done) {
|
||||||
|
userAuthentication = sinon.stub(Users,"authenticate",function(username,password) {
|
||||||
|
return when.resolve({username:"user"});
|
||||||
|
});
|
||||||
|
var tokenDetails = {};
|
||||||
|
var tokenCreate = sinon.stub(Tokens,"create",function(username,client,scope) {
|
||||||
|
tokenDetails.username = username;
|
||||||
|
tokenDetails.client = client;
|
||||||
|
tokenDetails.scope = scope;
|
||||||
|
return when.resolve({accessToken: "123456"});
|
||||||
|
});
|
||||||
|
|
||||||
|
strategies.passwordTokenExchange({id:"myclient"},"user","password","scope",function(err,token) {
|
||||||
|
try {
|
||||||
|
should.not.exist(err);
|
||||||
|
token.should.equal("123456");
|
||||||
|
tokenDetails.should.have.property("username","user");
|
||||||
|
tokenDetails.should.have.property("client","myclient");
|
||||||
|
tokenDetails.should.have.property("scope","scope");
|
||||||
|
done();
|
||||||
|
} catch(e) {
|
||||||
|
done(e);
|
||||||
|
} finally {
|
||||||
|
tokenCreate.restore();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("Anonymous Strategy", function() {
|
||||||
|
it('Succeeds if anon user enabled',function(done) {
|
||||||
|
var userDefault = sinon.stub(Users,"default",function() {
|
||||||
|
return when.resolve("anon");
|
||||||
|
});
|
||||||
|
strategies.anonymousStrategy._success = strategies.anonymousStrategy.success;
|
||||||
|
strategies.anonymousStrategy.success = function(user) {
|
||||||
|
user.should.equal("anon");
|
||||||
|
strategies.anonymousStrategy.success = strategies.anonymousStrategy._success;
|
||||||
|
delete strategies.anonymousStrategy._success;
|
||||||
|
userDefault.restore();
|
||||||
|
done();
|
||||||
|
};
|
||||||
|
strategies.anonymousStrategy.authenticate({});
|
||||||
|
});
|
||||||
|
it('Fails if anon user not enabled',function(done) {
|
||||||
|
var userDefault = sinon.stub(Users,"default",function() {
|
||||||
|
return when.resolve(null);
|
||||||
|
});
|
||||||
|
strategies.anonymousStrategy._fail = strategies.anonymousStrategy.fail;
|
||||||
|
strategies.anonymousStrategy.fail = function(err) {
|
||||||
|
err.should.equal(401);
|
||||||
|
strategies.anonymousStrategy.fail = strategies.anonymousStrategy._fail;
|
||||||
|
delete strategies.anonymousStrategy._fail;
|
||||||
|
userDefault.restore();
|
||||||
|
done();
|
||||||
|
};
|
||||||
|
strategies.anonymousStrategy.authenticate({});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("Bearer Strategy", function() {
|
||||||
|
it('Rejects invalid token',function(done) {
|
||||||
|
var getToken = sinon.stub(Tokens,"get",function(token) {
|
||||||
|
return when.resolve(null);
|
||||||
|
});
|
||||||
|
|
||||||
|
strategies.bearerStrategy("1234",function(err,user) {
|
||||||
|
try {
|
||||||
|
should.not.exist(err);
|
||||||
|
user.should.be.false;
|
||||||
|
done();
|
||||||
|
} catch(e) {
|
||||||
|
done(e);
|
||||||
|
} finally {
|
||||||
|
getToken.restore();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
it('Accepts valid token',function(done) {
|
||||||
|
var getToken = sinon.stub(Tokens,"get",function(token) {
|
||||||
|
return when.resolve({user:"user",scope:"scope"});
|
||||||
|
});
|
||||||
|
var getUser = sinon.stub(Users,"get",function(username) {
|
||||||
|
return when.resolve("aUser");
|
||||||
|
});
|
||||||
|
|
||||||
|
strategies.bearerStrategy("1234",function(err,user,opts) {
|
||||||
|
try {
|
||||||
|
should.not.exist(err);
|
||||||
|
user.should.equal("aUser");
|
||||||
|
opts.should.have.a.property("scope","scope");
|
||||||
|
done();
|
||||||
|
} catch(e) {
|
||||||
|
done(e);
|
||||||
|
} finally {
|
||||||
|
getToken.restore();
|
||||||
|
getUser.restore();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("Client Password Strategy", function() {
|
||||||
|
it('Accepts valid client',function(done) {
|
||||||
|
var testClient = {id:"node-red-editor",secret:"not_available"};
|
||||||
|
var getClient = sinon.stub(Clients,"get",function(client) {
|
||||||
|
return when.resolve(testClient);
|
||||||
|
});
|
||||||
|
|
||||||
|
strategies.clientPasswordStrategy(testClient.id,testClient.secret,function(err,client) {
|
||||||
|
try {
|
||||||
|
should.not.exist(err);
|
||||||
|
client.should.eql(testClient);
|
||||||
|
done();
|
||||||
|
} catch(e) {
|
||||||
|
done(e);
|
||||||
|
} finally {
|
||||||
|
getClient.restore();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
it('Rejects invalid client secret',function(done) {
|
||||||
|
var testClient = {id:"node-red-editor",secret:"not_available"};
|
||||||
|
var getClient = sinon.stub(Clients,"get",function(client) {
|
||||||
|
return when.resolve(testClient);
|
||||||
|
});
|
||||||
|
|
||||||
|
strategies.clientPasswordStrategy(testClient.id,"invalid_secret",function(err,client) {
|
||||||
|
try {
|
||||||
|
should.not.exist(err);
|
||||||
|
client.should.be.false;
|
||||||
|
done();
|
||||||
|
} catch(e) {
|
||||||
|
done(e);
|
||||||
|
} finally {
|
||||||
|
getClient.restore();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
it('Rejects invalid client id',function(done) {
|
||||||
|
var testClient = {id:"node-red-editor",secret:"not_available"};
|
||||||
|
var getClient = sinon.stub(Clients,"get",function(client) {
|
||||||
|
return when.resolve(null);
|
||||||
|
});
|
||||||
|
|
||||||
|
strategies.clientPasswordStrategy("invalid_id","invalid_secret",function(err,client) {
|
||||||
|
try {
|
||||||
|
should.not.exist(err);
|
||||||
|
client.should.be.false;
|
||||||
|
done();
|
||||||
|
} catch(e) {
|
||||||
|
done(e);
|
||||||
|
} finally {
|
||||||
|
getClient.restore();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
168
test/red/api/auth/tokens/index_spec.js
Normal file
168
test/red/api/auth/tokens/index_spec.js
Normal file
@ -0,0 +1,168 @@
|
|||||||
|
/**
|
||||||
|
* Copyright 2015 IBM Corp.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
**/
|
||||||
|
|
||||||
|
var should = require("should");
|
||||||
|
var when = require("when");
|
||||||
|
var sinon = require("sinon");
|
||||||
|
|
||||||
|
|
||||||
|
var Tokens = require("../../../../../red/api/auth/tokens");
|
||||||
|
|
||||||
|
|
||||||
|
describe("Tokens", function() {
|
||||||
|
describe("#init",function() {
|
||||||
|
var module = require("module");
|
||||||
|
var originalLoader;
|
||||||
|
beforeEach(function() {
|
||||||
|
originalLoader = module._load;
|
||||||
|
});
|
||||||
|
afterEach(function() {
|
||||||
|
module._load = originalLoader;
|
||||||
|
});
|
||||||
|
|
||||||
|
it('loads default storage plugin', function(done) {
|
||||||
|
module._load = function(name) {
|
||||||
|
name.should.equal("./localfilesystem");
|
||||||
|
return {init: function(settings) {done()}};
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
Tokens.init({});
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
it('loads the specified storage plugin', function(done) {
|
||||||
|
module._load = function(name) {
|
||||||
|
name.should.equal("./aTestExample");
|
||||||
|
return {init: function(settings) {done()}};
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
Tokens.init({sessionStorageModule:"aTestExample"});
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('uses the provided storage plugin', function(done) {
|
||||||
|
Tokens.init({sessionStorageModule:{init:function(settings){done()}}});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
describe("#get",function() {
|
||||||
|
it('returns a valid token', function(done) {
|
||||||
|
Tokens.init({sessionStorageModule:{
|
||||||
|
init:function(settings){},
|
||||||
|
get: function(token) {
|
||||||
|
return when.resolve({user:"fred",accessExpires: Date.now()+10000});
|
||||||
|
}
|
||||||
|
}});
|
||||||
|
|
||||||
|
Tokens.get("1234").then(function(token) {
|
||||||
|
try {
|
||||||
|
token.should.have.a.property("user","fred");
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
it('deletes an expired token and returns null', function(done) {
|
||||||
|
var sessionStorageModule = {
|
||||||
|
init:function(settings){},
|
||||||
|
get: function(token) {
|
||||||
|
return when.resolve({user:"fred",accessExpires: Date.now()-10000});
|
||||||
|
},
|
||||||
|
delete: sinon.stub().returns(when.resolve())
|
||||||
|
};
|
||||||
|
|
||||||
|
Tokens.init({sessionStorageModule:sessionStorageModule});
|
||||||
|
|
||||||
|
Tokens.get("1234").then(function(token) {
|
||||||
|
try {
|
||||||
|
should.not.exist(token);
|
||||||
|
sessionStorageModule.delete.calledWith("1234").should.be.true;
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns null for an invalid token', function(done) {
|
||||||
|
Tokens.init({sessionStorageModule:{
|
||||||
|
init:function(settings){},
|
||||||
|
get: function(token) {
|
||||||
|
return when.resolve(null);
|
||||||
|
}
|
||||||
|
}});
|
||||||
|
|
||||||
|
Tokens.get("1234").then(function(token) {
|
||||||
|
try {
|
||||||
|
should.not.exist(token);
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("#create",function() {
|
||||||
|
it('creates a token', function(done) {
|
||||||
|
var sessionStorageModule = {
|
||||||
|
init:function(settings){},
|
||||||
|
create: sinon.stub().returns(when.resolve())
|
||||||
|
};
|
||||||
|
Tokens.init({sessionStorageModule:sessionStorageModule});
|
||||||
|
Tokens.create("user","client","scope").then(function(token) {
|
||||||
|
try {
|
||||||
|
sessionStorageModule.create.called.should.be.true;
|
||||||
|
token.should.have.a.property('accessToken',sessionStorageModule.create.args[0][0]);
|
||||||
|
sessionStorageModule.create.args[0][1].should.have.a.property('user','user');
|
||||||
|
sessionStorageModule.create.args[0][1].should.have.a.property('client','client');
|
||||||
|
sessionStorageModule.create.args[0][1].should.have.a.property('scope','scope');
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("#revoke", function() {
|
||||||
|
it('revokes a token', function(done) {
|
||||||
|
var deletedToken;
|
||||||
|
Tokens.init({sessionStorageModule:{
|
||||||
|
init:function(settings){},
|
||||||
|
delete: function(token) {
|
||||||
|
deletedToken = token;
|
||||||
|
return when.resolve(null);
|
||||||
|
}
|
||||||
|
}});
|
||||||
|
|
||||||
|
Tokens.revoke("1234").then(function() {
|
||||||
|
try {
|
||||||
|
deletedToken.should.equal("1234");
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
96
test/red/api/auth/tokens/localfilesystem_spec.js
Normal file
96
test/red/api/auth/tokens/localfilesystem_spec.js
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
/**
|
||||||
|
* Copyright 2015 IBM Corp.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
**/
|
||||||
|
|
||||||
|
var should = require("should");
|
||||||
|
var when = require("when");
|
||||||
|
var sinon = require("sinon");
|
||||||
|
|
||||||
|
var fs = require('fs-extra');
|
||||||
|
var path = require('path');
|
||||||
|
|
||||||
|
var localfilesystem = require("../../../../../red/api/auth/tokens/localfilesystem.js");
|
||||||
|
|
||||||
|
|
||||||
|
describe("Tokens localfilesystem", function() {
|
||||||
|
var userDir = path.join(__dirname,".testUserHome");
|
||||||
|
beforeEach(function(done) {
|
||||||
|
fs.remove(userDir,function(err) {
|
||||||
|
fs.mkdir(userDir,done);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
afterEach(function(done) {
|
||||||
|
fs.remove(userDir,done);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("initialise when no session file exists",function(done) {
|
||||||
|
localfilesystem.init({userDir:userDir}).then(function() {
|
||||||
|
localfilesystem.get("1234").then(function(token) {
|
||||||
|
should.not.exist(token);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it("initialises when session file exists", function(done) {
|
||||||
|
var sessions = {"1234":{"user":"nol","client":"node-red-admin","scope":["*"],"accessToken":"1234"}};
|
||||||
|
fs.writeFileSync(path.join(userDir,".sessions.json"),JSON.stringify(sessions),"utf8");
|
||||||
|
|
||||||
|
localfilesystem.init({userDir:userDir}).then(function() {
|
||||||
|
localfilesystem.get("1234").then(function(token) {
|
||||||
|
token.should.eql(sessions['1234']);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it("writes new tokens to the session file",function(done) {
|
||||||
|
var sessions = {"1234":{"user":"nol","client":"node-red-admin","scope":["*"],"accessToken":"1234"}};
|
||||||
|
fs.writeFileSync(path.join(userDir,".sessions.json"),JSON.stringify(sessions),"utf8");
|
||||||
|
|
||||||
|
localfilesystem.init({userDir:userDir}).then(function() {
|
||||||
|
localfilesystem.create("5678",{
|
||||||
|
user:"fred",
|
||||||
|
client:"client",
|
||||||
|
scope:["read"],
|
||||||
|
accessToken:"5678"
|
||||||
|
}).then(function() {
|
||||||
|
var newSessions = JSON.parse(fs.readFileSync(path.join(userDir,".sessions.json"),"utf8"));
|
||||||
|
newSessions.should.have.a.property("1234");
|
||||||
|
newSessions.should.have.a.property("5678");
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it("deletes tokens from the session file",function(done) {
|
||||||
|
var sessions = {
|
||||||
|
"1234":{"user":"nol","client":"node-red-admin","scope":["*"],"accessToken":"1234"},
|
||||||
|
"5678":{"user":"fred","client":"client","scope":["read"],"accessToken":"5678"}
|
||||||
|
};
|
||||||
|
fs.writeFileSync(path.join(userDir,".sessions.json"),JSON.stringify(sessions),"utf8");
|
||||||
|
|
||||||
|
localfilesystem.init({userDir:userDir}).then(function() {
|
||||||
|
localfilesystem.delete("5678").then(function() {
|
||||||
|
var newSessions = JSON.parse(fs.readFileSync(path.join(userDir,".sessions.json"),"utf8"));
|
||||||
|
newSessions.should.have.a.property("1234");
|
||||||
|
newSessions.should.not.have.a.property("5678");
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
});
|
@ -0,0 +1,185 @@
|
|||||||
|
/**
|
||||||
|
* Copyright 2015 IBM Corp.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
**/
|
||||||
|
|
||||||
|
var should = require("should");
|
||||||
|
var when = require('when');
|
||||||
|
var sinon = require('sinon');
|
||||||
|
|
||||||
|
var Users = require("../../../../red/api/auth/users");
|
||||||
|
|
||||||
|
describe("Users", function() {
|
||||||
|
describe('Initalised with a credentials object, no anon',function() {
|
||||||
|
before(function() {
|
||||||
|
Users.init({
|
||||||
|
type:"credentials",
|
||||||
|
users:[{
|
||||||
|
username:"fred",
|
||||||
|
password:"5f4dcc3b5aa765d61d8327deb882cf99", // 'password'
|
||||||
|
permissions:"*"
|
||||||
|
}]
|
||||||
|
});
|
||||||
|
});
|
||||||
|
describe('#get',function() {
|
||||||
|
it('returns known user',function(done) {
|
||||||
|
Users.get("fred").then(function(user) {
|
||||||
|
try {
|
||||||
|
user.should.have.a.property("username","fred");
|
||||||
|
user.should.have.a.property("permissions","*");
|
||||||
|
user.should.not.have.a.property("password");
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns null for unknown user', function(done) {
|
||||||
|
Users.get("barney").then(function(user) {
|
||||||
|
try {
|
||||||
|
should.not.exist(user);
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('#default',function() {
|
||||||
|
it('returns null for default user', function(done) {
|
||||||
|
Users.default().then(function(user) {
|
||||||
|
try {
|
||||||
|
should.not.exist(user);
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('#authenticate',function() {
|
||||||
|
|
||||||
|
it('authenticates a known user', function(done) {
|
||||||
|
Users.authenticate('fred','password').then(function(user) {
|
||||||
|
try {
|
||||||
|
user.should.have.a.property("username","fred");
|
||||||
|
user.should.have.a.property("permissions","*");
|
||||||
|
user.should.not.have.a.property("password");
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
it('rejects invalid password for a known user', function(done) {
|
||||||
|
Users.authenticate('fred','wrong').then(function(user) {
|
||||||
|
try {
|
||||||
|
should.not.exist(user);
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('rejects invalid user', function(done) {
|
||||||
|
Users.authenticate('barney','wrong').then(function(user) {
|
||||||
|
try {
|
||||||
|
should.not.exist(user);
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
describe('Initalised with a credentials object including anon',function() {
|
||||||
|
before(function() {
|
||||||
|
Users.init({
|
||||||
|
type:"credentials",
|
||||||
|
users:[],
|
||||||
|
default: { permissions: "*" }
|
||||||
|
});
|
||||||
|
});
|
||||||
|
describe('#default',function() {
|
||||||
|
it('returns default user', function(done) {
|
||||||
|
Users.default().then(function(user) {
|
||||||
|
try {
|
||||||
|
user.should.have.a.property('anonymous',true);
|
||||||
|
user.should.have.a.property('permissions','*');
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Initialised with a credentials object with user functions',function() {
|
||||||
|
var authUsername = '';
|
||||||
|
var authPassword = '';
|
||||||
|
before(function() {
|
||||||
|
Users.init({
|
||||||
|
type:"credentials",
|
||||||
|
users:function(username) {
|
||||||
|
return when.resolve({'username':'dave','permissions':'read'});
|
||||||
|
},
|
||||||
|
authenticate: function(username,password) {
|
||||||
|
authUsername = username;
|
||||||
|
authPassword = password;
|
||||||
|
return when.resolve({'username':'pete','permissions':'write'});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('#get',function() {
|
||||||
|
it('delegates get user',function(done) {
|
||||||
|
Users.get('dave').then(function(user) {
|
||||||
|
try {
|
||||||
|
user.should.have.a.property("username","dave");
|
||||||
|
user.should.have.a.property("permissions","read");
|
||||||
|
user.should.not.have.a.property("password");
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
it('delegates authenticate user',function(done) {
|
||||||
|
Users.authenticate('pete','secret').then(function(user) {
|
||||||
|
try {
|
||||||
|
user.should.have.a.property("username","pete");
|
||||||
|
user.should.have.a.property("permissions","write");
|
||||||
|
user.should.not.have.a.property("password");
|
||||||
|
authUsername.should.equal('pete');
|
||||||
|
authPassword.should.equal('secret');
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
});
|
||||||
|
});
|
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright 2014 IBM Corp.
|
* Copyright 2014, 2015 IBM Corp.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@ -15,12 +15,18 @@
|
|||||||
**/
|
**/
|
||||||
|
|
||||||
var should = require("should");
|
var should = require("should");
|
||||||
|
var sinon = require("sinon");
|
||||||
|
|
||||||
|
var when = require("when");
|
||||||
var http = require('http');
|
var http = require('http');
|
||||||
var express = require('express');
|
var express = require('express');
|
||||||
var app = express();
|
var app = express();
|
||||||
var WebSocket = require('ws');
|
var WebSocket = require('ws');
|
||||||
|
|
||||||
var comms = require("../../red/comms.js");
|
var comms = require("../../red/comms.js");
|
||||||
|
var Users = require("../../red/api/auth/users");
|
||||||
|
var Tokens = require("../../red/api/auth/tokens");
|
||||||
|
|
||||||
var address = '127.0.0.1';
|
var address = '127.0.0.1';
|
||||||
var listenPort = 0; // use ephemeral port
|
var listenPort = 0; // use ephemeral port
|
||||||
|
|
||||||
@ -188,5 +194,152 @@ describe("comms", function() {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('authentication required, no anonymous',function() {
|
||||||
|
var server;
|
||||||
|
var url;
|
||||||
|
var port;
|
||||||
|
var getDefaultUser;
|
||||||
|
var getUser;
|
||||||
|
var getToken;
|
||||||
|
before(function(done) {
|
||||||
|
getDefaultUser = sinon.stub(Users,"default",function() { return when.resolve(null);});
|
||||||
|
getUser = sinon.stub(Users,"get", function(username) {
|
||||||
|
if (username == "fred") {
|
||||||
|
return when.resolve({permissions:"read"});
|
||||||
|
} else {
|
||||||
|
return when.resolve(null);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
getToken = sinon.stub(Tokens,"get",function(token) {
|
||||||
|
if (token == "1234") {
|
||||||
|
return when.resolve({user:"fred"});
|
||||||
|
} else if (token == "5678") {
|
||||||
|
return when.resolve({user:"barney"});
|
||||||
|
} else {
|
||||||
|
return when.resolve(null);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
server = http.createServer(function(req,res){app(req,res)});
|
||||||
|
comms.init(server, {adminAuth:{}});
|
||||||
|
server.listen(listenPort, address);
|
||||||
|
server.on('listening', function() {
|
||||||
|
port = server.address().port;
|
||||||
|
url = 'http://' + address + ':' + port + '/comms';
|
||||||
|
comms.start();
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
after(function() {
|
||||||
|
getDefaultUser.restore();
|
||||||
|
getUser.restore();
|
||||||
|
getToken.restore();
|
||||||
|
comms.stop();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('prevents connections that do not authenticate',function(done) {
|
||||||
|
var ws = new WebSocket(url);
|
||||||
|
var count = 0;
|
||||||
|
var interval;
|
||||||
|
ws.on('open', function() {
|
||||||
|
ws.send('{"subscribe":"foo"}');
|
||||||
|
});
|
||||||
|
ws.on('close', function() {
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('allows connections that do authenticate',function(done) {
|
||||||
|
var ws = new WebSocket(url);
|
||||||
|
var received = 0;
|
||||||
|
ws.on('open', function() {
|
||||||
|
ws.send('{"auth":"1234"}');
|
||||||
|
});
|
||||||
|
ws.on('message', function(msg) {
|
||||||
|
received++;
|
||||||
|
if (received == 1) {
|
||||||
|
msg.should.equal('{"auth":"ok"}');
|
||||||
|
ws.send('{"subscribe":"foo"}');
|
||||||
|
comms.publish('foo', 'correct');
|
||||||
|
} else {
|
||||||
|
msg.should.equal('{"topic":"foo","data":"correct"}');
|
||||||
|
ws.close();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
ws.on('close', function() {
|
||||||
|
received.should.equal(2);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('rejects connections for non-existant token',function(done) {
|
||||||
|
var ws = new WebSocket(url);
|
||||||
|
var received = 0;
|
||||||
|
ws.on('open', function() {
|
||||||
|
ws.send('{"auth":"2345"}');
|
||||||
|
});
|
||||||
|
ws.on('close', function() {
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
it('rejects connections for invalid token',function(done) {
|
||||||
|
var ws = new WebSocket(url);
|
||||||
|
var received = 0;
|
||||||
|
ws.on('open', function() {
|
||||||
|
ws.send('{"auth":"5678"}');
|
||||||
|
});
|
||||||
|
ws.on('close', function() {
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('authentication required, anonymous enabled',function() {
|
||||||
|
var server;
|
||||||
|
var url;
|
||||||
|
var port;
|
||||||
|
var getDefaultUser;
|
||||||
|
before(function(done) {
|
||||||
|
getDefaultUser = sinon.stub(Users,"default",function() { return when.resolve({permissions:"read"});});
|
||||||
|
server = http.createServer(function(req,res){app(req,res)});
|
||||||
|
comms.init(server, {adminAuth:{}});
|
||||||
|
server.listen(listenPort, address);
|
||||||
|
server.on('listening', function() {
|
||||||
|
port = server.address().port;
|
||||||
|
url = 'http://' + address + ':' + port + '/comms';
|
||||||
|
comms.start();
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
after(function() {
|
||||||
|
getDefaultUser.restore();
|
||||||
|
comms.stop();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('allows anonymous connections that do not authenticate',function(done) {
|
||||||
|
var ws = new WebSocket(url);
|
||||||
|
var count = 0;
|
||||||
|
var interval;
|
||||||
|
ws.on('open', function() {
|
||||||
|
ws.send('{"subscribe":"foo"}');
|
||||||
|
setTimeout(function() {
|
||||||
|
comms.publish('foo', 'correct');
|
||||||
|
},200);
|
||||||
|
});
|
||||||
|
ws.on('message', function(msg) {
|
||||||
|
msg.should.equal('{"topic":"foo","data":"correct"}');
|
||||||
|
count++;
|
||||||
|
ws.close();
|
||||||
|
});
|
||||||
|
ws.on('close', function() {
|
||||||
|
count.should.equal(1);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user