ssl_credentials_test.cc 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. *
  3. * Copyright 2017 gRPC authors.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. */
  18. #include "src/core/lib/security/credentials/ssl/ssl_credentials.h"
  19. #include <stdio.h>
  20. #include <string.h>
  21. #include <grpc/grpc_security.h>
  22. #include <grpc/support/alloc.h>
  23. #include <grpc/support/log.h>
  24. #include "src/core/lib/security/security_connector/ssl_utils.h"
  25. #include "src/core/tsi/ssl_transport_security.h"
  26. #include "test/core/util/test_config.h"
  27. static void test_convert_grpc_to_tsi_cert_pairs() {
  28. grpc_ssl_pem_key_cert_pair grpc_pairs[] = {{"private_key1", "cert_chain1"},
  29. {"private_key2", "cert_chain2"},
  30. {"private_key3", "cert_chain3"}};
  31. const size_t num_pairs = 3;
  32. {
  33. tsi_ssl_pem_key_cert_pair* tsi_pairs =
  34. grpc_convert_grpc_to_tsi_cert_pairs(grpc_pairs, 0);
  35. GPR_ASSERT(tsi_pairs == nullptr);
  36. }
  37. {
  38. tsi_ssl_pem_key_cert_pair* tsi_pairs =
  39. grpc_convert_grpc_to_tsi_cert_pairs(grpc_pairs, num_pairs);
  40. GPR_ASSERT(tsi_pairs != nullptr);
  41. for (size_t i = 0; i < num_pairs; i++) {
  42. GPR_ASSERT(strncmp(grpc_pairs[i].private_key, tsi_pairs[i].private_key,
  43. strlen(grpc_pairs[i].private_key)) == 0);
  44. GPR_ASSERT(strncmp(grpc_pairs[i].cert_chain, tsi_pairs[i].cert_chain,
  45. strlen(grpc_pairs[i].cert_chain)) == 0);
  46. }
  47. grpc_tsi_ssl_pem_key_cert_pairs_destroy(tsi_pairs, num_pairs);
  48. }
  49. }
  50. int main(int argc, char** argv) {
  51. grpc::testing::TestEnvironment env(argc, argv);
  52. grpc_init();
  53. test_convert_grpc_to_tsi_cert_pairs();
  54. grpc_shutdown();
  55. return 0;
  56. }