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 #883
Browse files Browse the repository at this point in the history
  • Loading branch information
jsumners committed May 18, 2023
1 parent bdaaf29 commit 0558c1a
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions test-integration/client/issue-883.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
'use strict'

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

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 })

tap.test('adds entries with Korean characters', t => {
t.plan(4)

client.bind('cn=admin,dc=planetexpress,dc=com', 'GoodNewsEveryone', (err) => {
t.error(err, 'bind error')
})

const nm = '홍길동'
const dn = `cn=${nm},ou=people,dc=planetexpress,dc=com`
const entry = {
objectclass: 'person',
sn: 'korean test'
}

client.add(dn, entry, err => {
t.error(err, 'add entry error')

const searchOpts = {
filter: '(sn=korean test)',
scope: 'subtree',
attributes: ['cn', 'sn'],
sizeLimit: 10,
timeLimit: 0
}
client.search('ou=people,dc=planetexpress,dc=com', searchOpts, (err, res) => {
t.error(err, 'search error')

res.on('searchEntry', (entry) => {
t.equal(
entry.attributes.filter(a => a.type === 'cn').pop().values.pop(),
nm
)
})

res.on('error', (err) => {
t.error(err, 'search entry error')
})

res.on('end', () => {
client.unbind(t.end)
})
})
})
})

0 comments on commit 0558c1a

Please sign in to comment.