provider_test.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * Copyright 2019 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. #include <stddef.h>
  10. #include <openssl/provider.h>
  11. #include "testutil.h"
  12. extern OSSL_provider_init_fn PROVIDER_INIT_FUNCTION_NAME;
  13. static char buf[256];
  14. static size_t buf_l = 0;
  15. static OSSL_PARAM greeting_request[] = {
  16. { "greeting", OSSL_PARAM_UTF8_STRING, buf, sizeof(buf), &buf_l },
  17. { NULL, 0, NULL, 0, NULL }
  18. };
  19. static int test_provider(const char *name)
  20. {
  21. OSSL_PROVIDER *prov = NULL;
  22. const char *greeting = NULL;
  23. char expected_greeting[256];
  24. BIO_snprintf(expected_greeting, sizeof(expected_greeting),
  25. "Hello OpenSSL %.20s, greetings from %s!",
  26. OPENSSL_VERSION_STR, name);
  27. return
  28. TEST_ptr(prov = OSSL_PROVIDER_load(NULL, name))
  29. && TEST_true(OSSL_PROVIDER_get_params(prov, greeting_request))
  30. && TEST_ptr(greeting = greeting_request[0].data)
  31. && TEST_size_t_gt(greeting_request[0].data_size, 0)
  32. && TEST_str_eq(greeting, expected_greeting)
  33. && TEST_true(OSSL_PROVIDER_unload(prov));
  34. }
  35. static int test_builtin_provider(void)
  36. {
  37. const char *name = "p_test_builtin";
  38. return
  39. TEST_true(OSSL_PROVIDER_add_builtin(NULL, name,
  40. PROVIDER_INIT_FUNCTION_NAME))
  41. && test_provider(name);
  42. }
  43. #ifndef NO_PROVIDER_MODULE
  44. static int test_loaded_provider(void)
  45. {
  46. const char *name = "p_test";
  47. return test_provider(name);
  48. }
  49. #endif
  50. int setup_tests(void)
  51. {
  52. ADD_TEST(test_builtin_provider);
  53. #ifndef NO_PROVIDER_MODULE
  54. ADD_TEST(test_loaded_provider);
  55. #endif
  56. return 1;
  57. }