x509_dup_cert_test.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
  3. * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
  4. *
  5. * Licensed under the OpenSSL license (the "License"). You may not use
  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. #include <stdio.h>
  11. #include <openssl/err.h>
  12. #include <openssl/x509_vfy.h>
  13. #include "testutil.h"
  14. static int test_509_dup_cert(int n)
  15. {
  16. int ret = 0;
  17. X509_STORE_CTX *sctx = NULL;
  18. X509_STORE *store = NULL;
  19. X509_LOOKUP *lookup = NULL;
  20. const char *cert_f = test_get_argument(n);
  21. if (TEST_ptr(store = X509_STORE_new())
  22. && TEST_ptr(lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file()))
  23. && TEST_true(X509_load_cert_file(lookup, cert_f, X509_FILETYPE_PEM))
  24. && TEST_true(X509_load_cert_file(lookup, cert_f, X509_FILETYPE_PEM)))
  25. ret = 1;
  26. X509_STORE_CTX_free(sctx);
  27. X509_STORE_free(store);
  28. return ret;
  29. }
  30. int setup_tests(void)
  31. {
  32. size_t n = test_get_argument_count();
  33. if (!TEST_int_gt(n, 0)) {
  34. TEST_note("usage: x509_dup_cert_test cert.pem...");
  35. return 0;
  36. }
  37. ADD_ALL_TESTS(test_509_dup_cert, n);
  38. return 1;
  39. }