001ed570d3cd7de3636b026aa74e7a523d65176d
[openssl.git] / test / x509_load_cert_file_test.c
1 /*
2  * Licensed under the Apache License 2.0 (the "License").  You may not use
3  * this file except in compliance with the License.  You can obtain a copy
4  * in the file LICENSE in the source distribution or at
5  * https://www.openssl.org/source/license.html
6  */
7
8 #include <stdio.h>
9 #include <openssl/err.h>
10 #include <openssl/x509_vfy.h>
11
12 #include "testutil.h"
13
14 static const char *chain;
15
16 static int test_load_cert_file(void)
17 {
18     int ret = 0, i;
19     X509_STORE *store = NULL;
20     X509_LOOKUP *lookup = NULL;
21     STACK_OF(X509) *certs = NULL;
22     STACK_OF(X509_OBJECT) *objs = NULL;
23
24     if (!TEST_ptr(store = X509_STORE_new())
25         || !TEST_ptr(lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file()))
26         || !TEST_true(X509_load_cert_file(lookup, chain, X509_FILETYPE_PEM))
27         || !TEST_ptr(certs = X509_STORE_get1_all_certs(store))
28         || !TEST_int_eq(sk_X509_num(certs), 4)
29         || !TEST_ptr(objs = X509_STORE_get1_objects(store))
30         || !TEST_int_eq(sk_X509_OBJECT_num(objs), 4))
31         goto err;
32
33     for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
34         const X509_OBJECT *obj = sk_X509_OBJECT_value(objs, i);
35         if (!TEST_int_eq(X509_OBJECT_get_type(obj), X509_LU_X509))
36             goto err;
37     }
38
39     ret = 1;
40
41 err:
42     OSSL_STACK_OF_X509_free(certs);
43     sk_X509_OBJECT_pop_free(objs, X509_OBJECT_free);
44     X509_STORE_free(store);
45     return ret;
46 }
47
48 OPT_TEST_DECLARE_USAGE("cert.pem...\n")
49
50 int setup_tests(void)
51 {
52     if (!test_skip_common_options()) {
53         TEST_error("Error parsing test options\n");
54         return 0;
55     }
56
57     chain = test_get_argument(0);
58     if (chain == NULL)
59         return 0;
60
61     ADD_TEST(test_load_cert_file);
62     return 1;
63 }