sysdefaulttest.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright 2016-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. #include <stdio.h>
  10. #include <openssl/opensslconf.h>
  11. #include <string.h>
  12. #include <openssl/evp.h>
  13. #include <openssl/ssl.h>
  14. #include <openssl/tls1.h>
  15. #include "testutil.h"
  16. static int test_func(void)
  17. {
  18. int ret = 1;
  19. SSL_CTX *ctx;
  20. if (!TEST_ptr(ctx = SSL_CTX_new(TLS_method())))
  21. return 0;
  22. if (!TEST_int_eq(SSL_CTX_get_min_proto_version(ctx), TLS1_2_VERSION)
  23. && !TEST_int_eq(SSL_CTX_get_max_proto_version(ctx), TLS1_2_VERSION)) {
  24. TEST_info("min/max version setting incorrect");
  25. ret = 0;
  26. }
  27. SSL_CTX_free(ctx);
  28. return ret;
  29. }
  30. int global_init(void)
  31. {
  32. if (!OPENSSL_init_ssl(OPENSSL_INIT_ENGINE_ALL_BUILTIN
  33. | OPENSSL_INIT_LOAD_CONFIG, NULL))
  34. return 0;
  35. return 1;
  36. }
  37. int setup_tests(void)
  38. {
  39. ADD_TEST(test_func);
  40. return 1;
  41. }