thelounge/test/plugins/auth/ldap.js

177 lines
4.6 KiB
JavaScript
Raw Normal View History

2017-08-30 11:49:21 +02:00
"use strict";
2018-06-15 22:31:06 +02:00
const log = require("../../../src/log");
2017-08-30 11:49:21 +02:00
const ldapAuth = require("../../../src/plugins/auth/ldap");
const Config = require("../../../src/config");
const ldap = require("ldapjs");
2017-08-30 11:49:21 +02:00
const expect = require("chai").expect;
const stub = require("sinon").stub;
const TestUtil = require("../../util");
2017-08-30 11:49:21 +02:00
const user = "johndoe";
const wrongUser = "eve";
const correctPassword = "loremipsum";
const wrongPassword = "dolorsitamet";
const baseDN = "ou=accounts,dc=example,dc=com";
const primaryKey = "uid";
const serverPort = 1389;
function normalizeDN(dn) {
return ldap.parseDN(dn).toString();
}
function startLdapServer(callback) {
const server = ldap.createServer();
const searchConf = Config.values.ldap.searchDN;
2017-08-30 11:49:21 +02:00
const userDN = primaryKey + "=" + user + "," + baseDN;
// Two users are authorized: john doe and the root user in case of
// advanced auth (the user that does the search for john's actual
// bindDN)
const authorizedUsers = {};
authorizedUsers[normalizeDN(searchConf.rootDN)] = searchConf.rootPassword;
authorizedUsers[normalizeDN(userDN)] = correctPassword;
function authorize(req, res, next) {
const bindDN = req.connection.ldap.bindDN;
if (bindDN in authorizedUsers) {
return next();
}
return next(new ldap.InsufficientAccessRightsError());
}
Object.keys(authorizedUsers).forEach(function (dn) {
server.bind(dn, function (req, res, next) {
2017-08-30 11:49:21 +02:00
const bindDN = req.dn.toString();
const password = req.credentials;
if (bindDN in authorizedUsers && authorizedUsers[bindDN] === password) {
req.connection.ldap.bindDN = req.dn;
res.end();
return next();
}
return next(new ldap.InsufficientAccessRightsError());
});
});
server.search(searchConf.base, authorize, function (req, res) {
2017-08-30 11:49:21 +02:00
const obj = {
dn: userDN,
attributes: {
objectclass: ["person", "top"],
cn: ["john doe"],
sn: ["johnny"],
uid: ["johndoe"],
memberof: [baseDN],
},
2017-08-30 11:49:21 +02:00
};
if (req.filter.matches(obj.attributes)) {
// TODO: check req.scope if ldapjs does not
res.send(obj);
}
res.end();
});
2017-09-01 11:29:52 +02:00
server.listen(serverPort, callback);
2017-08-30 11:49:21 +02:00
return server;
}
function testLdapAuth() {
// Create mock manager and client. When client is true, manager should not
// be used. But ideally the auth plugin should not use any of those.
const manager = {};
const client = true;
it("should successfully authenticate with correct password", function (done) {
ldapAuth.auth(manager, client, user, correctPassword, function (valid) {
2017-08-30 11:49:21 +02:00
expect(valid).to.equal(true);
done();
});
});
it("should fail to authenticate with incorrect password", function (done) {
let error = "";
2019-07-17 11:33:59 +02:00
stub(log, "error").callsFake(TestUtil.sanitizeLog((str) => (error += str)));
ldapAuth.auth(manager, client, user, wrongPassword, function (valid) {
2017-08-30 11:49:21 +02:00
expect(valid).to.equal(false);
2019-07-17 11:33:59 +02:00
expect(error).to.equal(
"LDAP bind failed: InsufficientAccessRightsError: InsufficientAccessRightsError\n"
);
log.error.restore();
2017-08-30 11:49:21 +02:00
done();
});
});
it("should fail to authenticate with incorrect username", function (done) {
let warning = "";
2019-07-17 11:33:59 +02:00
stub(log, "warn").callsFake(TestUtil.sanitizeLog((str) => (warning += str)));
ldapAuth.auth(manager, client, wrongUser, correctPassword, function (valid) {
2017-08-30 11:49:21 +02:00
expect(valid).to.equal(false);
expect(warning).to.equal("LDAP Search did not find anything for: eve (0)\n");
log.warn.restore();
2017-08-30 11:49:21 +02:00
done();
});
});
}
describe("LDAP authentication plugin", function () {
// Increase timeout due to unpredictable I/O on CI services
this.timeout(TestUtil.isRunningOnCI() ? 25000 : 5000);
this.slow(300);
let server;
before(function (done) {
2020-01-19 00:14:52 +01:00
stub(log, "info");
server = startLdapServer(done);
2017-08-30 11:49:21 +02:00
});
2017-10-06 11:53:08 +02:00
after(function () {
server.close();
2020-01-19 00:14:52 +01:00
log.info.restore();
2017-08-30 11:49:21 +02:00
});
beforeEach(function () {
Config.values.public = false;
Config.values.ldap.enable = true;
Config.values.ldap.url = "ldap://localhost:" + String(serverPort);
Config.values.ldap.primaryKey = primaryKey;
2017-08-30 11:49:21 +02:00
});
afterEach(function () {
Config.values.public = true;
Config.values.ldap.enable = false;
});
describe("LDAP authentication availability", function () {
it("checks that the configuration is correctly tied to isEnabled()", function () {
Config.values.ldap.enable = true;
2017-08-30 11:49:21 +02:00
expect(ldapAuth.isEnabled()).to.equal(true);
2017-10-06 11:53:08 +02:00
Config.values.ldap.enable = false;
2017-08-30 11:49:21 +02:00
expect(ldapAuth.isEnabled()).to.equal(false);
});
});
describe("Simple LDAP authentication (predefined DN pattern)", function () {
Config.values.ldap.baseDN = baseDN;
2017-08-30 11:49:21 +02:00
testLdapAuth();
});
describe("Advanced LDAP authentication (DN found by a prior search query)", function () {
delete Config.values.ldap.baseDN;
2017-08-30 11:49:21 +02:00
testLdapAuth();
});
});