mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-04 20:05:51 +00:00
Implementation of new config definition + methods + UT Steps that still need to be implemented: - Make ClioConfigDefinition and it's method to be as constexpr as possible - Getting User Config file and populating the values in ConfigDefinition while checking for constraints on user values - Replacing all the places where we fetch config values (by using config.valueOr/MaybeValue) to instead get it from Config Definition - Generate markdown file using Clio Config Description
91 lines
3.4 KiB
C++
91 lines
3.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/newconfig/ConfigDefinition.hpp"
|
|
#include "util/newconfig/ConfigValue.hpp"
|
|
#include "util/newconfig/FakeConfigData.hpp"
|
|
#include "util/newconfig/ValueView.hpp"
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <cstdint>
|
|
|
|
using namespace util::config;
|
|
|
|
struct ValueViewTest : testing::Test {
|
|
ClioConfigDefinition const configData = generateConfig();
|
|
};
|
|
|
|
TEST_F(ValueViewTest, ValueView)
|
|
{
|
|
ConfigValue const cv = ConfigValue{ConfigType::String}.defaultValue("value");
|
|
ValueView const vv = ValueView(cv);
|
|
EXPECT_EQ("value", vv.asString());
|
|
EXPECT_EQ(ConfigType::String, vv.type());
|
|
EXPECT_EQ(true, vv.hasValue());
|
|
EXPECT_EQ(false, vv.isOptional());
|
|
}
|
|
|
|
TEST_F(ValueViewTest, DifferentIntegerTest)
|
|
{
|
|
auto const vv = configData.getValue("header.port");
|
|
auto const uint32 = vv.asIntType<uint32_t>();
|
|
auto const uint64 = vv.asIntType<uint64_t>();
|
|
auto const int32 = vv.asIntType<int32_t>();
|
|
auto const int64 = vv.asIntType<int64_t>();
|
|
|
|
EXPECT_EQ(vv.asIntType<int>(), uint32);
|
|
EXPECT_EQ(vv.asIntType<int>(), uint64);
|
|
EXPECT_EQ(vv.asIntType<int>(), int32);
|
|
EXPECT_EQ(vv.asIntType<int>(), int64);
|
|
|
|
auto const doubleVal = vv.asIntType<double>();
|
|
auto const floatVal = vv.asIntType<float>();
|
|
auto const sameDouble = vv.asDouble();
|
|
auto const sameFloat = vv.asFloat();
|
|
auto const precision = 1e-9;
|
|
|
|
EXPECT_NEAR(doubleVal, sameDouble, precision);
|
|
EXPECT_NEAR(floatVal, sameFloat, precision);
|
|
|
|
auto const ipVal = configData.getValue("ip");
|
|
auto const ipDouble = ipVal.asDouble();
|
|
auto const ipFloat = ipVal.asFloat();
|
|
EXPECT_NEAR(ipDouble, 444.22, precision);
|
|
EXPECT_NEAR(ipFloat, 444.22f, precision);
|
|
}
|
|
|
|
struct ValueDeathTest : ValueViewTest {};
|
|
|
|
TEST_F(ValueDeathTest, WrongTypes)
|
|
{
|
|
auto const vv = configData.getValue("header.port");
|
|
EXPECT_DEATH({ [[maybe_unused]] auto a_ = vv.asBool(); }, ".*");
|
|
EXPECT_DEATH({ [[maybe_unused]] auto a_ = vv.asString(); }, ".*");
|
|
|
|
auto const cv = ConfigValue{ConfigType::Integer}.defaultValue(-5);
|
|
auto const vv2 = ValueView(cv);
|
|
EXPECT_DEATH({ [[maybe_unused]] auto a_ = vv2.asIntType<uint32_t>(); }, ".*");
|
|
|
|
auto const cv2 = ConfigValue{ConfigType::String}.defaultValue("asdf");
|
|
auto const vv3 = ValueView(cv2);
|
|
EXPECT_DEATH({ [[maybe_unused]] auto a_ = vv3.asDouble(); }, ".*");
|
|
EXPECT_DEATH({ [[maybe_unused]] auto a_ = vv3.asFloat(); }, ".*");
|
|
}
|