Converted the bio_enc tests to use new test framework.
[openssl.git] / test / x509_internal_test.c
1 /*
2  * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 /* Internal tests for the x509 and x509v3 modules */
11
12 #include <stdio.h>
13 #include <string.h>
14
15 #include <openssl/x509.h>
16 #include <openssl/x509v3.h>
17 #include "testutil.h"
18 #include "test_main.h"
19 #include "e_os.h"
20
21 /**********************************************************************
22  *
23  * Test of x509v3
24  *
25  ***/
26
27 #ifdef __VMS
28 # pragma names save
29 # pragma names as_is,shortened
30 #endif
31
32 #include "../crypto/x509v3/ext_dat.h"
33 #include "../crypto/x509v3/standard_exts.h"
34
35 #ifdef __VMS
36 # pragma names restore
37 #endif
38
39 static int test_standard_exts()
40 {
41     size_t i;
42     int prev = -1, good = 1;
43     const X509V3_EXT_METHOD **tmp;
44
45     tmp = standard_exts;
46     for (i = 0; i < OSSL_NELEM(standard_exts); i++, tmp++) {
47         if ((*tmp)->ext_nid < prev)
48             good = 0;
49         prev = (*tmp)->ext_nid;
50
51     }
52     if (!good) {
53         tmp = standard_exts;
54         TEST_error("Extensions out of order!");
55         for (i = 0; i < STANDARD_EXTENSION_COUNT; i++, tmp++)
56             fprintf(stderr, "%d : %s\n", (*tmp)->ext_nid,
57                     OBJ_nid2sn((*tmp)->ext_nid));
58     } else {
59         fprintf(stderr, "Order OK\n");
60     }
61
62     return good;
63 }
64
65 void register_tests()
66 {
67     ADD_TEST(test_standard_exts);
68 }