node-ldapjs/test/server.test.js

311 lines
7.8 KiB
JavaScript
Raw Normal View History

'use strict'
2014-01-22 18:21:57 +00:00
const tap = require('tap')
const vasync = require('vasync')
const { getSock } = require('./utils')
const ldap = require('../lib')
2014-01-22 18:21:57 +00:00
const SERVER_PORT = process.env.SERVER_PORT || 1389
const SUFFIX = 'dc=test'
2014-01-22 18:21:57 +00:00
2019-08-27 13:08:00 +00:00
tap.beforeEach(function (done, t) {
// We do not need a `.afterEach` to clean up the sock files because that
// is done when the server is destroyed.
t.context.sock = getSock()
done()
})
tap.test('basic create', function (t) {
const server = ldap.createServer()
t.ok(server)
t.end()
})
2014-01-22 18:21:57 +00:00
2019-08-27 13:08:00 +00:00
tap.test('properties', function (t) {
const server = ldap.createServer()
t.equal(server.name, 'LDAPServer')
// TODO: better test
server.maxConnections = 10
t.equal(server.maxConnections, 10)
t.equal(server.url, null, 'url empty before bind')
// listen on a random port so we have a url
server.listen(0, 'localhost', function () {
t.ok(server.url)
server.close(() => t.end())
})
})
2019-08-27 13:08:00 +00:00
tap.test('listen on unix/named socket', function (t) {
const server = ldap.createServer()
2019-08-27 13:08:00 +00:00
server.listen(t.context.sock, function () {
t.ok(server.url)
t.equal(server.url.split(':')[0], 'ldapi')
server.close(() => t.end())
})
})
2019-08-27 13:08:00 +00:00
tap.test('listen on static port', function (t) {
const server = ldap.createServer()
server.listen(SERVER_PORT, '127.0.0.1', function () {
const addr = server.address()
t.equal(addr.port, parseInt(SERVER_PORT, 10))
t.equals(server.url, `ldap://127.0.0.1:${SERVER_PORT}`)
server.close(() => t.end())
})
})
2014-01-22 18:21:57 +00:00
2019-08-27 13:08:00 +00:00
tap.test('listen on ephemeral port', function (t) {
const server = ldap.createServer()
2014-01-22 18:21:57 +00:00
server.listen(0, 'localhost', function () {
const addr = server.address()
t.ok(addr.port > 0)
t.ok(addr.port < 65535)
server.close(() => t.end())
})
})
2014-01-22 18:21:57 +00:00
2019-08-27 13:08:00 +00:00
tap.test('route order', function (t) {
function generateHandler (response) {
const func = function handler (req, res, next) {
2014-01-22 18:21:57 +00:00
res.send({
dn: response,
attributes: { }
})
res.end()
return next()
}
return func
2014-01-22 18:21:57 +00:00
}
const server = ldap.createServer()
const sock = t.context.sock
const dnShort = SUFFIX
const dnMed = 'dc=sub, ' + SUFFIX
const dnLong = 'dc=long, dc=sub, ' + SUFFIX
2014-01-22 18:21:57 +00:00
// Mount routes out of order
server.search(dnMed, generateHandler(dnMed))
server.search(dnShort, generateHandler(dnShort))
server.search(dnLong, generateHandler(dnLong))
2014-01-22 18:21:57 +00:00
server.listen(sock, function () {
t.ok(true, 'server listen')
const client = ldap.createClient({ socketPath: sock })
client.on('connect', () => {
vasync.forEachParallel({
func: runSearch,
inputs: [dnShort, dnMed, dnLong]
}, function (err, results) {
t.error(err)
client.unbind()
server.close(() => t.end())
})
})
function runSearch (value, cb) {
2014-01-22 18:21:57 +00:00
client.search(value, '(objectclass=*)', function (err, res) {
t.error(err)
t.ok(res)
2014-01-22 18:21:57 +00:00
res.on('searchEntry', function (entry) {
t.equal(entry.dn.toString(), value)
})
2014-01-22 18:21:57 +00:00
res.on('end', function () {
cb()
})
})
2014-01-22 18:21:57 +00:00
}
})
})
2014-01-22 18:21:57 +00:00
2019-08-27 13:08:00 +00:00
tap.test('route absent', function (t) {
const server = ldap.createServer()
const DN_ROUTE = 'dc=base'
const DN_MISSING = 'dc=absent'
2014-01-22 18:21:57 +00:00
server.bind(DN_ROUTE, function (req, res, next) {
res.end()
return next()
})
2014-01-22 18:21:57 +00:00
2019-08-27 13:08:00 +00:00
server.listen(t.context.sock, function () {
t.ok(true, 'server startup')
2014-01-22 18:21:57 +00:00
vasync.parallel({
funcs: [
function presentBind (cb) {
const clt = ldap.createClient({ socketPath: t.context.sock })
2014-01-22 18:21:57 +00:00
clt.bind(DN_ROUTE, '', function (err) {
t.notOk(err)
clt.unbind()
cb()
})
2014-01-22 18:21:57 +00:00
},
function absentBind (cb) {
const clt = ldap.createClient({ socketPath: t.context.sock })
2014-01-22 18:21:57 +00:00
clt.bind(DN_MISSING, '', function (err) {
t.ok(err)
t.equal(err.code, ldap.LDAP_NO_SUCH_OBJECT)
clt.unbind()
cb()
})
2014-01-22 18:21:57 +00:00
}
]
}, function (err, result) {
t.notOk(err)
server.close(() => t.end())
})
})
})
2019-08-27 13:08:00 +00:00
tap.test('route unbind', function (t) {
const server = ldap.createServer()
server.unbind(function (req, res, next) {
t.ok(true, 'server unbind successful')
res.end()
return next()
})
2019-08-27 13:08:00 +00:00
server.listen(t.context.sock, function () {
t.ok(true, 'server startup')
const client = ldap.createClient({ socketPath: t.context.sock })
client.bind('', '', function (err) {
t.error(err, 'client bind error')
client.unbind(function (err) {
t.error(err, 'client unbind error')
server.close(() => t.end())
})
})
})
})
2019-08-27 13:08:00 +00:00
tap.test('strict routing', function (t) {
const testDN = 'cn=valid'
let clt
let server
const sock = t.context.sock
2015-10-31 14:01:50 +00:00
vasync.pipeline({
funcs: [
function setup (_, cb) {
2015-10-31 14:01:50 +00:00
server = ldap.createServer({
// strictDN: true - on by default
})
2015-10-31 14:01:50 +00:00
// invalid DNs would go to default handler
server.search('', function (req, res, next) {
t.ok(req.dn)
t.equal(typeof (req.dn), 'object')
t.equal(req.dn.toString(), testDN)
res.end()
next()
})
2015-10-31 14:01:50 +00:00
server.listen(sock, function () {
t.ok(true, 'server startup')
2015-10-31 14:01:50 +00:00
clt = ldap.createClient({
socketPath: sock,
strictDN: false
})
cb()
})
2015-10-31 14:01:50 +00:00
},
function testBad (_, cb) {
clt.search('not a dn', { scope: 'base' }, function (err, res) {
t.error(err)
2015-10-31 14:01:50 +00:00
res.once('error', function (err2) {
t.ok(err2)
t.equal(err2.code, ldap.LDAP_INVALID_DN_SYNTAX)
cb()
})
2015-10-31 14:01:50 +00:00
res.once('end', function () {
t.fail('accepted invalid dn')
cb(Error('bogus'))
})
})
2015-10-31 14:01:50 +00:00
},
function testGood (_, cb) {
clt.search(testDN, { scope: 'base' }, function (err, res) {
t.error(err)
2015-10-31 14:01:50 +00:00
res.once('error', function (err2) {
t.error(err2)
cb(err2)
})
2015-10-31 14:01:50 +00:00
res.once('end', function (result) {
t.ok(result, 'accepted invalid dn')
cb()
})
})
2015-10-31 14:01:50 +00:00
}
]
}, function (err) {
t.error(err)
2015-10-31 14:01:50 +00:00
if (clt) {
clt.destroy()
2015-10-31 14:01:50 +00:00
}
server.close(() => t.end())
})
})
2015-10-31 14:01:50 +00:00
2019-08-27 13:08:00 +00:00
tap.test('non-strict routing', function (t) {
const server = ldap.createServer({
strictDN: false
})
const testDN = 'this ain\'t a DN'
// invalid DNs go to default handler
server.search('', function (req, res, next) {
t.ok(req.dn)
t.equal(typeof (req.dn), 'string')
t.equal(req.dn, testDN)
res.end()
next()
})
2019-08-27 13:08:00 +00:00
server.listen(t.context.sock, function () {
t.ok(true, 'server startup')
const clt = ldap.createClient({
2019-08-27 13:08:00 +00:00
socketPath: t.context.sock,
strictDN: false
})
clt.search(testDN, { scope: 'base' }, function (err, res) {
t.error(err)
res.on('end', function () {
clt.destroy()
server.close(() => t.end())
})
})
})
})
2019-08-27 13:08:00 +00:00
tap.test('close accept a callback', function (t) {
const server = ldap.createServer()
2019-08-27 13:08:00 +00:00
// callback is called when the server is closed
server.listen(0, function (err) {
t.error(err)
server.close(function (err) {
t.error(err)
t.end()
})
})
})
2019-08-27 13:08:00 +00:00
tap.test('close without error calls callback', function (t) {
const server = ldap.createServer()
2019-08-27 13:08:00 +00:00
// when the server is closed without error, the callback parameter is undefined
server.listen(1389, '127.0.0.1', function (err) {
t.error(err)
server.close(function (err) {
t.error(err)
t.end()
})
})
})
2019-08-27 13:08:00 +00:00
tap.test('close passes error to callback', function (t) {
const server = ldap.createServer()
2019-08-27 13:08:00 +00:00
// when the server is closed with an error, the error is the first parameter of the callback
server.close(function (err) {
t.ok(err)
t.end()
})
})