node-ldapjs/test/messages/search_entry.test.js

92 lines
2.4 KiB
JavaScript
Raw Normal View History

'use strict';
2011-08-04 20:32:01 +00:00
const { test } = require('tap');
const { BerReader, BerWriter } = require('asn1');
const { SearchEntry, Attribute, dn } = require('../../lib');
2011-08-04 20:32:01 +00:00
test('new no args', function (t) {
2011-08-04 20:32:01 +00:00
t.ok(new SearchEntry());
t.end();
});
test('new with args', function (t) {
const res = new SearchEntry({
2011-08-04 20:32:01 +00:00
messageID: 123,
objectName: dn.parse('cn=foo, o=test'),
attributes: [new Attribute({type: 'cn', vals: ['foo']}),
new Attribute({type: 'objectclass', vals: ['person']})]
});
t.ok(res);
t.equal(res.messageID, 123);
t.equal(res.dn.toString(), 'cn=foo, o=test');
2011-08-04 20:32:01 +00:00
t.equal(res.attributes.length, 2);
t.equal(res.attributes[0].type, 'cn');
t.equal(res.attributes[0].vals[0], 'foo');
t.equal(res.attributes[1].type, 'objectclass');
t.equal(res.attributes[1].vals[0], 'person');
t.end();
});
test('parse', function (t) {
const ber = new BerWriter();
2011-08-04 20:32:01 +00:00
ber.writeString('cn=foo, o=test');
ber.startSequence();
ber.startSequence();
ber.writeString('cn');
ber.startSequence(0x31);
ber.writeString('foo');
ber.endSequence();
ber.endSequence();
ber.startSequence();
ber.writeString('objectclass');
ber.startSequence(0x31);
ber.writeString('person');
ber.endSequence();
ber.endSequence();
ber.endSequence();
const res = new SearchEntry();
2011-08-04 20:32:01 +00:00
t.ok(res._parse(new BerReader(ber.buffer)));
t.equal(res.dn, 'cn=foo, o=test');
t.equal(res.attributes.length, 2);
t.equal(res.attributes[0].type, 'cn');
t.equal(res.attributes[0].vals[0], 'foo');
t.equal(res.attributes[1].type, 'objectclass');
t.equal(res.attributes[1].vals[0], 'person');
t.end();
});
test('toBer', function (t) {
const res = new SearchEntry({
2011-08-04 20:32:01 +00:00
messageID: 123,
objectName: dn.parse('cn=foo, o=test'),
attributes: [new Attribute({type: 'cn', vals: ['foo']}),
new Attribute({type: 'objectclass', vals: ['person']})]
});
t.ok(res);
const ber = new BerReader(res.toBer());
2011-08-04 20:32:01 +00:00
t.ok(ber);
t.equal(ber.readSequence(), 0x30);
t.equal(ber.readInt(), 123);
t.equal(ber.readSequence(), 0x64);
t.equal(ber.readString(), 'cn=foo, o=test');
t.ok(ber.readSequence());
t.ok(ber.readSequence());
t.equal(ber.readString(), 'cn');
t.equal(ber.readSequence(), 0x31);
t.equal(ber.readString(), 'foo');
t.ok(ber.readSequence());
t.equal(ber.readString(), 'objectclass');
t.equal(ber.readSequence(), 0x31);
t.equal(ber.readString(), 'person');
t.end();
});