-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add config verify flag (#1814)
fixes #1806
- Loading branch information
1 parent
91c00e7
commit f1698c5
Showing
9 changed files
with
201 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
//------------------------------------------------------------------------------ | ||
/* | ||
This file is part of clio: https://github.com/XRPLF/clio | ||
Copyright (c) 2025, 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. | ||
*/ | ||
//============================================================================== | ||
|
||
#pragma once | ||
|
||
#include "util/newconfig/ConfigDefinition.hpp" | ||
#include "util/newconfig/ConfigFileJson.hpp" | ||
|
||
#include <cstdlib> | ||
#include <iostream> | ||
#include <string_view> | ||
|
||
namespace app { | ||
|
||
/** | ||
* @brief Verifies user's config values are correct | ||
* | ||
* @param configPath The path to config | ||
* @return true if config values are all correct, false otherwise | ||
*/ | ||
inline bool | ||
verifyConfig(std::string_view configPath) | ||
{ | ||
using namespace util::config; | ||
|
||
auto const json = ConfigFileJson::makeConfigFileJson(configPath); | ||
if (!json.has_value()) { | ||
std::cerr << json.error().error << std::endl; | ||
return false; | ||
} | ||
auto const errors = gClioConfig.parse(json.value()); | ||
if (errors.has_value()) { | ||
for (auto const& err : errors.value()) | ||
std::cerr << err.error << std::endl; | ||
return false; | ||
} | ||
return true; | ||
} | ||
} // namespace app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
//------------------------------------------------------------------------------ | ||
/* | ||
This file is part of clio: https://github.com/XRPLF/clio | ||
Copyright (c) 2025, 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 "app/VerifyConfig.hpp" | ||
#include "util/TmpFile.hpp" | ||
#include "util/newconfig/FakeConfigData.hpp" | ||
|
||
#include <gtest/gtest.h> | ||
|
||
using namespace app; | ||
using namespace util::config; | ||
|
||
TEST(VerifyConfigTest, InvalidConfig) | ||
{ | ||
auto const tmpConfigFile = TmpFile(kJSON_DATA); | ||
|
||
// false because json data(kJSON_DATA) is not compatible with current configDefintion | ||
EXPECT_FALSE(verifyConfig(tmpConfigFile.path)); | ||
} | ||
|
||
TEST(VerifyConfigTest, ValidConfig) | ||
{ | ||
auto const tmpConfigFile = TmpFile(kVALID_JSON_DATA); | ||
|
||
// current example config should always be compatible with configDefinition | ||
EXPECT_TRUE(verifyConfig(tmpConfigFile.path)); | ||
} | ||
|
||
TEST(VerifyConfigTest, ConfigFileNotExist) | ||
{ | ||
EXPECT_FALSE(verifyConfig("doesn't exist Config File")); | ||
} | ||
|
||
TEST(VerifyConfigTest, InvalidJsonFile) | ||
{ | ||
// invalid json because extra "," after 51233 | ||
static constexpr auto kINVALID_JSON = R"({ | ||
"server": { | ||
"ip": "0.0.0.0", | ||
"port": 51233, | ||
} | ||
})"; | ||
auto const tmpConfigFile = TmpFile(kINVALID_JSON); | ||
|
||
EXPECT_FALSE(verifyConfig(tmpConfigFile.path)); | ||
} |