forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutility.h
28 lines (23 loc) · 982 Bytes
/
utility.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#pragma once
#include "envoy/config/core/v3/grpc_service.pb.h"
#include "test/test_common/environment.h"
namespace Envoy {
namespace Grpc {
class TestUtility {
public:
static void setTestSslGoogleGrpcConfig(envoy::config::core::v3::GrpcService& config,
bool use_client_cert) {
auto* google_grpc = config.mutable_google_grpc();
auto* ssl_creds = google_grpc->mutable_channel_credentials()->mutable_ssl_credentials();
ssl_creds->mutable_root_certs()->set_filename(
TestEnvironment::runfilesPath("test/config/integration/certs/upstreamcacert.pem"));
if (use_client_cert) {
ssl_creds->mutable_private_key()->set_filename(
TestEnvironment::runfilesPath("test/config/integration/certs/clientkey.pem"));
ssl_creds->mutable_cert_chain()->set_filename(
TestEnvironment::runfilesPath("test/config/integration/certs/clientcert.pem"));
}
}
};
} // namespace Grpc
} // namespace Envoy