2011-08-04 20:32:01 +00:00
|
|
|
// Copyright 2011 Mark Cavage, Inc. All rights reserved.
|
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
var Logger = require('bunyan');
|
|
|
|
|
2011-08-04 20:32:01 +00:00
|
|
|
var test = require('tap').test;
|
|
|
|
var uuid = require('node-uuid');
|
|
|
|
|
|
|
|
|
|
|
|
///--- Globals
|
|
|
|
|
|
|
|
var BIND_DN = 'cn=root';
|
|
|
|
var BIND_PW = 'secret';
|
|
|
|
var SOCKET = '/tmp/.' + uuid();
|
|
|
|
|
|
|
|
var SUFFIX = 'dc=test';
|
|
|
|
|
|
|
|
var ldap;
|
|
|
|
var Attribute;
|
|
|
|
var Change;
|
|
|
|
var client;
|
|
|
|
var server;
|
|
|
|
|
|
|
|
|
|
|
|
///--- Tests
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('setup', function (t) {
|
2011-08-04 20:32:01 +00:00
|
|
|
ldap = require('../lib/index');
|
|
|
|
t.ok(ldap);
|
|
|
|
t.ok(ldap.createClient);
|
|
|
|
t.ok(ldap.createServer);
|
|
|
|
t.ok(ldap.Attribute);
|
|
|
|
t.ok(ldap.Change);
|
|
|
|
|
|
|
|
Attribute = ldap.Attribute;
|
|
|
|
Change = ldap.Change;
|
|
|
|
|
|
|
|
server = ldap.createServer();
|
|
|
|
t.ok(server);
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
server.bind(BIND_DN, function (req, res, next) {
|
2011-08-04 20:32:01 +00:00
|
|
|
if (req.credentials !== BIND_PW)
|
|
|
|
return next(new ldap.InvalidCredentialsError('Invalid password'));
|
|
|
|
|
|
|
|
res.end();
|
|
|
|
return next();
|
|
|
|
});
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
server.add(SUFFIX, function (req, res, next) {
|
2011-08-04 20:32:01 +00:00
|
|
|
res.end();
|
|
|
|
return next();
|
|
|
|
});
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
server.compare(SUFFIX, function (req, res, next) {
|
2011-08-23 00:16:36 +00:00
|
|
|
res.end(req.value === 'test');
|
2011-08-04 20:32:01 +00:00
|
|
|
return next();
|
|
|
|
});
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
server.del(SUFFIX, function (req, res, next) {
|
2011-08-04 20:32:01 +00:00
|
|
|
res.end();
|
|
|
|
return next();
|
|
|
|
});
|
|
|
|
|
|
|
|
// LDAP whoami
|
2012-02-18 08:15:52 +00:00
|
|
|
server.exop('1.3.6.1.4.1.4203.1.11.3', function (req, res, next) {
|
2011-08-04 20:32:01 +00:00
|
|
|
res.value = 'u:xxyyz@EXAMPLE.NET';
|
|
|
|
res.end();
|
|
|
|
return next();
|
|
|
|
});
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
server.modify(SUFFIX, function (req, res, next) {
|
2011-08-04 20:32:01 +00:00
|
|
|
res.end();
|
|
|
|
return next();
|
|
|
|
});
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
server.modifyDN(SUFFIX, function (req, res, next) {
|
2011-08-04 20:32:01 +00:00
|
|
|
res.end();
|
|
|
|
return next();
|
|
|
|
});
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
server.search('dc=timeout', function (req, res, next) {
|
2012-01-20 02:02:10 +00:00
|
|
|
// Haha client!
|
|
|
|
});
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
server.search(SUFFIX, function (req, res, next) {
|
2011-09-27 18:49:33 +00:00
|
|
|
|
2011-10-11 18:39:56 +00:00
|
|
|
if (req.dn.equals('cn=ref,' + SUFFIX)) {
|
|
|
|
res.send(res.createSearchReference('ldap://localhost'));
|
|
|
|
} else if (req.dn.equals('cn=bin,' + SUFFIX)) {
|
|
|
|
res.send(res.createSearchEntry({
|
|
|
|
objectName: req.dn,
|
|
|
|
attributes: {
|
2011-10-11 20:56:16 +00:00
|
|
|
'foo;binary': 'wr0gKyDCvCA9IMK+',
|
2011-10-11 22:24:00 +00:00
|
|
|
'gb18030': new Buffer([0xB5, 0xE7, 0xCA, 0xD3, 0xBB, 0xFA]),
|
2011-10-11 20:56:16 +00:00
|
|
|
'objectclass': 'binary'
|
2011-10-11 18:39:56 +00:00
|
|
|
}
|
|
|
|
}));
|
|
|
|
} else {
|
2011-09-27 18:49:33 +00:00
|
|
|
var e = res.createSearchEntry({
|
|
|
|
objectName: req.dn,
|
|
|
|
attributes: {
|
|
|
|
cn: ['unit', 'test'],
|
2011-10-04 17:27:43 +00:00
|
|
|
SN: 'testy'
|
2011-09-27 18:49:33 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
res.send(e);
|
|
|
|
res.send(e);
|
|
|
|
}
|
|
|
|
|
2011-10-11 18:39:56 +00:00
|
|
|
|
2011-08-04 20:32:01 +00:00
|
|
|
res.end();
|
|
|
|
return next();
|
|
|
|
});
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
server.search('dc=empty', function (req, res, next) {
|
2011-09-30 17:48:56 +00:00
|
|
|
res.send({
|
|
|
|
dn: 'dc=empty',
|
|
|
|
attributes: {
|
|
|
|
member: [],
|
2011-10-17 23:37:09 +00:00
|
|
|
'member;range=0-1': ['cn=user1, dc=empty', 'cn=user2, dc=empty']
|
2011-09-30 17:48:56 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
res.end();
|
|
|
|
return next();
|
|
|
|
});
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
server.unbind(function (req, res, next) {
|
2011-08-04 20:32:01 +00:00
|
|
|
res.end();
|
|
|
|
return next();
|
|
|
|
});
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
server.listen(SOCKET, function () {
|
2011-08-04 20:32:01 +00:00
|
|
|
client = ldap.createClient({
|
2012-07-09 12:23:53 +00:00
|
|
|
connectTimeout: 100,
|
2011-09-26 23:45:49 +00:00
|
|
|
socketPath: SOCKET,
|
2012-04-27 03:23:43 +00:00
|
|
|
maxConnections: process.env.LDAP_MAX_CONNS || 5,
|
2012-04-27 18:02:49 +00:00
|
|
|
idleTimeoutMillis: 10,
|
2012-04-27 03:23:43 +00:00
|
|
|
log: new Logger({
|
|
|
|
name: 'ldapjs_unit_test',
|
|
|
|
stream: process.stderr,
|
|
|
|
level: (process.env.LOG_LEVEL || 'info'),
|
2012-04-27 18:02:49 +00:00
|
|
|
serializers: Logger.stdSerializers
|
2012-04-27 03:23:43 +00:00
|
|
|
})
|
2011-08-04 20:32:01 +00:00
|
|
|
});
|
|
|
|
t.ok(client);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('simple bind failure', function (t) {
|
2012-07-09 12:23:53 +00:00
|
|
|
try {
|
2012-02-18 08:15:52 +00:00
|
|
|
client.bind(BIND_DN, uuid(), function (err, res) {
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ok(err);
|
|
|
|
t.notOk(res);
|
|
|
|
|
|
|
|
t.ok(err instanceof ldap.InvalidCredentialsError);
|
|
|
|
t.ok(err instanceof Error);
|
|
|
|
t.ok(err.dn);
|
|
|
|
t.ok(err.message);
|
|
|
|
t.ok(err.stack);
|
|
|
|
|
|
|
|
t.end();
|
|
|
|
});
|
2012-07-09 12:23:53 +00:00
|
|
|
} catch (e) {
|
|
|
|
console.log(e.stack);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
2011-08-04 20:32:01 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
test('simple bind success', function (t) {
|
|
|
|
client.bind(BIND_DN, BIND_PW, function (err, res) {
|
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
t.equal(res.status, 0);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('add success', function (t) {
|
2011-08-04 20:32:01 +00:00
|
|
|
var attrs = [
|
|
|
|
new Attribute({
|
|
|
|
type: 'cn',
|
|
|
|
vals: ['test']
|
|
|
|
})
|
|
|
|
];
|
2012-02-18 08:15:52 +00:00
|
|
|
client.add('cn=add, ' + SUFFIX, attrs, function (err, res) {
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
t.equal(res.status, 0);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('add success with object', function (t) {
|
2011-08-04 21:25:12 +00:00
|
|
|
var entry = {
|
|
|
|
cn: ['unit', 'add'],
|
|
|
|
sn: 'test'
|
|
|
|
};
|
2012-02-18 08:15:52 +00:00
|
|
|
client.add('cn=add, ' + SUFFIX, entry, function (err, res) {
|
2011-08-04 21:25:12 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
t.equal(res.status, 0);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('compare success', function (t) {
|
|
|
|
client.compare('cn=compare, ' + SUFFIX, 'cn', 'test', function (err,
|
2011-08-04 20:32:01 +00:00
|
|
|
matched,
|
|
|
|
res) {
|
|
|
|
t.ifError(err);
|
|
|
|
t.ok(matched);
|
|
|
|
t.ok(res);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('compare false', function (t) {
|
|
|
|
client.compare('cn=compare, ' + SUFFIX, 'cn', 'foo', function (err,
|
2011-08-04 20:32:01 +00:00
|
|
|
matched,
|
|
|
|
res) {
|
|
|
|
t.ifError(err);
|
|
|
|
t.notOk(matched);
|
|
|
|
t.ok(res);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('compare bad suffix', function (t) {
|
|
|
|
client.compare('cn=' + uuid(), 'cn', 'foo', function (err,
|
2011-08-04 20:32:01 +00:00
|
|
|
matched,
|
|
|
|
res) {
|
|
|
|
t.ok(err);
|
|
|
|
t.ok(err instanceof ldap.NoSuchObjectError);
|
|
|
|
t.notOk(matched);
|
|
|
|
t.notOk(res);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('delete success', function (t) {
|
|
|
|
client.del('cn=delete, ' + SUFFIX, function (err, res) {
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('exop success', function (t) {
|
|
|
|
client.exop('1.3.6.1.4.1.4203.1.11.3', function (err, value, res) {
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(value);
|
|
|
|
t.ok(res);
|
|
|
|
t.equal(value, 'u:xxyyz@EXAMPLE.NET');
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('exop invalid', function (t) {
|
|
|
|
client.exop('1.2.3.4', function (err, res) {
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ok(err);
|
|
|
|
t.ok(err instanceof ldap.ProtocolError);
|
|
|
|
t.notOk(res);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('bogus exop (GH-17)', function (t) {
|
|
|
|
client.exop('cn=root', function (err, value) {
|
2011-09-23 16:00:28 +00:00
|
|
|
t.ok(err);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('modify success', function (t) {
|
2011-08-04 20:32:01 +00:00
|
|
|
var change = new Change({
|
|
|
|
type: 'Replace',
|
|
|
|
modification: new Attribute({
|
|
|
|
type: 'cn',
|
|
|
|
vals: ['test']
|
|
|
|
})
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
client.modify('cn=modify, ' + SUFFIX, change, function (err, res) {
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
t.equal(res.status, 0);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('modify change plain object success', function (t) {
|
2011-08-04 21:25:12 +00:00
|
|
|
var change = new Change({
|
|
|
|
type: 'Replace',
|
|
|
|
modification: {
|
|
|
|
cn: 'test'
|
|
|
|
}
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
client.modify('cn=modify, ' + SUFFIX, change, function (err, res) {
|
2011-08-04 21:25:12 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
t.equal(res.status, 0);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('modify array success', function (t) {
|
2011-08-04 20:32:01 +00:00
|
|
|
var changes = [
|
|
|
|
new Change({
|
|
|
|
operation: 'Replace',
|
|
|
|
modification: new Attribute({
|
|
|
|
type: 'cn',
|
|
|
|
vals: ['test']
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
new Change({
|
|
|
|
operation: 'Delete',
|
|
|
|
modification: new Attribute({
|
|
|
|
type: 'sn'
|
|
|
|
})
|
|
|
|
})
|
|
|
|
];
|
2012-02-18 08:15:52 +00:00
|
|
|
client.modify('cn=modify, ' + SUFFIX, changes, function (err, res) {
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
t.equal(res.status, 0);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('modify change plain object success (GH-31)', function (t) {
|
2011-11-08 21:31:00 +00:00
|
|
|
var change = {
|
|
|
|
type: 'replace',
|
|
|
|
modification: {
|
|
|
|
cn: 'test',
|
|
|
|
sn: 'bar'
|
|
|
|
}
|
|
|
|
};
|
2012-02-18 08:15:52 +00:00
|
|
|
client.modify('cn=modify, ' + SUFFIX, change, function (err, res) {
|
2011-11-08 21:31:00 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
t.equal(res.status, 0);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('modify DN new RDN only', function (t) {
|
|
|
|
client.modifyDN('cn=old, ' + SUFFIX, 'cn=new', function (err, res) {
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
t.equal(res.status, 0);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('modify DN new superior', function (t) {
|
|
|
|
client.modifyDN('cn=old, ' + SUFFIX, 'cn=new, dc=foo', function (err, res) {
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
t.equal(res.status, 0);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('search basic', function (t) {
|
|
|
|
client.search('cn=test, ' + SUFFIX, '(objectclass=*)', function (err, res) {
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
var gotEntry = 0;
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('searchEntry', function (entry) {
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ok(entry);
|
|
|
|
t.ok(entry instanceof ldap.SearchEntry);
|
|
|
|
t.equal(entry.dn.toString(), 'cn=test, ' + SUFFIX);
|
|
|
|
t.ok(entry.attributes);
|
|
|
|
t.ok(entry.attributes.length);
|
2011-10-04 17:27:43 +00:00
|
|
|
t.equal(entry.attributes[0].type, 'cn');
|
|
|
|
t.equal(entry.attributes[1].type, 'SN');
|
2011-08-04 21:25:12 +00:00
|
|
|
t.ok(entry.object);
|
2011-08-04 20:32:01 +00:00
|
|
|
gotEntry++;
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('error', function (err) {
|
2011-08-04 20:32:01 +00:00
|
|
|
t.fail(err);
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('end', function (res) {
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ok(res);
|
|
|
|
t.ok(res instanceof ldap.SearchResponse);
|
|
|
|
t.equal(res.status, 0);
|
|
|
|
t.equal(gotEntry, 2);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('search referral', function (t) {
|
|
|
|
client.search('cn=ref, ' + SUFFIX, '(objectclass=*)', function (err, res) {
|
2011-09-27 18:49:33 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
var gotEntry = 0;
|
|
|
|
var gotReferral = false;
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('searchEntry', function (entry) {
|
2011-09-27 18:49:33 +00:00
|
|
|
gotEntry++;
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('searchReference', function (referral) {
|
2011-09-27 18:49:33 +00:00
|
|
|
gotReferral = true;
|
|
|
|
t.ok(referral);
|
|
|
|
t.ok(referral instanceof ldap.SearchReference);
|
|
|
|
t.ok(referral.uris);
|
|
|
|
t.ok(referral.uris.length);
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('error', function (err) {
|
2011-09-27 18:49:33 +00:00
|
|
|
t.fail(err);
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('end', function (res) {
|
2011-09-27 18:49:33 +00:00
|
|
|
t.ok(res);
|
|
|
|
t.ok(res instanceof ldap.SearchResponse);
|
|
|
|
t.equal(res.status, 0);
|
|
|
|
t.equal(gotEntry, 0);
|
|
|
|
t.ok(gotReferral);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('search empty attribute', function (t) {
|
|
|
|
client.search('dc=empty', '(objectclass=*)', function (err, res) {
|
2011-09-30 17:48:56 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
var gotEntry = 0;
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('searchEntry', function (entry) {
|
2011-09-30 17:48:56 +00:00
|
|
|
var obj = entry.toObject();
|
|
|
|
t.equal('dc=empty', obj.dn);
|
|
|
|
t.ok(obj.member);
|
|
|
|
t.equal(obj.member.length, 0);
|
|
|
|
t.ok(obj['member;range=0-1']);
|
|
|
|
t.ok(obj['member;range=0-1'].length);
|
|
|
|
gotEntry++;
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('error', function (err) {
|
2011-09-30 17:48:56 +00:00
|
|
|
t.fail(err);
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('end', function (res) {
|
2011-10-11 20:56:16 +00:00
|
|
|
t.ok(res);
|
|
|
|
t.ok(res instanceof ldap.SearchResponse);
|
|
|
|
t.equal(res.status, 0);
|
|
|
|
t.equal(gotEntry, 1);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('GH-21 binary attributes', function (t) {
|
|
|
|
client.search('cn=bin, ' + SUFFIX, '(objectclass=*)', function (err, res) {
|
2011-10-11 20:56:16 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
var gotEntry = 0;
|
|
|
|
var expect = new Buffer('\u00bd + \u00bc = \u00be', 'utf8');
|
2011-10-11 22:24:00 +00:00
|
|
|
var expect2 = new Buffer([0xB5, 0xE7, 0xCA, 0xD3, 0xBB, 0xFA]);
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('searchEntry', function (entry) {
|
2011-10-11 20:56:16 +00:00
|
|
|
t.ok(entry);
|
|
|
|
t.ok(entry instanceof ldap.SearchEntry);
|
|
|
|
t.equal(entry.dn.toString(), 'cn=bin, ' + SUFFIX);
|
|
|
|
t.ok(entry.attributes);
|
|
|
|
t.ok(entry.attributes.length);
|
|
|
|
t.equal(entry.attributes[0].type, 'foo;binary');
|
|
|
|
t.equal(entry.attributes[0].vals[0], expect.toString('base64'));
|
|
|
|
t.equal(entry.attributes[0].buffers[0].toString('base64'),
|
|
|
|
expect.toString('base64'));
|
2011-10-11 22:24:00 +00:00
|
|
|
|
|
|
|
t.ok(entry.attributes[1].type, 'gb18030');
|
|
|
|
t.equal(entry.attributes[1].buffers.length, 1);
|
|
|
|
t.equal(expect2.length, entry.attributes[1].buffers[0].length);
|
|
|
|
for (var i = 0; i < expect2.length; i++)
|
|
|
|
t.equal(expect2[i], entry.attributes[1].buffers[0][i]);
|
|
|
|
|
2011-10-11 20:56:16 +00:00
|
|
|
t.ok(entry.object);
|
|
|
|
gotEntry++;
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('error', function (err) {
|
2011-10-11 20:56:16 +00:00
|
|
|
t.fail(err);
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('end', function (res) {
|
2011-09-30 17:48:56 +00:00
|
|
|
t.ok(res);
|
|
|
|
t.ok(res instanceof ldap.SearchResponse);
|
|
|
|
t.equal(res.status, 0);
|
|
|
|
t.equal(gotEntry, 1);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('GH-23 case insensitive attribute filtering', function (t) {
|
2011-10-11 17:43:27 +00:00
|
|
|
var opts = {
|
|
|
|
filter: '(objectclass=*)',
|
|
|
|
attributes: ['Cn']
|
|
|
|
};
|
2012-02-18 08:15:52 +00:00
|
|
|
client.search('cn=test, ' + SUFFIX, opts, function (err, res) {
|
2011-10-11 17:43:27 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
var gotEntry = 0;
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('searchEntry', function (entry) {
|
2011-10-11 17:43:27 +00:00
|
|
|
t.ok(entry);
|
|
|
|
t.ok(entry instanceof ldap.SearchEntry);
|
|
|
|
t.equal(entry.dn.toString(), 'cn=test, ' + SUFFIX);
|
|
|
|
t.ok(entry.attributes);
|
|
|
|
t.ok(entry.attributes.length);
|
|
|
|
t.equal(entry.attributes[0].type, 'cn');
|
|
|
|
t.ok(entry.object);
|
|
|
|
gotEntry++;
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('error', function (err) {
|
2011-10-11 17:43:27 +00:00
|
|
|
t.fail(err);
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('end', function (res) {
|
2011-10-11 17:43:27 +00:00
|
|
|
t.ok(res);
|
|
|
|
t.ok(res instanceof ldap.SearchResponse);
|
|
|
|
t.equal(res.status, 0);
|
|
|
|
t.equal(gotEntry, 2);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2011-10-11 18:39:56 +00:00
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('GH-24 attribute selection of *', function (t) {
|
2011-10-11 18:39:56 +00:00
|
|
|
var opts = {
|
|
|
|
filter: '(objectclass=*)',
|
|
|
|
attributes: ['*']
|
|
|
|
};
|
2012-02-18 08:15:52 +00:00
|
|
|
client.search('cn=test, ' + SUFFIX, opts, function (err, res) {
|
2011-10-11 18:39:56 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.ok(res);
|
|
|
|
var gotEntry = 0;
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('searchEntry', function (entry) {
|
2011-10-11 18:39:56 +00:00
|
|
|
t.ok(entry);
|
|
|
|
t.ok(entry instanceof ldap.SearchEntry);
|
|
|
|
t.equal(entry.dn.toString(), 'cn=test, ' + SUFFIX);
|
|
|
|
t.ok(entry.attributes);
|
|
|
|
t.ok(entry.attributes.length);
|
|
|
|
t.equal(entry.attributes[0].type, 'cn');
|
|
|
|
t.equal(entry.attributes[1].type, 'SN');
|
|
|
|
t.ok(entry.object);
|
|
|
|
gotEntry++;
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('error', function (err) {
|
2011-10-11 18:39:56 +00:00
|
|
|
t.fail(err);
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
res.on('end', function (res) {
|
2011-10-11 18:39:56 +00:00
|
|
|
t.ok(res);
|
|
|
|
t.ok(res instanceof ldap.SearchResponse);
|
|
|
|
t.equal(res.status, 0);
|
|
|
|
t.equal(gotEntry, 2);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('abandon (GH-27)', function (t) {
|
|
|
|
client.abandon(401876543, function (err) {
|
2011-11-07 22:13:53 +00:00
|
|
|
t.ifError(err);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-04-17 22:14:06 +00:00
|
|
|
test('search timeout (GH-51)', function (t) {
|
|
|
|
client.timeout = 250;
|
|
|
|
client.search('dc=timeout', 'objectclass=*', function (err, res) {
|
2011-11-08 21:10:39 +00:00
|
|
|
t.ifError(err);
|
2012-04-17 22:14:06 +00:00
|
|
|
res.on('error', function () {
|
|
|
|
t.end();
|
|
|
|
});
|
2011-11-08 21:10:39 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-04-27 03:23:43 +00:00
|
|
|
|
2012-04-17 22:14:06 +00:00
|
|
|
test('unbind (GH-30)', function (t) {
|
|
|
|
client.unbind(function (err) {
|
|
|
|
t.ifError(err);
|
2012-01-20 02:02:10 +00:00
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('shutdown', function (t) {
|
2012-04-17 22:14:06 +00:00
|
|
|
server.on('close', function () {
|
|
|
|
t.end();
|
2011-08-04 20:32:01 +00:00
|
|
|
});
|
2012-04-17 22:14:06 +00:00
|
|
|
server.close();
|
2011-08-04 20:32:01 +00:00
|
|
|
});
|