mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-05 12:25:51 +00:00
Fixes #1704. Please review and commit clang-tidy fixes. Co-authored-by: kuznetsss <15742918+kuznetsss@users.noreply.github.com>
179 lines
6.4 KiB
C++
179 lines
6.4 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of clio: https://github.com/XRPLF/clio
|
|
Copyright (c) 2024, the clio developers.
|
|
|
|
Permission to use, copy, modify, and distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#include "util/NameGenerator.hpp"
|
|
#include "util/TmpFile.hpp"
|
|
#include "util/config/Config.hpp"
|
|
#include "web/ng/impl/ServerSslContext.hpp"
|
|
|
|
#include <boost/json/object.hpp>
|
|
#include <boost/json/value.hpp>
|
|
#include <gmock/gmock.h>
|
|
#include <gtest/gtest.h>
|
|
#include <test_data/SslCert.hpp>
|
|
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
using namespace web::ng::impl;
|
|
|
|
struct MakeServerSslContextFromConfigTestBundle {
|
|
std::string testName;
|
|
std::optional<std::string> certFile;
|
|
std::optional<std::string> keyFile;
|
|
std::optional<std::string> expectedError;
|
|
bool expectContext;
|
|
|
|
boost::json::value
|
|
configJson() const
|
|
{
|
|
boost::json::object result;
|
|
if (certFile.has_value()) {
|
|
result["ssl_cert_file"] = *certFile;
|
|
}
|
|
|
|
if (keyFile.has_value()) {
|
|
result["ssl_key_file"] = *keyFile;
|
|
}
|
|
return result;
|
|
}
|
|
};
|
|
|
|
struct MakeServerSslContextFromConfigTest : testing::TestWithParam<MakeServerSslContextFromConfigTestBundle> {};
|
|
|
|
TEST_P(MakeServerSslContextFromConfigTest, makeFromConfig)
|
|
{
|
|
auto const config = util::Config{GetParam().configJson()};
|
|
auto const expectedServerSslContext = makeServerSslContext(config);
|
|
if (GetParam().expectedError.has_value()) {
|
|
ASSERT_FALSE(expectedServerSslContext.has_value());
|
|
EXPECT_THAT(expectedServerSslContext.error(), testing::HasSubstr(*GetParam().expectedError));
|
|
} else {
|
|
EXPECT_EQ(expectedServerSslContext.value().has_value(), GetParam().expectContext);
|
|
}
|
|
}
|
|
|
|
INSTANTIATE_TEST_SUITE_P(
|
|
MakeServerSslContextFromConfigTest,
|
|
MakeServerSslContextFromConfigTest,
|
|
testing::ValuesIn(
|
|
{MakeServerSslContextFromConfigTestBundle{
|
|
.testName = "NoCertNoKey",
|
|
.certFile = std::nullopt,
|
|
.keyFile = std::nullopt,
|
|
.expectedError = std::nullopt,
|
|
.expectContext = false
|
|
},
|
|
MakeServerSslContextFromConfigTestBundle{
|
|
.testName = "CertOnly",
|
|
.certFile = "some_path",
|
|
.keyFile = std::nullopt,
|
|
.expectedError = "Config entries 'ssl_cert_file' and 'ssl_key_file' must be set or unset together.",
|
|
.expectContext = false
|
|
},
|
|
MakeServerSslContextFromConfigTestBundle{
|
|
.testName = "KeyOnly",
|
|
.certFile = std::nullopt,
|
|
.keyFile = "some_path",
|
|
.expectedError = "Config entries 'ssl_cert_file' and 'ssl_key_file' must be set or unset together.",
|
|
.expectContext = false
|
|
},
|
|
MakeServerSslContextFromConfigTestBundle{
|
|
.testName = "BothKeyAndCert",
|
|
.certFile = "some_path",
|
|
.keyFile = "some_other_path",
|
|
.expectedError = "Can't read SSL certificate",
|
|
.expectContext = false
|
|
}}
|
|
),
|
|
tests::util::NameGenerator
|
|
);
|
|
|
|
struct MakeServerSslContextFromConfigRealFilesTest : testing::Test {};
|
|
|
|
TEST_F(MakeServerSslContextFromConfigRealFilesTest, WrongKeyFile)
|
|
{
|
|
auto const certFile = tests::sslCertFile();
|
|
boost::json::object const configJson = {{"ssl_cert_file", certFile.path}, {"ssl_key_file", "some_path"}};
|
|
|
|
util::Config const config{configJson};
|
|
auto const expectedServerSslContext = makeServerSslContext(config);
|
|
ASSERT_FALSE(expectedServerSslContext.has_value());
|
|
EXPECT_THAT(expectedServerSslContext.error(), testing::HasSubstr("Can't read SSL key"));
|
|
}
|
|
|
|
TEST_F(MakeServerSslContextFromConfigRealFilesTest, BothFilesValid)
|
|
{
|
|
auto const certFile = tests::sslCertFile();
|
|
auto const keyFile = tests::sslKeyFile();
|
|
boost::json::object const configJson = {{"ssl_cert_file", certFile.path}, {"ssl_key_file", keyFile.path}};
|
|
|
|
util::Config const config{configJson};
|
|
auto const expectedServerSslContext = makeServerSslContext(config);
|
|
EXPECT_TRUE(expectedServerSslContext.has_value());
|
|
}
|
|
|
|
struct MakeServerSslContextFromDataTestBundle {
|
|
std::string testName;
|
|
std::string certData;
|
|
std::string keyData;
|
|
bool expectedSuccess;
|
|
};
|
|
|
|
struct MakeServerSslContextFromDataTest : testing::TestWithParam<MakeServerSslContextFromDataTestBundle> {};
|
|
|
|
TEST_P(MakeServerSslContextFromDataTest, makeFromData)
|
|
{
|
|
auto const& data = GetParam();
|
|
auto const expectedServerSslContext = makeServerSslContext(data.certData, data.keyData);
|
|
EXPECT_EQ(expectedServerSslContext.has_value(), data.expectedSuccess);
|
|
}
|
|
|
|
INSTANTIATE_TEST_SUITE_P(
|
|
MakeServerSslContextFromDataTest,
|
|
MakeServerSslContextFromDataTest,
|
|
testing::ValuesIn(
|
|
{MakeServerSslContextFromDataTestBundle{
|
|
.testName = "EmptyData",
|
|
.certData = "",
|
|
.keyData = "",
|
|
.expectedSuccess = false
|
|
},
|
|
MakeServerSslContextFromDataTestBundle{
|
|
.testName = "CertOnly",
|
|
.certData = std::string{tests::sslCert()},
|
|
.keyData = "",
|
|
.expectedSuccess = false
|
|
},
|
|
MakeServerSslContextFromDataTestBundle{
|
|
.testName = "KeyOnly",
|
|
.certData = "",
|
|
.keyData = std::string{tests::sslKey()},
|
|
.expectedSuccess = false
|
|
},
|
|
MakeServerSslContextFromDataTestBundle{
|
|
.testName = "BothKeyAndCert",
|
|
.certData = std::string{tests::sslCert()},
|
|
.keyData = std::string{tests::sslKey()},
|
|
.expectedSuccess = true
|
|
}}
|
|
),
|
|
tests::util::NameGenerator
|
|
);
|