This repository has been archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 453
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
100 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
version: '3' | ||
|
||
services: | ||
openldap: | ||
image: ghcr.io/ldapjs/docker-test-openldap/openldap:latest | ||
image: ghcr.io/ldapjs/docker-test-openldap/openldap:2023-03-18 | ||
ports: | ||
- 389:389 | ||
- 636:636 | ||
healthcheck: | ||
start_period: 3s | ||
test: > | ||
/usr/bin/ldapsearch -Y EXTERNAL -Q -H ldapi:// -b ou=people,dc=planetexpress,dc=com -LLL '(cn=Turanga Leela)' cn 1>/dev/null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
'use strict' | ||
|
||
const tap = require('tap') | ||
const ldapjs = require('../../lib') | ||
const { DN } = require('@ldapjs/dn') | ||
const Change = require('@ldapjs/change') | ||
|
||
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.teardown(() => { | ||
client.unbind() | ||
}) | ||
|
||
tap.test('modifies entry specified by dn string', t => { | ||
t.plan(4) | ||
|
||
client.bind('cn=admin,dc=planetexpress,dc=com', 'GoodNewsEveryone', (err) => { | ||
t.error(err, 'bind error') | ||
}) | ||
|
||
const dn = 'cn=large10,ou=large_ou,dc=planetexpress,dc=com' | ||
const change = new Change({ | ||
operation: 'replace', | ||
modification: { | ||
type: 'givenName', | ||
values: ['test'] | ||
} | ||
}) | ||
|
||
client.modify(dn, change, (err) => { | ||
t.error(err, 'modify error') | ||
validateChange({ t, expected: 'test', client }) | ||
}) | ||
}) | ||
|
||
tap.test('modifies entry specified by dn object', t => { | ||
t.plan(4) | ||
|
||
client.bind('cn=admin,dc=planetexpress,dc=com', 'GoodNewsEveryone', (err) => { | ||
t.error(err, 'bind error') | ||
}) | ||
|
||
const dn = DN.fromString('cn=large10,ou=large_ou,dc=planetexpress,dc=com') | ||
const change = new Change({ | ||
operation: 'replace', | ||
modification: { | ||
type: 'givenName', | ||
values: ['test2'] | ||
} | ||
}) | ||
|
||
client.modify(dn, change, (err) => { | ||
t.error(err, 'modify error') | ||
validateChange({ t, expected: 'test2', client }) | ||
}) | ||
}) | ||
|
||
function validateChange ({ t, expected, client }) { | ||
const searchBase = 'ou=large_ou,dc=planetexpress,dc=com' | ||
const searchOpts = { | ||
filter: '(cn=large10)', | ||
scope: 'subtree', | ||
attributes: ['givenName'], | ||
sizeLimit: 10, | ||
timeLimit: 0 | ||
} | ||
|
||
client.search(searchBase, searchOpts, (err, res) => { | ||
t.error(err, 'search error') | ||
|
||
res.on('searchEntry', entry => { | ||
t.equal( | ||
entry.attributes.filter(a => a.type === 'givenName').pop().values.pop(), | ||
expected | ||
) | ||
}) | ||
|
||
res.on('error', err => { | ||
t.error(err, 'search entry error') | ||
}) | ||
|
||
res.on('end', () => { | ||
t.end() | ||
}) | ||
}) | ||
} |