123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- 'use strict'
- const tap = require('tap')
- const { operations } = require('@ldapjs/protocol')
- const { BerReader, BerWriter } = require('@ldapjs/asn1')
- const { DN } = require('@ldapjs/dn')
- const CompareRequest = require('./compare-request')
- const { compareRequestBytes } = require('./_fixtures/message-byte-arrays')
- tap.test('basic', t => {
- t.test('constructor no args', async t => {
- const req = new CompareRequest()
- t.strictSame(req.pojo, {
- messageId: 1,
- protocolOp: operations.LDAP_REQ_COMPARE,
- type: 'CompareRequest',
- entry: null,
- attribute: '',
- value: '',
- controls: []
- })
- })
- t.test('constructor with args', async t => {
- const req = new CompareRequest({
- entry: 'dn=foo,dc=example,dc=com',
- attribute: 'foo',
- value: 'bar'
- })
- t.strictSame(req.pojo, {
- messageId: 1,
- protocolOp: operations.LDAP_REQ_COMPARE,
- type: 'CompareRequest',
- entry: 'dn=foo,dc=example,dc=com',
- attribute: 'foo',
- value: 'bar',
- controls: []
- })
- })
- t.test('.type', async t => {
- const req = new CompareRequest()
- t.equal(req.type, 'CompareRequest')
- })
- t.test('.dn', async t => {
- const req = new CompareRequest({ entry: 'dn=foo,dc=example,dc=com' })
- t.equal(req.dn.toString(), 'dn=foo,dc=example,dc=com')
- })
- t.end()
- })
- tap.test('.attribute', t => {
- t.test('gets and sets', async t => {
- const req = new CompareRequest()
- t.equal(req.attribute, '')
- req.attribute = 'foo'
- t.equal(req.attribute, 'foo')
- })
- t.end()
- })
- tap.test('.entry', t => {
- t.test('gets and sets', async t => {
- const req = new CompareRequest()
- t.equal(req.entry, null)
- req.entry = 'cn=foo'
- t.equal(req.entry.toString(), 'cn=foo')
- req.entry = DN.fromString('sn=bar')
- t.equal(req.entry.toString(), 'sn=bar')
- })
- t.test('throws for bad value', async t => {
- const req = new CompareRequest()
- t.throws(
- () => {
- req.entry = { cn: 'foo' }
- },
- 'entry must be a valid DN string or instance of LdapDn'
- )
- })
- t.end()
- })
- tap.test('.value', t => {
- t.test('gets and sets', async t => {
- const req = new CompareRequest()
- t.equal(req.value, '')
- req.value = 'foo'
- t.equal(req.value, 'foo')
- })
- t.end()
- })
- tap.test('_toBer', t => {
- t.test('converts instance to BER', async t => {
- const req = new CompareRequest({
- messageId: 2,
- entry: 'uid=jdoe,ou=People,dc=example,dc=com',
- attribute: 'employeeType',
- value: 'salaried'
- })
- const writer = new BerWriter()
- req._toBer(writer)
- t.equal(
- Buffer.from(compareRequestBytes.slice(5)).compare(writer.buffer),
- 0
- )
- })
- t.end()
- })
- tap.test('_pojo', t => {
- t.test('returns a pojo representation', async t => {
- const req = new CompareRequest({
- entry: 'cn=foo',
- attribute: 'bar',
- value: 'baz'
- })
- t.strictSame(req._pojo(), {
- entry: 'cn=foo',
- attribute: 'bar',
- value: 'baz'
- })
- })
- t.end()
- })
- tap.test('#parseToPojo', t => {
- t.test('throws if operation incorrect', async t => {
- const reqBuffer = Buffer.from(compareRequestBytes)
- reqBuffer[5] = 0x61
- const reader = new BerReader(reqBuffer)
- reader.readSequence()
- reader.readInt()
- t.throws(
- () => CompareRequest.parseToPojo(reader),
- Error('found wrong protocol operation: 0x61')
- )
- })
- t.test('returns a pojo representation', async t => {
- const reqBuffer = Buffer.from(compareRequestBytes)
- const reader = new BerReader(reqBuffer)
- reader.readSequence()
- reader.readInt()
- const pojo = CompareRequest.parseToPojo(reader)
- t.equal(pojo.protocolOp, operations.LDAP_REQ_COMPARE)
- t.equal(pojo.entry, 'uid=jdoe,ou=People,dc=example,dc=com')
- t.equal(pojo.attribute, 'employeeType')
- t.equal(pojo.value, 'salaried')
- })
- t.end()
- })
|