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
19 #include "src/core/lib/security/credentials/ssl/ssl_credentials.h"
20
21 #include <grpc/grpc_security.h>
22 #include <grpc/support/alloc.h>
23 #include <gtest/gtest.h>
24 #include <stdio.h>
25 #include <string.h>
26
27 #include "src/core/lib/security/security_connector/ssl_utils.h"
28 #include "src/core/tsi/ssl_transport_security.h"
29 #include "src/core/util/crash.h"
30 #include "test/core/test_util/test_config.h"
31
TEST(SslCredentialsTest,ConvertGrpcToTsiCertPairs)32 TEST(SslCredentialsTest, ConvertGrpcToTsiCertPairs) {
33 grpc_ssl_pem_key_cert_pair grpc_pairs[] = {{"private_key1", "cert_chain1"},
34 {"private_key2", "cert_chain2"},
35 {"private_key3", "cert_chain3"}};
36 const size_t num_pairs = 3;
37
38 {
39 tsi_ssl_pem_key_cert_pair* tsi_pairs =
40 grpc_convert_grpc_to_tsi_cert_pairs(grpc_pairs, 0);
41 ASSERT_EQ(tsi_pairs, nullptr);
42 }
43
44 {
45 tsi_ssl_pem_key_cert_pair* tsi_pairs =
46 grpc_convert_grpc_to_tsi_cert_pairs(grpc_pairs, num_pairs);
47
48 ASSERT_NE(tsi_pairs, nullptr);
49 for (size_t i = 0; i < num_pairs; i++) {
50 ASSERT_EQ(strncmp(grpc_pairs[i].private_key, tsi_pairs[i].private_key,
51 strlen(grpc_pairs[i].private_key)),
52 0);
53 ASSERT_EQ(strncmp(grpc_pairs[i].cert_chain, tsi_pairs[i].cert_chain,
54 strlen(grpc_pairs[i].cert_chain)),
55 0);
56 }
57
58 grpc_tsi_ssl_pem_key_cert_pairs_destroy(tsi_pairs, num_pairs);
59 }
60 }
61
main(int argc,char ** argv)62 int main(int argc, char** argv) {
63 grpc::testing::TestEnvironment env(&argc, argv);
64 ::testing::InitGoogleTest(&argc, argv);
65 grpc::testing::TestGrpcScope grpc_scope;
66 return RUN_ALL_TESTS();
67 }
68