summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2023-10-02 10:40:44 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2023-10-02 10:40:44 +0000
commitf1ce6b85d6d4095b0567ab1e70b749babe6ba392 (patch)
tree23f9a530cf6f9a841715561730f5ef23e0b8b1a7 /regress
parentf16742267ffda7a4ec6d64255e99d5d4d0339b1e (diff)
Add regress coverage for ASN1_TIME_compare()
Diffstat (limited to 'regress')
-rw-r--r--regress/lib/libcrypto/asn1/asn1time.c79
1 files changed, 78 insertions, 1 deletions
diff --git a/regress/lib/libcrypto/asn1/asn1time.c b/regress/lib/libcrypto/asn1/asn1time.c
index c6e13b0b20e..f21c284e1cc 100644
--- a/regress/lib/libcrypto/asn1/asn1time.c
+++ b/regress/lib/libcrypto/asn1/asn1time.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: asn1time.c,v 1.18 2023/10/02 09:42:58 tb Exp $ */
+/* $OpenBSD: asn1time.c,v 1.19 2023/10/02 10:40:43 tb Exp $ */
/*
* Copyright (c) 2015 Joel Sing <jsing@openbsd.org>
*
@@ -473,6 +473,80 @@ asn1_time_test(int test_no, const struct asn1_time_test *att, int type)
return (failure);
}
+static int
+time_t_cmp(time_t t1, time_t t2)
+{
+ if (t1 < t2)
+ return -1;
+ if (t2 < t1)
+ return 1;
+ return 0;
+}
+
+static int
+asn1_time_compare_families(const struct asn1_time_test *fam1, size_t fam1_size,
+ const struct asn1_time_test *fam2, size_t fam2_size)
+{
+ const struct asn1_time_test *att1, *att2;
+ ASN1_TIME *t1 = NULL, *t2 = NULL;
+ size_t i, j;
+ int asn1_cmp, time_cmp;
+ int comparison_failure = 0;
+ int failure = 1;
+
+ if ((t1 = ASN1_TIME_new()) == NULL)
+ goto done;
+ if ((t2 = ASN1_TIME_new()) == NULL)
+ goto done;
+
+ for (i = 0; i < fam1_size; i++) {
+ att1 = &fam1[i];
+
+ if (!ASN1_TIME_set_string(t1, att1->str))
+ goto done;
+ for (j = 0; j < fam2_size; j++) {
+ att2 = &fam2[j];
+
+ if (!ASN1_TIME_set_string(t2, att2->str))
+ goto done;
+
+ time_cmp = time_t_cmp(att1->time, att2->time);
+ asn1_cmp = ASN1_TIME_compare(t1, t2);
+
+ if (time_cmp != asn1_cmp) {
+ fprintf(stderr, "%s vs. %s: want %d, got %d\n",
+ att1->str, att2->str, time_cmp, asn1_cmp);
+ comparison_failure |= 1;
+ }
+ }
+ }
+
+ failure = comparison_failure;
+
+ done:
+ ASN1_TIME_free(t1);
+ ASN1_TIME_free(t2);
+
+ return failure;
+}
+
+static int
+asn1_time_compare_test(void)
+{
+ const struct asn1_time_test *gen = asn1_gentime_tests;
+ size_t gen_size = N_GENTIME_TESTS;
+ const struct asn1_time_test *utc = asn1_utctime_tests;
+ size_t utc_size = N_UTCTIME_TESTS;
+ int failed = 0;
+
+ failed |= asn1_time_compare_families(gen, gen_size, gen, gen_size);
+ failed |= asn1_time_compare_families(gen, gen_size, utc, utc_size);
+ failed |= asn1_time_compare_families(utc, utc_size, gen, gen_size);
+ failed |= asn1_time_compare_families(utc, utc_size, utc, utc_size);
+
+ return failed;
+}
+
int
main(int argc, char **argv)
{
@@ -514,6 +588,9 @@ main(int argc, char **argv)
failed |= asn1_time_test(i, att, V_ASN1_GENERALIZEDTIME);
}
+ fprintf(stderr, "ASN1_TIME_compare tests...\n");
+ failed |= asn1_time_compare_test();
+
/* Check for a leak in ASN1_TIME_normalize(). */
failed |= ASN1_TIME_normalize(NULL) != 0;