]> git.ipfire.org Git - people/ms/strongswan.git/commitdiff
Converted tests for identification_t
authorTobias Brunner <tobias@strongswan.org>
Tue, 26 Mar 2013 13:52:33 +0000 (14:52 +0100)
committerTobias Brunner <tobias@strongswan.org>
Tue, 11 Jun 2013 09:03:10 +0000 (11:03 +0200)
src/libcharon/plugins/unit_tester/Makefile.am
src/libcharon/plugins/unit_tester/tests.h
src/libcharon/plugins/unit_tester/tests/test_id.c [deleted file]
src/libstrongswan/tests/Makefile.am
src/libstrongswan/tests/test_identification.c [new file with mode: 0644]
src/libstrongswan/tests/test_runner.c
src/libstrongswan/tests/test_runner.h

index ec98dc689b803e13f71d0c643b8552de73df634e..84e7170344c0aab4aabc266adebf51671acd3f41 100644 (file)
@@ -23,7 +23,6 @@ libstrongswan_unit_tester_la_SOURCES = \
        tests/test_chunk.c \
        tests/test_pool.c \
        tests/test_agent.c \
-       tests/test_id.c \
        tests/test_hashtable.c
 
 libstrongswan_unit_tester_la_LDFLAGS = -module -avoid-version
index bc7e174f3bd4fdb38488600a42e7179e94cde4dc..fc7761bb5e09180eeea39ac8ab71ea53b6460803 100644 (file)
@@ -31,9 +31,5 @@ DEFINE_TEST("Mediation database key fetch", test_med_db, FALSE)
 DEFINE_TEST("Base64 converter", test_chunk_base64, FALSE)
 DEFINE_TEST("IP pool", test_pool, FALSE)
 DEFINE_TEST("SSH agent", test_agent, FALSE)
-DEFINE_TEST("ID parts", test_id_parts, FALSE)
-DEFINE_TEST("ID wildcards", test_id_wildcards, FALSE)
-DEFINE_TEST("ID equals", test_id_equals, FALSE)
-DEFINE_TEST("ID matches", test_id_matches, FALSE)
 
 /** @}*/
diff --git a/src/libcharon/plugins/unit_tester/tests/test_id.c b/src/libcharon/plugins/unit_tester/tests/test_id.c
deleted file mode 100644 (file)
index 868a2ca..0000000
+++ /dev/null
@@ -1,249 +0,0 @@
-/*
- * Copyright (C) 2009 Martin Willi
- * Hochschule fuer Technik Rapperswil
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation; either version 2 of the License, or (at your
- * option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * for more details.
- */
-
-#include <daemon.h>
-
-/*******************************************************************************
- * identification part enumeration test
- ******************************************************************************/
-bool test_id_parts()
-{
-       identification_t *id;
-       enumerator_t *enumerator;
-       id_part_t part;
-       chunk_t data;
-       int i = 0;
-
-       id = identification_create_from_string("C=CH, O=strongSwan, CN=tester");
-
-       enumerator = id->create_part_enumerator(id);
-       while (enumerator->enumerate(enumerator, &part, &data))
-       {
-               switch (i++)
-               {
-                       case 0:
-                               if (part != ID_PART_RDN_C ||
-                                       !chunk_equals(data, chunk_create("CH", 2)))
-                               {
-                                       return FALSE;
-                               }
-                               break;
-                       case 1:
-                               if (part != ID_PART_RDN_O ||
-                                       !chunk_equals(data, chunk_create("strongSwan", 10)))
-                               {
-                                       return FALSE;
-                               }
-                               break;
-                       case 2:
-                               if (part != ID_PART_RDN_CN ||
-                                       !chunk_equals(data, chunk_create("tester", 6)))
-                               {
-                                       return FALSE;
-                               }
-                               break;
-                       default:
-                               return FALSE;
-               }
-       }
-       if (i < 3)
-       {
-               return FALSE;
-       }
-       enumerator->destroy(enumerator);
-       id->destroy(id);
-       return TRUE;
-}
-
-/*******************************************************************************
- * identification contains_wildcards() test
- ******************************************************************************/
-
-static bool test_id_wildcards_has(char *string)
-{
-       identification_t *id;
-       bool contains;
-
-       id = identification_create_from_string(string);
-       contains = id->contains_wildcards(id);
-       id->destroy(id);
-       return contains;
-}
-
-bool test_id_wildcards()
-{
-       if (!test_id_wildcards_has("C=*, O=strongSwan, CN=gw"))
-       {
-               return FALSE;
-       }
-       if (!test_id_wildcards_has("C=CH, O=strongSwan, CN=*"))
-       {
-               return FALSE;
-       }
-       if (test_id_wildcards_has("C=**, O=a*, CN=*a"))
-       {
-               return FALSE;
-       }
-       if (!test_id_wildcards_has("*@strongswan.org"))
-       {
-               return FALSE;
-       }
-       if (!test_id_wildcards_has("*.strongswan.org"))
-       {
-               return FALSE;
-       }
-       return TRUE;
-}
-
-/*******************************************************************************
- * identification equals test
- ******************************************************************************/
-
-static bool test_id_equals_one(identification_t *a, char *b_str)
-{
-       identification_t *b;
-       bool equals;
-
-       b = identification_create_from_string(b_str);
-       equals = a->equals(a, b);
-       b->destroy(b);
-       return equals;
-}
-
-bool test_id_equals()
-{
-       identification_t *a;
-       chunk_t encoding, fuzzed;
-       int i;
-
-       a = identification_create_from_string(
-                                                          "C=CH, E=martin@strongswan.org, CN=martin");
-
-       if (!test_id_equals_one(a, "C=CH, E=martin@strongswan.org, CN=martin"))
-       {
-               return FALSE;
-       }
-       if (!test_id_equals_one(a, "C=ch, E=martin@STRONGSWAN.ORG, CN=Martin"))
-       {
-               return FALSE;
-       }
-       if (test_id_equals_one(a, "C=CN, E=martin@strongswan.org, CN=martin"))
-       {
-               return FALSE;
-       }
-       if (test_id_equals_one(a, "E=martin@strongswan.org, C=CH, CN=martin"))
-       {
-               return FALSE;
-       }
-       if (test_id_equals_one(a, "E=martin@strongswan.org, C=CH, CN=martin"))
-       {
-               return FALSE;
-       }
-       encoding = chunk_clone(a->get_encoding(a));
-       a->destroy(a);
-
-       /* simple fuzzing, increment each byte of encoding */
-       for (i = 0; i < encoding.len; i++)
-       {
-               if (i == 11 || i == 30 || i == 62)
-               {       /* skip ASN.1 type fields, as equals() handles them graceful */
-                       continue;
-               }
-               fuzzed = chunk_clone(encoding);
-               fuzzed.ptr[i]++;
-               a = identification_create_from_encoding(ID_DER_ASN1_DN, fuzzed);
-               if (test_id_equals_one(a, "C=CH, E=martin@strongswan.org, CN=martin"))
-               {
-                       return FALSE;
-               }
-               a->destroy(a);
-               free(fuzzed.ptr);
-       }
-
-       /* and decrement each byte of encoding */
-       for (i = 0; i < encoding.len; i++)
-       {
-               if (i == 11 || i == 30 || i == 62)
-               {
-                       continue;
-               }
-               fuzzed = chunk_clone(encoding);
-               fuzzed.ptr[i]--;
-               a = identification_create_from_encoding(ID_DER_ASN1_DN, fuzzed);
-               if (test_id_equals_one(a, "C=CH, E=martin@strongswan.org, CN=martin"))
-               {
-                       return FALSE;
-               }
-               a->destroy(a);
-               free(fuzzed.ptr);
-       }
-       free(encoding.ptr);
-       return TRUE;
-}
-
-/*******************************************************************************
- * identification matches test
- ******************************************************************************/
-
-static id_match_t test_id_matches_one(identification_t *a, char *b_str)
-{
-       identification_t *b;
-       id_match_t match;
-
-       b = identification_create_from_string(b_str);
-       match = a->matches(a, b);
-       b->destroy(b);
-       return match;
-}
-
-bool test_id_matches()
-{
-       identification_t *a;
-
-       a = identification_create_from_string(
-                                                          "C=CH, E=martin@strongswan.org, CN=martin");
-
-       if (test_id_matches_one(a, "C=CH, E=martin@strongswan.org, CN=martin")
-                                                                                                                       != ID_MATCH_PERFECT)
-       {
-               return FALSE;
-       }
-       if (test_id_matches_one(a, "C=CH, E=*, CN=martin") != ID_MATCH_ONE_WILDCARD)
-       {
-               return FALSE;
-       }
-       if (test_id_matches_one(a, "C=CH, E=*, CN=*") != ID_MATCH_ONE_WILDCARD - 1)
-       {
-               return FALSE;
-       }
-       if (test_id_matches_one(a, "C=*, E=*, CN=*") != ID_MATCH_ONE_WILDCARD - 2)
-       {
-               return FALSE;
-       }
-       if (test_id_matches_one(a, "C=*, E=*, CN=*, O=BADInc") != ID_MATCH_NONE)
-       {
-               return FALSE;
-       }
-       if (test_id_matches_one(a, "C=*, E=*") != ID_MATCH_NONE)
-       {
-               return FALSE;
-       }
-       if (test_id_matches_one(a, "C=*, E=a@b.c, CN=*") != ID_MATCH_NONE)
-       {
-               return FALSE;
-       }
-       a->destroy(a);
-       return TRUE;
-}
index 0fd404014b8e8b670843e1d10ed29b49e38ccc1d..e389bc3c474bb0ea3dbf19989e70e90b1616e18f 100644 (file)
@@ -4,7 +4,8 @@ check_PROGRAMS = $(TESTS)
 
 test_runner_SOURCES = \
   test_runner.c test_runner.h \
-  test_linked_list.c test_enumerator.c test_linked_list_enumerator.c
+  test_linked_list.c test_enumerator.c test_linked_list_enumerator.c \
+  test_identification.c
 
 
 test_runner_CFLAGS = \
diff --git a/src/libstrongswan/tests/test_identification.c b/src/libstrongswan/tests/test_identification.c
new file mode 100644 (file)
index 0000000..fd6177f
--- /dev/null
@@ -0,0 +1,211 @@
+/*
+ * Copyright (C) 2013 Tobias Brunner
+ * Copyright (C) 2009 Martin Willi
+ * Hochschule fuer Technik Rapperswil
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation; either version 2 of the License, or (at your
+ * option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * for more details.
+ */
+
+#include <check.h>
+
+#include <utils/identification.h>
+
+/*******************************************************************************
+ * equals
+ */
+
+static bool id_equals(identification_t *a, char *b_str)
+{
+       identification_t *b;
+       bool equals;
+
+       b = identification_create_from_string(b_str);
+       equals = a->equals(a, b);
+       b->destroy(b);
+       return equals;
+}
+
+START_TEST(test_equals)
+{
+       identification_t *a;
+       chunk_t encoding, fuzzed;
+       int i;
+
+       a = identification_create_from_string(
+                                                        "C=CH, E=martin@strongswan.org, CN=martin");
+
+       ck_assert(id_equals(a, "C=CH, E=martin@strongswan.org, CN=martin"));
+       ck_assert(id_equals(a, "C=ch, E=martin@STRONGSWAN.ORG, CN=Martin"));
+       ck_assert(!id_equals(a, "C=CN, E=martin@strongswan.org, CN=martin"));
+       ck_assert(!id_equals(a, "E=martin@strongswan.org, C=CH, CN=martin"));
+       ck_assert(!id_equals(a, "E=martin@strongswan.org, C=CH, CN=martin"));
+
+       encoding = chunk_clone(a->get_encoding(a));
+       a->destroy(a);
+
+       /* simple fuzzing, increment each byte of encoding */
+       for (i = 0; i < encoding.len; i++)
+       {
+               if (i == 11 || i == 30 || i == 62)
+               {       /* skip ASN.1 type fields, as equals() handles them graceful */
+                       continue;
+               }
+               fuzzed = chunk_clone(encoding);
+               fuzzed.ptr[i]++;
+               a = identification_create_from_encoding(ID_DER_ASN1_DN, fuzzed);
+               ck_assert(!id_equals(a, "C=CH, E=martin@strongswan.org, CN=martin"));
+               a->destroy(a);
+               free(fuzzed.ptr);
+       }
+
+       /* and decrement each byte of encoding */
+       for (i = 0; i < encoding.len; i++)
+       {
+               if (i == 11 || i == 30 || i == 62)
+               {
+                       continue;
+               }
+               fuzzed = chunk_clone(encoding);
+               fuzzed.ptr[i]--;
+               a = identification_create_from_encoding(ID_DER_ASN1_DN, fuzzed);
+               ck_assert(!id_equals(a, "C=CH, E=martin@strongswan.org, CN=martin"));
+               a->destroy(a);
+               free(fuzzed.ptr);
+       }
+       free(encoding.ptr);
+}
+END_TEST
+
+/*******************************************************************************
+ * matches
+ */
+
+static bool id_matches(identification_t *a, char *b_str, id_match_t expected)
+{
+       identification_t *b;
+       id_match_t match;
+
+       b = identification_create_from_string(b_str);
+       match = a->matches(a, b);
+       b->destroy(b);
+       return match == expected;
+}
+
+START_TEST(test_matches)
+{
+       identification_t *a;
+
+       a = identification_create_from_string("C=CH, E=martin@strongswan.org, CN=martin");
+
+       ck_assert(id_matches(a, "C=CH, E=martin@strongswan.org, CN=martin", ID_MATCH_PERFECT));
+       ck_assert(id_matches(a, "C=CH, E=*, CN=martin", ID_MATCH_ONE_WILDCARD));
+       ck_assert(id_matches(a, "C=CH, E=*, CN=*", ID_MATCH_ONE_WILDCARD - 1));
+       ck_assert(id_matches(a, "C=*, E=*, CN=*", ID_MATCH_ONE_WILDCARD - 2));
+       ck_assert(id_matches(a, "C=*, E=*, CN=*, O=BADInc", ID_MATCH_NONE));
+       ck_assert(id_matches(a, "C=*, E=*", ID_MATCH_NONE));
+       ck_assert(id_matches(a, "C=*, E=a@b.c, CN=*", ID_MATCH_NONE));
+
+       a->destroy(a);
+}
+END_TEST
+
+/*******************************************************************************
+ * identification part enumeration
+ */
+
+START_TEST(test_parts)
+{
+       identification_t *id;
+       enumerator_t *enumerator;
+       id_part_t part;
+       chunk_t data;
+       int i = 0;
+
+       id = identification_create_from_string("C=CH, O=strongSwan, CN=tester");
+
+       enumerator = id->create_part_enumerator(id);
+       while (enumerator->enumerate(enumerator, &part, &data))
+       {
+               switch (i++)
+               {
+                       case 0:
+                               ck_assert(part == ID_PART_RDN_C &&
+                                                 chunk_equals(data, chunk_create("CH", 2)));
+                               break;
+                       case 1:
+                               ck_assert(part == ID_PART_RDN_O &&
+                                                 chunk_equals(data, chunk_from_str("strongSwan")));
+                               break;
+                       case 2:
+                               ck_assert(part == ID_PART_RDN_CN &&
+                                                 chunk_equals(data, chunk_from_str("tester")));
+                               break;
+                       default:
+                               fail("unexpected identification part %d", part);
+               }
+       }
+       ck_assert_int_eq(i, 3);
+       enumerator->destroy(enumerator);
+       id->destroy(id);
+}
+END_TEST
+
+/*******************************************************************************
+ * wildcards
+ */
+
+static bool id_contains_wildcards(char *string)
+{
+       identification_t *id;
+       bool contains;
+
+       id = identification_create_from_string(string);
+       contains = id->contains_wildcards(id);
+       id->destroy(id);
+       return contains;
+}
+
+START_TEST(test_contains_wildcards)
+{
+       ck_assert(id_contains_wildcards("%any"));
+       ck_assert(id_contains_wildcards("C=*, O=strongSwan, CN=gw"));
+       ck_assert(id_contains_wildcards("C=CH, O=strongSwan, CN=*"));
+       ck_assert(id_contains_wildcards("*@strongswan.org"));
+       ck_assert(id_contains_wildcards("*.strongswan.org"));
+       ck_assert(!id_contains_wildcards("C=**, O=a*, CN=*a"));
+}
+END_TEST
+
+Suite *identification_suite_create()
+{
+       Suite *s;
+       TCase *tc;
+
+       s = suite_create("identification");
+
+       tc = tcase_create("equals");
+       tcase_add_test(tc, test_equals);
+       suite_add_tcase(s, tc);
+
+       tc = tcase_create("matches");
+       tcase_add_test(tc, test_matches);
+       suite_add_tcase(s, tc);
+
+       tc = tcase_create("part enumeration");
+       tcase_add_test(tc, test_parts);
+       suite_add_tcase(s, tc);
+
+       tc = tcase_create("wildcards");
+       tcase_add_test(tc, test_contains_wildcards);
+       suite_add_tcase(s, tc);
+
+       return s;
+}
index dab532e3ba0e3c8f4d0a7cc7b22044e3bb9d8b7f..7d5c502884ce8a5dc22aa2773111c06f766415bf 100644 (file)
@@ -35,6 +35,7 @@ int main()
        srunner_add_suite(sr, enumerator_suite_create());
        srunner_add_suite(sr, linked_list_suite_create());
        srunner_add_suite(sr, linked_list_enumerator_suite_create());
+       srunner_add_suite(sr, identification_suite_create());
 
        srunner_run_all(sr, CK_NORMAL);
        nf = srunner_ntests_failed(sr);
index e297c88bc940b8e6046e0b864c3c2d31ea112e4d..71deba127e1b0e1de6398d0d18a67584d7f7ca99 100644 (file)
@@ -21,5 +21,6 @@
 Suite *enumerator_suite_create();
 Suite *linked_list_suite_create();
 Suite *linked_list_enumerator_suite_create();
+Suite *identification_suite_create();
 
 #endif /** TEST_RUNNER_H_ */