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

92 lines
2.3 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) {
t.ok(new SearchEntry())
t.end()
})
2011-08-04 20:32:01 +00:00
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')
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()
})
2011-08-04 20:32:01 +00:00
test('parse', function (t) {
const ber = new BerWriter()
ber.writeString('cn=foo, o=test')
2011-08-04 20:32:01 +00:00
ber.startSequence()
2011-08-04 20:32:01 +00:00
ber.startSequence()
ber.writeString('cn')
ber.startSequence(0x31)
ber.writeString('foo')
ber.endSequence()
ber.endSequence()
2011-08-04 20:32:01 +00:00
ber.startSequence()
ber.writeString('objectclass')
ber.startSequence(0x31)
ber.writeString('person')
ber.endSequence()
ber.endSequence()
2011-08-04 20:32:01 +00:00
ber.endSequence()
2011-08-04 20:32:01 +00:00
const res = new SearchEntry()
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()
})
2011-08-04 20:32:01 +00:00
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)
2011-08-04 20:32:01 +00:00
const ber = new BerReader(res.toBer())
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())
2011-08-04 20:32:01 +00:00
t.ok(ber.readSequence())
t.equal(ber.readString(), 'cn')
t.equal(ber.readSequence(), 0x31)
t.equal(ber.readString(), 'foo')
2011-08-04 20:32:01 +00:00
t.ok(ber.readSequence())
t.equal(ber.readString(), 'objectclass')
t.equal(ber.readSequence(), 0x31)
t.equal(ber.readString(), 'person')
2011-08-04 20:32:01 +00:00
t.end()
})