summaryrefslogtreecommitdiff
path: root/tests/oids.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2015-06-18 14:11:08 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2015-06-18 14:11:08 +0200
commit8c0973c5144c5f4c7a305977c55a90cbf8def890 (patch)
tree974e057be37063b6b6da53134a84bbc6d06cfa24 /tests/oids.c
parentb6ec882173acf811b235695c1ac07e32b986caee (diff)
downloadgnutls-8c0973c5144c5f4c7a305977c55a90cbf8def890.tar.gz
tests: Check the OID functions
Diffstat (limited to 'tests/oids.c')
-rw-r--r--tests/oids.c73
1 files changed, 73 insertions, 0 deletions
diff --git a/tests/oids.c b/tests/oids.c
new file mode 100644
index 0000000000..2afc0a6379
--- /dev/null
+++ b/tests/oids.c
@@ -0,0 +1,73 @@
+/*
+ * Copyright (C) 2015 Red Hat, Inc.
+ *
+ * Author: Nikos Mavrogiannopoulos
+ *
+ * This file is part of GnuTLS.
+ *
+ * GnuTLS 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 3 of the License, or
+ * (at your option) any later version.
+ *
+ * GnuTLS 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GnuTLS; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sys/types.h>
+#include <unistd.h>
+#include <gnutls/gnutls.h>
+
+#include "utils.h"
+
+#define SELF_TEST_SIG(x) \
+ ret = gnutls_oid_to_sign(gnutls_sign_get_oid(x)); \
+ if (ret != x) { \
+ fail("error testing %s\n", gnutls_sign_get_name(x)); \
+ }
+
+#define SELF_TEST_PK(x) \
+ ret = gnutls_oid_to_pk(gnutls_pk_get_oid(x)); \
+ if (ret != x) { \
+ fail("error testing %s\n", gnutls_pk_get_name(x)); \
+ }
+
+#define SELF_TEST_DIG(x) \
+ ret = gnutls_oid_to_digest(gnutls_digest_get_oid(x)); \
+ if (ret != x) { \
+ fail("error testing %s\n", gnutls_digest_get_name(x)); \
+ }
+
+void doit(void)
+{
+ int ret;
+
+ SELF_TEST_SIG(GNUTLS_SIGN_RSA_SHA1);
+ SELF_TEST_SIG(GNUTLS_SIGN_RSA_SHA256);
+
+ SELF_TEST_SIG(GNUTLS_SIGN_ECDSA_SHA1);
+ SELF_TEST_SIG(GNUTLS_SIGN_ECDSA_SHA256);
+ SELF_TEST_SIG(GNUTLS_SIGN_ECDSA_SHA512);
+
+ SELF_TEST_PK(GNUTLS_PK_RSA);
+ SELF_TEST_PK(GNUTLS_PK_DSA);
+ SELF_TEST_PK(GNUTLS_PK_EC);
+
+ SELF_TEST_DIG(GNUTLS_DIG_MD5);
+ SELF_TEST_DIG(GNUTLS_DIG_SHA1);
+ SELF_TEST_DIG(GNUTLS_DIG_SHA256);
+ SELF_TEST_DIG(GNUTLS_DIG_SHA512);
+}