Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build: Fix unit test cert generation (#704) #723

Merged
merged 1 commit into from
Apr 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions test/certs/BUILD

This file was deleted.

10 changes: 8 additions & 2 deletions test/common/ssl/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@ envoy_cc_test(
name = "connection_impl_test",
srcs = ["connection_impl_test.cc"],
data = [
"//test/certs:test_certs",
"//test/common/ssl/test_data:certs",
],
setup_cmds = [(
"gen_unittest_certs.sh",
[],
)],
deps = [
"//source/common/buffer:buffer_lib",
"//source/common/event:dispatcher_includes",
Expand All @@ -32,9 +35,12 @@ envoy_cc_test(
name = "context_impl_test",
srcs = ["context_impl_test.cc"],
data = [
"//test/certs:test_certs",
"//test/common/ssl/test_data:certs",
],
setup_cmds = [(
"gen_unittest_certs.sh",
[],
)],
deps = [
"//source/common/json:json_loader_lib",
"//source/common/ssl:context_config_lib",
Expand Down
28 changes: 14 additions & 14 deletions test/common/ssl/connection_impl_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ TEST(SslConnectionImplTest, ClientAuth) {

std::string server_ctx_json = R"EOF(
{
"cert_chain_file": "{{ test_certs }}/unittestcert.pem",
"private_key_file": "{{ test_certs }}/unittestkey.pem",
"cert_chain_file": "{{ test_tmpdir }}/unittestcert.pem",
"private_key_file": "{{ test_tmpdir }}/unittestkey.pem",
"ca_cert_file": "test/common/ssl/test_data/ca_with_uri_san.crt"
}
)EOF";
Expand All @@ -98,8 +98,8 @@ TEST(SslConnectionImplTest, ClientAuth) {

server_ctx_json = R"EOF(
{
"cert_chain_file": "{{ test_certs }}/unittestcert.pem",
"private_key_file": "{{ test_certs }}/unittestkey.pem",
"cert_chain_file": "{{ test_tmpdir }}/unittestcert.pem",
"private_key_file": "{{ test_tmpdir }}/unittestkey.pem",
"ca_cert_file": "test/common/ssl/test_data/ca_with_dns_san.crt"
}
)EOF";
Expand All @@ -116,8 +116,8 @@ TEST(SslConnectionImplTest, ClientAuth) {

server_ctx_json = R"EOF(
{
"cert_chain_file": "{{ test_certs }}/unittestcert.pem",
"private_key_file": "{{ test_certs }}/unittestkey.pem",
"cert_chain_file": "{{ test_tmpdir }}/unittestcert.pem",
"private_key_file": "{{ test_tmpdir }}/unittestkey.pem",
"ca_cert_file": ""
}
)EOF";
Expand All @@ -134,8 +134,8 @@ TEST(SslConnectionImplTest, ClientAuth) {

server_ctx_json = R"EOF(
{
"cert_chain_file": "{{ test_certs }}/unittestcert.pem",
"private_key_file": "{{ test_certs }}/unittestkey.pem",
"cert_chain_file": "{{ test_tmpdir }}/unittestcert.pem",
"private_key_file": "{{ test_tmpdir }}/unittestkey.pem",
"ca_cert_file": "test/common/ssl/test_data/ca.crt"
}
)EOF";
Expand All @@ -150,8 +150,8 @@ TEST(SslConnectionImplTest, ClientAuthBadVerification) {

std::string server_ctx_json = R"EOF(
{
"cert_chain_file": "{{ test_certs }}/unittestcert.pem",
"private_key_file": "{{ test_certs }}/unittestkey.pem",
"cert_chain_file": "{{ test_tmpdir }}/unittestcert.pem",
"private_key_file": "{{ test_tmpdir }}/unittestkey.pem",
"ca_cert_file": "test/common/ssl/test_data/ca.crt",
"verify_certificate_hash": "7B:0C:3F:0D:97:0E:FC:16:70:11:7A:0C:35:75:54:6B:17:AB:CF:20:D8:AA:A0:ED:87:08:0F:FB:60:4C:40:77"
}
Expand Down Expand Up @@ -207,8 +207,8 @@ TEST(SslConnectionImplTest, SslError) {

std::string server_ctx_json = R"EOF(
{
"cert_chain_file": "{{ test_certs }}/unittestcert.pem",
"private_key_file": "{{ test_certs }}/unittestkey.pem",
"cert_chain_file": "{{ test_tmpdir }}/unittestcert.pem",
"private_key_file": "{{ test_tmpdir }}/unittestkey.pem",
"ca_cert_file": "test/common/ssl/test_data/ca.crt",
"verify_certificate_hash": "7B:0C:3F:0D:97:0E:FC:16:70:11:7A:0C:35:75:54:6B:17:AB:CF:20:D8:AA:A0:ED:87:08:0F:FB:60:4C:40:77"
}
Expand Down Expand Up @@ -264,8 +264,8 @@ class SslReadBufferLimitTest : public testing::Test {

std::string server_ctx_json = R"EOF(
{
"cert_chain_file": "{{ test_certs }}/unittestcert.pem",
"private_key_file": "{{ test_certs }}/unittestkey.pem",
"cert_chain_file": "{{ test_tmpdir }}/unittestcert.pem",
"private_key_file": "{{ test_tmpdir }}/unittestkey.pem",
"ca_cert_file": "test/common/ssl/test_data/ca.crt"
}
)EOF";
Expand Down
14 changes: 7 additions & 7 deletions test/common/ssl/context_impl_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ TEST(SslContextImplTest, TestCipherSuites) {
TEST(SslContextImplTest, TestExpiringCert) {
std::string json = R"EOF(
{
"cert_chain_file": "{{ test_certs }}/unittestcert.pem",
"private_key_file": "{{ test_certs }}/unittestkey.pem"
"cert_chain_file": "{{ test_tmpdir }}/unittestcert.pem",
"private_key_file": "{{ test_tmpdir }}/unittestkey.pem"
}
)EOF";

Expand All @@ -96,8 +96,8 @@ TEST(SslContextImplTest, TestExpiringCert) {
TEST(SslContextImplTest, TestExpiredCert) {
std::string json = R"EOF(
{
"cert_chain_file": "{{ test_certs }}/unittestcert_expired.pem",
"private_key_file": "{{ test_certs }}/unittestkey_expired.pem"
"cert_chain_file": "{{ test_tmpdir }}/unittestcert_expired.pem",
"private_key_file": "{{ test_tmpdir }}/unittestkey_expired.pem"
}
)EOF";

Expand All @@ -113,8 +113,8 @@ TEST(SslContextImplTest, TestExpiredCert) {
TEST(SslContextImplTest, TestGetCertInformation) {
std::string json = R"EOF(
{
"cert_chain_file": "{{ test_certs }}/unittestcert.pem",
"private_key_file": "{{ test_certs }}/unittestkey.pem",
"cert_chain_file": "{{ test_tmpdir }}/unittestcert.pem",
"private_key_file": "{{ test_tmpdir }}/unittestkey.pem",
"ca_cert_file": "test/common/ssl/test_data/ca.crt"
}
)EOF";
Expand All @@ -136,7 +136,7 @@ TEST(SslContextImplTest, TestGetCertInformation) {
"Certificate Path: test/common/ssl/test_data/ca.crt, Serial Number: F0DE921A0515EB45, "
"Days until Expiration: ");
std::string cert_chain_partial_output(
TestEnvironment::substitute("Certificate Path: {{ test_certs }}/unittestcert.pem"));
TestEnvironment::substitute("Certificate Path: {{ test_tmpdir }}/unittestcert.pem"));

EXPECT_TRUE(context->getCaCertInformation().find(ca_cert_partial_output) != std::string::npos);
EXPECT_TRUE(context->getCertChainInformation().find(cert_chain_partial_output) !=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

set -e

TEST_CERT_DIR=$1
TEST_CERT_DIR=$TEST_TMPDIR

mkdir -p $TEST_CERT_DIR
openssl genrsa -out $TEST_CERT_DIR/unittestkey.pem 1024
Expand Down
4 changes: 3 additions & 1 deletion test/run_envoy_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ echo "TEST_SRCDIR=$TEST_SRCDIR"

mkdir -p $TEST_TMPDIR

$SOURCE_DIR/test/certs/gen_test_certs.sh $TEST_SRCDIR/test/certs
# This places the unittest SSL certificates into $TEST_TMPDIR where the unit
# tests in test/common/ssl expect to consume them
$SOURCE_DIR/test/common/ssl/gen_unittest_certs.sh

# Some hacks for the config file template substitution. These go away in the Bazel build.
CONFIG_IN_DIR="$SOURCE_DIR"/test/config/integration
Expand Down
5 changes: 2 additions & 3 deletions test/test_common/environment.cc
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@ const std::string TestEnvironment::unixDomainSocketDirectory() {
}

std::string TestEnvironment::substitute(const std::string str) {
// TODO(htuch): Add support for {{ test_tmpdir }} etc. as needed for tests.
const std::regex test_cert_regex("\\{\\{ test_certs \\}\\}");
return std::regex_replace(str, test_cert_regex, TestEnvironment::runfilesPath("test/certs"));
const std::regex test_cert_regex("\\{\\{ test_tmpdir \\}\\}");
return std::regex_replace(str, test_cert_regex, TestEnvironment::temporaryDirectory());
}

std::string TestEnvironment::temporaryFileSubstitutePorts(const std::string& path,
Expand Down
16 changes: 1 addition & 15 deletions test/test_common/environment.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,6 @@ class TestEnvironment {
return runfilesDirectory() + "/" + path;
}

/**
* Obtain pregenerated test ssl key/certificate directory.
* @return std::string& with the path to the pregenerated test ssl key/certificate
* directory.
*/
static std::string certsDirectory() { return runfilesPath("test/certs"); }

/**
* Prefix a given path with the pregenerated test ssl key/certificate directory.
* @param path path suffix.
* @return std::string path qualified with the pregenerated test ssl key/certificate directory.
*/
static std::string certsPath(const std::string& path) { return certsDirectory() + "/" + path; }

/**
* Obtain Unix Domain Socket temporary directory.
* @return std::string& with the path to the Unix Domain Socket temporary directory.
Expand All @@ -67,7 +53,7 @@ class TestEnvironment {

/**
* String environment path substitution.
* @param str string with template patterns including {{ test_certs }}.
* @param str string with template patterns including {{ test_tmpdir }}.
* @return std::string with patterns replaced with environment values.
*/
static std::string substitute(const std::string str);
Expand Down