This directory is a collection of compatibility checker programs.
They will be run before any other installation attempts on 'make install'
to see if the installation causes any substantial compatibility problems
-with existing configuratons. If any checker program finds an issue,
+with existing configurations. If any checker program finds an issue,
'make install' will stop at that point.
///
/// @param config Pointer to a configuration specified for the agent.
/// @param check_only Boolean flag indicating if this method should
- /// only verify correctness of the provided conifiguration.
+ /// only verify correctness of the provided configuration.
/// @return Pointer to a result of configuration parsing.
virtual isc::data::ConstElementPtr
parse(isc::data::ConstElementPtr config, bool check_only);
// Tests that the sockets settings are updated upon successful reconfiguration.
TEST_F(CtrlAgentControllerTest, successfulConfigUpdate) {
- // This configuration should be used to override the initial conifguration.
+ // This configuration should be used to override the initial configuration.
const char* second_config =
"{"
" \"http-host\": \"127.0.0.1\","
// listener configuration remains the same. The server should continue using the
// listener instance it has been using prior to the reconfiguration.
TEST_F(CtrlAgentControllerTest, noListenerChange) {
- // This configuration should be used to override the initial conifguration.
+ // This configuration should be used to override the initial configuration.
const char* second_config =
"{"
" \"http-host\": \"127.0.0.1\","
"reverse-ddns" : {}
},
-// This is a basic configuraton for the Kea Control Agent.
+// This is a basic configuration for the Kea Control Agent.
// RESTful interface to be available at http://127.0.0.1:8080/
"Control-agent": {
"http-host": "127.0.0.1",
/// @brief Constructor.
///
- /// The default confguration:
+ /// The default configuration:
/// - no identifiers selected for host reservations searches.
CfgHostOperations();
/// @param config_file name of the file to write the configuration to
/// @param cfg configuration to write (optional)
/// @return number of files written
- /// @throw Unexpected if CfgMgr can't retrieve configuation or file cannot
+ /// @throw Unexpected if CfgMgr can't retrieve configuration or file cannot
/// be written
virtual size_t
writeConfigFile(const std::string& config_file,
// This test verifies that the option data configuration with a minimal
// set of parameters works as expected when option definition is
-// created in the configruation file.
+// created in the configuration file.
TEST_F(ParseConfigTest, optionDataMinimalWithOptionDef) {
// Configuration string.
std::string config =
}
// This test verifies that reservations for a particular client can
-// be retrieved from the confguration file and a database simultaneously.
+// be retrieved from the configuration file and a database simultaneously.
TEST_F(MySQLHostMgrTest, getAll) {
testGetAll(*getCfgHosts(), HostMgr::instance());
}
}
// This test verifies that reservations for a particular client can
-// be retrieved from the confguration file and a database simultaneously.
+// be retrieved from the configuration file and a database simultaneously.
TEST_F(PostgreSQLHostMgrTest, getAll) {
testGetAll(*getCfgHosts(), HostMgr::instance());
}