2019-08-27 21:11:49 +00:00
|
|
|
'use strict'
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 21:11:49 +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
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('new no args', function (t) {
|
2019-08-27 21:11:49 +00:00
|
|
|
t.ok(new SearchEntry())
|
|
|
|
t.end()
|
|
|
|
})
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('new with args', function (t) {
|
2019-08-27 18:17:33 +00:00
|
|
|
const res = new SearchEntry({
|
2011-08-04 20:32:01 +00:00
|
|
|
messageID: 123,
|
|
|
|
objectName: dn.parse('cn=foo, o=test'),
|
2019-08-27 21:11:49 +00:00
|
|
|
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
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('parse', function (t) {
|
2019-08-27 21:11:49 +00:00
|
|
|
const ber = new BerWriter()
|
|
|
|
ber.writeString('cn=foo, o=test')
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
ber.startSequence()
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 21:11:49 +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
|
|
|
|
2019-08-27 21:11:49 +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
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
ber.endSequence()
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 21:11:49 +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
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('toBer', function (t) {
|
2019-08-27 18:17:33 +00:00
|
|
|
const res = new SearchEntry({
|
2011-08-04 20:32:01 +00:00
|
|
|
messageID: 123,
|
|
|
|
objectName: dn.parse('cn=foo, o=test'),
|
2019-08-27 21:11:49 +00:00
|
|
|
attributes: [new Attribute({ type: 'cn', vals: ['foo'] }),
|
|
|
|
new Attribute({ type: 'objectclass', vals: ['person'] })]
|
|
|
|
})
|
|
|
|
t.ok(res)
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 21:11:49 +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
|
|
|
|
2019-08-27 21:11:49 +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
|
|
|
|
2019-08-27 21:11:49 +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
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
t.end()
|
|
|
|
})
|