]> git.ipfire.org Git - thirdparty/openssl.git/blame - test/x509_dup_cert_test.c
Create provider errors and use them
[thirdparty/openssl.git] / test / x509_dup_cert_test.c
CommitLineData
c0452248 1/*
a43ce58f 2 * Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
5aba2b6e 3 * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
c0452248 4 *
909f1a2e 5 * Licensed under the Apache License 2.0 (the "License"). You may not use
c0452248
RS
6 * this file except in compliance with the License. You can obtain a copy
7 * in the file LICENSE in the source distribution or at
8 * https://www.openssl.org/source/license.html
9 */
10
c0452248
RS
11#include <stdio.h>
12#include <openssl/err.h>
13#include <openssl/x509_vfy.h>
14
c0452248
RS
15#include "testutil.h"
16
ad887416 17static int test_509_dup_cert(int n)
c0452248
RS
18{
19 int ret = 0;
20 X509_STORE_CTX *sctx = NULL;
21 X509_STORE *store = NULL;
22 X509_LOOKUP *lookup = NULL;
ad887416 23 const char *cert_f = test_get_argument(n);
c0452248
RS
24
25 if (TEST_ptr(store = X509_STORE_new())
26 && TEST_ptr(lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file()))
27 && TEST_true(X509_load_cert_file(lookup, cert_f, X509_FILETYPE_PEM))
28 && TEST_true(X509_load_cert_file(lookup, cert_f, X509_FILETYPE_PEM)))
29 ret = 1;
30
31 X509_STORE_CTX_free(sctx);
32 X509_STORE_free(store);
33 return ret;
34}
35
a43ce58f
SL
36OPT_TEST_DECLARE_USAGE("cert.pem...\n")
37
ad887416 38int setup_tests(void)
c0452248 39{
ad887416
P
40 size_t n = test_get_argument_count();
41
a43ce58f 42 if (!TEST_int_gt(n, 0))
ad887416 43 return 0;
c0452248 44
ad887416
P
45 ADD_ALL_TESTS(test_509_dup_cert, n);
46 return 1;
c0452248 47}