我有一个LdapJS服务器,该服务器实现了标准操作和用于检查运行状况的扩展操作:
const server = ldap.createServer();
server.exop('healthcheck', (req, res, next) => {
res.end();
console.log('ended');
return next();
});
...
然后,我编写了一个简单的客户端脚本来ping healthcheck服务:
const { createClient } = require('ldapjs');
const client = createClient({
url: 'ldap://localhost:1389',
timeout: 2000,
connectTimeout: 2000
});
client.exop('healthcheck', (err, value, res) => {
if (err) {
console.log(`ERROR: ${err.message}`);
process.exit(1);
}
else {
console.log(`STATUS: ${res.status}`);
process.exit(0);
}
});
问题是服务器正确接收了exop
(我可以在其回调中看到日志),但是客户端始终记录:ERROR: request timeout (client interrupt)
。
为什么请求未正确终止?
编辑
我为exop编写了一个摩卡测试,它有效。似乎该问题与运行状况检查脚本中的独立调用有关。
describe('#healthcheck()', function () {
before(function () {
server = createServer();
server.listen(config.get('port'), config.get('host'), () => {});
});
after(function () {
server.close();
});
it('should return status 0', function (done) {
const { createClient } = require('ldapjs');
const client = createClient({
url: 'ldap://localhost:1389',
timeout: 2000,
connectTimeout: 2000
});
client.exop('healthcheck', (err, value, res) => {
should.not.exist(err);
res.status.should.be.equal(0);
client.destroy();
return done();
});
});
});