mirror of
				https://github.com/XRPLF/clio.git
				synced 2025-11-04 03:45:50 +00:00 
			
		
		
		
	I started with really simple pre-commit hooks and will add more on top. Important files: - `.pre-commit-config.yaml` - the config for pre-commit - `.github/workflows/pre-commit.yml` - runs pre-commit hooks in branches and `develop` - `.github/workflows/pre-commit-autoupdate.yml` - autoupdates pre-commit hooks once in a month
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//------------------------------------------------------------------------------
 | 
						|
/*
 | 
						|
    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(parseConfig(tmpConfigFile.path));
 | 
						|
}
 | 
						|
 | 
						|
TEST(VerifyConfigTest, ValidConfig)
 | 
						|
{
 | 
						|
    // used to Verify Config test
 | 
						|
    static constexpr auto kVALID_JSON_DATA = R"JSON({
 | 
						|
         "server": {
 | 
						|
            "ip": "0.0.0.0",
 | 
						|
            "port": 51233
 | 
						|
        }
 | 
						|
    })JSON";
 | 
						|
    auto const tmpConfigFile = TmpFile(kVALID_JSON_DATA);
 | 
						|
 | 
						|
    // current example config should always be compatible with configDefinition
 | 
						|
    EXPECT_TRUE(parseConfig(tmpConfigFile.path));
 | 
						|
}
 | 
						|
 | 
						|
TEST(VerifyConfigTest, ConfigFileNotExist)
 | 
						|
{
 | 
						|
    EXPECT_FALSE(parseConfig("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(parseConfig(tmpConfigFile.path));
 | 
						|
}
 |