Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2008-01-26 09:31:15 +0100
committerArthur de Jong <arthur@arthurdejong.org>2008-01-26 09:31:15 +0100
commit42602c2b138e88e325b16445e0d97f1246324b5c (patch)
treef16012465aed2a05a200ccb3336e835b08bedeb3
parentd61aa7f261d4cb616b932bc502530bf4527085ce (diff)
also test map filter and scope configuration options
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-ldapd@562 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r--tests/test_cfg.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/test_cfg.c b/tests/test_cfg.c
index 9b5d09d..9f9be19 100644
--- a/tests/test_cfg.c
+++ b/tests/test_cfg.c
@@ -183,6 +183,8 @@ static void test_tokenize(void)
}
extern const char *passwd_base;
+extern const char *group_filter;
+extern int passwd_scope;
static void test_read(void)
{
@@ -196,7 +198,10 @@ static void test_read(void)
"uri ldap:/// ldaps://127.0.0.1/\n"
"base dc=test, dc=tld\n"
"base passwd ou=Some People,dc=test,dc=tld\n"
- "map\tpasswd uid\t\tsAMAccountName\n");
+ "map\tpasswd uid\t\tsAMAccountName\n"
+ "filter group (&(objeclClass=posixGroup)(gid=1*))\n"
+ "\n"
+ "scope passwd one\n");
fclose(fp);
/* parse the file */
cfg_defaults(&cfg);
@@ -212,6 +217,8 @@ static void test_read(void)
assertstreq(cfg.ldc_base,"dc=test, dc=tld");
assertstreq(passwd_base,"ou=Some People,dc=test,dc=tld");
assertstreq(attmap_passwd_uid,"sAMAccountName");
+ assertstreq(group_filter,"(&(objeclClass=posixGroup)(gid=1*))");
+ assert(passwd_scope==LDAP_SCOPE_ONELEVEL);
/* remove temporary file */
remove("temp.cfg");
}