Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
Add test for issue 860
Browse files Browse the repository at this point in the history
This PR adds a new integration test for issue #860.
  • Loading branch information
jsumners committed Mar 27, 2023
1 parent 9613308 commit 8c58f46
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 3 deletions.
48 changes: 48 additions & 0 deletions test-integration/client/issue-860.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
'use strict'

const tap = require('tap')
const ldapjs = require('../../lib')
const parseDN = ldapjs.parseDN

const SCHEME = process.env.SCHEME || 'ldap'
const HOST = process.env.HOST || '127.0.0.1'
const PORT = process.env.PORT || 389
const baseURL = `${SCHEME}://${HOST}:${PORT}`

const client = ldapjs.createClient({ url: baseURL })

const opts = {
filter: '(&(objectClass=person))',
scope: 'sub',
paged: true,
sizeLimit: 100,
attributes: ['cn', 'employeeID']
}

const baseDN = parseDN('ou=テスト,dc=planetexpress,dc=com')

tap.test('can search OUs with Japanese characters', t => {
client.bind('cn=admin,dc=planetexpress,dc=com', 'GoodNewsEveryone', (err) => {
t.error(err, 'bind error')
})

client.search(baseDN.toString(), opts, (err, res) => {
t.error(err, 'search error')
res.on('searchEntry', (entry) => {
t.match(entry.pojo, {
type: 'SearchResultEntry',
objectName: 'cn=jdoe,ou=\\e3\\83\\86\\e3\\82\\b9\\e3\\83\\88,dc=planetexpress,dc=com',
attributes: [{
type: 'cn',
values: ['John', 'jdoe']
}]
})
})
res.on('error', (err) => {
t.error(err, 'search entry error')
})
res.on('end', () => {
client.unbind(t.end)
})
})
})
6 changes: 3 additions & 3 deletions test-integration/client/issues.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ tap.test('can access large groups (issue #582)', t => {

const memberAttr = results[0].attributes.find(a => a.type === 'member')
t.ok(memberAttr)
t.ok(memberAttr.vals)
t.type(memberAttr.vals, Array)
t.equal(memberAttr.vals.length, 2000)
t.ok(memberAttr.values)
t.type(memberAttr.values, Array)
t.equal(memberAttr.values.length, 2000)

client.unbind(t.end)
})
Expand Down

0 comments on commit 8c58f46

Please sign in to comment.