ssl_cert_table_internal_test.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (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. /* Internal tests for the x509 and x509v3 modules */
  10. #include <stdio.h>
  11. #include <string.h>
  12. #include <openssl/ssl.h>
  13. #include "testutil.h"
  14. #include "internal/nelem.h"
  15. #include "../ssl/ssl_locl.h"
  16. #include "../ssl/ssl_cert_table.h"
  17. #define test_cert_table(nid, amask, idx) \
  18. do_test_cert_table(nid, amask, idx, #idx)
  19. static int do_test_cert_table(int nid, uint32_t amask, size_t idx,
  20. const char *idxname)
  21. {
  22. const SSL_CERT_LOOKUP *clu = &ssl_cert_info[idx];
  23. if (clu->nid == nid && clu->amask == amask)
  24. return 1;
  25. TEST_error("Invalid table entry for certificate type %s, index %zu",
  26. idxname, idx);
  27. if (clu->nid != nid)
  28. TEST_note("Expected %s, got %s\n", OBJ_nid2sn(nid),
  29. OBJ_nid2sn(clu->nid));
  30. if (clu->amask != amask)
  31. TEST_note("Expected auth mask 0x%x, got 0x%x\n", amask, clu->amask);
  32. return 0;
  33. }
  34. /* Sanity check of ssl_cert_table */
  35. static int test_ssl_cert_table(void)
  36. {
  37. TEST_size_t_eq(OSSL_NELEM(ssl_cert_info), SSL_PKEY_NUM);
  38. if (!test_cert_table(EVP_PKEY_RSA, SSL_aRSA, SSL_PKEY_RSA))
  39. return 0;
  40. if (!test_cert_table(EVP_PKEY_DSA, SSL_aDSS, SSL_PKEY_DSA_SIGN))
  41. return 0;
  42. if (!test_cert_table(EVP_PKEY_EC, SSL_aECDSA, SSL_PKEY_ECC))
  43. return 0;
  44. if (!test_cert_table(NID_id_GostR3410_2001, SSL_aGOST01, SSL_PKEY_GOST01))
  45. return 0;
  46. if (!test_cert_table(NID_id_GostR3410_2012_256, SSL_aGOST12,
  47. SSL_PKEY_GOST12_256))
  48. return 0;
  49. if (!test_cert_table(NID_id_GostR3410_2012_512, SSL_aGOST12,
  50. SSL_PKEY_GOST12_512))
  51. return 0;
  52. if (!test_cert_table(EVP_PKEY_ED25519, SSL_aECDSA, SSL_PKEY_ED25519))
  53. return 0;
  54. if (!test_cert_table(EVP_PKEY_ED448, SSL_aECDSA, SSL_PKEY_ED448))
  55. return 0;
  56. return 1;
  57. }
  58. int setup_tests(void)
  59. {
  60. ADD_TEST(test_ssl_cert_table);
  61. return 1;
  62. }