summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJon Spillett <jon.spillett@oracle.com>2017-04-12 11:40:48 +1000
committerRichard Levitte <levitte@openssl.org>2017-04-12 08:32:13 +0200
commiteb16fc8fb6087ae1aeb22634e2c4b5c913d1836e (patch)
treeaf5a88ca0581e0a88657ae9b9e29e764e653013f /test
parent487a73def65aa6ffedf5baf353e912fe61aa3c7c (diff)
Convert exdata tests to new test framework
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3193)
Diffstat (limited to 'test')
-rw-r--r--test/build.info2
-rw-r--r--test/exdatatest.c76
2 files changed, 50 insertions, 28 deletions
diff --git a/test/build.info b/test/build.info
index 33d5199bc8..d712b71805 100644
--- a/test/build.info
+++ b/test/build.info
@@ -43,7 +43,7 @@ IF[{- !$disabled{tests} -}]
INCLUDE[test_test]=.. ../include
DEPEND[test_test]=../libcrypto
- SOURCE[exdatatest]=exdatatest.c
+ SOURCE[exdatatest]=exdatatest.c testutil.c test_main.c
INCLUDE[exdatatest]=../include
DEPEND[exdatatest]=../libcrypto
diff --git a/test/exdatatest.c b/test/exdatatest.c
index e0eadd32dd..fb1694dd40 100644
--- a/test/exdatatest.c
+++ b/test/exdatatest.c
@@ -12,35 +12,42 @@
#include <stdlib.h>
#include <openssl/crypto.h>
+#include "test_main.h"
+#include "testutil.h"
+
static long saved_argl;
static void *saved_argp;
static int saved_idx;
+static int gbl_result;
static void exnew(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
int idx, long argl, void *argp)
{
- OPENSSL_assert(idx == saved_idx);
- OPENSSL_assert(argl == saved_argl);
- OPENSSL_assert(argp == saved_argp);
- OPENSSL_assert(ptr == NULL);
+ if (!TEST_int_eq(idx, saved_idx)
+ || !TEST_long_eq(argl, saved_argl)
+ || !TEST_ptr_eq(argp, saved_argp)
+ || !TEST_ptr_null(ptr))
+ gbl_result = 0;
}
static int exdup(CRYPTO_EX_DATA *to, const CRYPTO_EX_DATA *from,
void *from_d, int idx, long argl, void *argp)
{
- OPENSSL_assert(idx == saved_idx);
- OPENSSL_assert(argl == saved_argl);
- OPENSSL_assert(argp == saved_argp);
- OPENSSL_assert(from_d != NULL);
+ if (!TEST_int_eq(idx, saved_idx)
+ || !TEST_long_eq(argl, saved_argl)
+ || !TEST_ptr_eq(argp, saved_argp)
+ || !TEST_ptr(from_d))
+ gbl_result = 0;
return 1;
}
static void exfree(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
int idx, long argl, void *argp)
{
- OPENSSL_assert(idx == saved_idx);
- OPENSSL_assert(argl == saved_argl);
- OPENSSL_assert(argp == saved_argp);
+ if (!TEST_int_eq(idx, saved_idx)
+ || !TEST_long_eq(argl, saved_argl)
+ || !TEST_ptr_eq(argp, saved_argp))
+ gbl_result = 0;
}
typedef struct myobj_st {
@@ -56,14 +63,14 @@ static MYOBJ *MYOBJ_new()
obj->id = ++count;
obj->st = CRYPTO_new_ex_data(CRYPTO_EX_INDEX_APP, obj, &obj->ex_data);
- OPENSSL_assert(obj->st != 0);
return obj;
}
static void MYOBJ_sethello(MYOBJ *obj, char *cp)
{
obj->st = CRYPTO_set_ex_data(&obj->ex_data, saved_idx, cp);
- OPENSSL_assert(obj->st != 0);
+ if (!TEST_int_eq(obj->st, 1))
+ gbl_result = 0;
}
static char *MYOBJ_gethello(MYOBJ *obj)
@@ -81,18 +88,19 @@ static MYOBJ *MYOBJ_dup(MYOBJ *in)
{
MYOBJ *obj = MYOBJ_new();
- obj->st = CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_APP, &obj->ex_data,
+ obj->st |= CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_APP, &obj->ex_data,
&in->ex_data);
- OPENSSL_assert(obj->st != 0);
return obj;
}
-int main()
+static int test_exdata(void)
{
MYOBJ *t1, *t2, *t3;
const char *cp;
char *p;
+ gbl_result = 1;
+
p = strdup("hello world");
saved_argl = 21;
saved_argp = malloc(1);
@@ -101,25 +109,39 @@ int main()
exnew, exdup, exfree);
t1 = MYOBJ_new();
t2 = MYOBJ_new();
+ if (!TEST_int_eq(t1->st, 1) || !TEST_int_eq(t2->st, 1))
+ return 0;
+
MYOBJ_sethello(t1, p);
cp = MYOBJ_gethello(t1);
- OPENSSL_assert(cp == p);
- if (cp != p)
- return 1;
+ if (!TEST_ptr_eq(cp, p))
+ return 0;
+
cp = MYOBJ_gethello(t2);
- OPENSSL_assert(cp == NULL);
- if (cp != NULL)
- return 1;
+ if (!TEST_ptr_null(cp))
+ return 0;
+
t3 = MYOBJ_dup(t1);
+ if (!TEST_int_eq(t3->st, 1))
+ return 0;
+
cp = MYOBJ_gethello(t3);
- OPENSSL_assert(cp == p);
- if (cp != p)
- return 1;
- cp = MYOBJ_gethello(t2);
+ if (!TEST_ptr_eq(cp, p))
+ return 0;
+
MYOBJ_free(t1);
MYOBJ_free(t2);
MYOBJ_free(t3);
free(saved_argp);
free(p);
- return 0;
+
+ if (gbl_result)
+ return 1;
+ else
+ return 0;
+}
+
+void register_tests(void)
+{
+ ADD_TEST(test_exdata);
}