summaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2014-09-24 17:28:48 +0200
committerJakub Hrozek <jhrozek@redhat.com>2014-09-25 09:53:30 +0200
commit4a196cdb4b287f3ae5624cb9bf114711a0319c15 (patch)
treeadb3fb06b50badd4251a8f7a9b0807bb1ba7df64 /src/tests
parenta2147c6c13c36c0ec056581b08a7ed7352ff9861 (diff)
downloadsssd-4a196cdb4b287f3ae5624cb9bf114711a0319c15.tar.gz
sssd-4a196cdb4b287f3ae5624cb9bf114711a0319c15.tar.xz
sssd-4a196cdb4b287f3ae5624cb9bf114711a0319c15.zip
TESTS: Add a unit test for matching the secondary objectclass
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/cmocka/test_sdap.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/tests/cmocka/test_sdap.c b/src/tests/cmocka/test_sdap.c
index a1f5188b7..404e100a8 100644
--- a/src/tests/cmocka/test_sdap.c
+++ b/src/tests/cmocka/test_sdap.c
@@ -583,6 +583,40 @@ void test_parse_deref_map_mismatch(void **state)
talloc_free(res);
}
+void test_parse_secondary_oc(void **state)
+{
+ int ret;
+ struct sysdb_attrs *attrs;
+ struct parse_test_ctx *test_ctx = talloc_get_type_abort(*state,
+ struct parse_test_ctx);
+ struct mock_ldap_entry test_rfc2307_group;
+ struct sdap_attr_map *map;
+
+ const char *oc_values[] = { "secondaryOC", NULL };
+ const char *uid_values[] = { "tgroup1", NULL };
+ struct mock_ldap_attr test_rfc2307_group_attrs[] = {
+ { .name = "objectClass", .values = oc_values },
+ { .name = "uid", .values = uid_values },
+ { NULL, NULL }
+ };
+
+ test_rfc2307_group.dn = "cn=testgroup,dc=example,dc=com";
+ test_rfc2307_group.attrs = test_rfc2307_group_attrs;
+ set_entry_parse(&test_rfc2307_group);
+
+ ret = sdap_copy_map(test_ctx, rfc2307_group_map, SDAP_OPTS_GROUP, &map);
+ assert_int_equal(ret, ERR_OK);
+ map[SDAP_OC_GROUP_ALT].name = discard_const("secondaryOC");
+
+ ret = sdap_parse_entry(test_ctx, &test_ctx->sh, &test_ctx->sm,
+ map, SDAP_OPTS_GROUP,
+ &attrs, false);
+ assert_int_equal(ret, ERR_OK);
+
+ talloc_free(map);
+ talloc_free(attrs);
+}
+
/* Negative test - objectclass doesn't match the map */
void test_parse_bad_oc(void **state)
{
@@ -713,6 +747,9 @@ int main(int argc, const char *argv[])
unit_test_setup_teardown(test_parse_deref_no_attrs,
parse_entry_test_setup,
parse_entry_test_teardown),
+ unit_test_setup_teardown(test_parse_secondary_oc,
+ parse_entry_test_setup,
+ parse_entry_test_teardown),
/* Negative tests */
unit_test_setup_teardown(test_parse_no_oc,
parse_entry_test_setup,