Browse Source

[5039] spelling (and a ~ file)

Francis Dupont 8 years ago
parent
commit
89151107ea

+ 2 - 2
src/bin/dhcp4/simple_parser4.cc

@@ -21,7 +21,7 @@ namespace dhcp {
 /// is expected to be one centralized place to look at for
 /// is expected to be one centralized place to look at for
 /// the default values. This is expected to be looked at also by
 /// the default values. This is expected to be looked at also by
 /// people who are not skilled in C or C++, so they may be
 /// people who are not skilled in C or C++, so they may be
-/// confused with the differences between declaration and defintion.
+/// confused with the differences between declaration and definition.
 /// As such, there's one file to look at that hopefully is readable
 /// As such, there's one file to look at that hopefully is readable
 /// without any C or C++ skills.
 /// without any C or C++ skills.
 ///
 ///
@@ -83,7 +83,7 @@ size_t SimpleParser4::setAllDefaults(isc::data::ElementPtr global) {
     // Set global defaults first.
     // Set global defaults first.
     cnt = setDefaults(global, GLOBAL4_DEFAULTS);
     cnt = setDefaults(global, GLOBAL4_DEFAULTS);
 
 
-    // Now set option defintion defaults for each specified option definition
+    // Now set option definition defaults for each specified option definition
     ConstElementPtr option_defs = global->get("option-def");
     ConstElementPtr option_defs = global->get("option-def");
     if (option_defs) {
     if (option_defs) {
         BOOST_FOREACH(ElementPtr option_def, option_defs->listValue()) {
         BOOST_FOREACH(ElementPtr option_def, option_defs->listValue()) {

+ 1 - 1
src/bin/dhcp4/tests/simple_parser4_unittest.cc

@@ -79,7 +79,7 @@ TEST_F(SimpleParser4Test, inheritGlobalToSubnet4) {
                           SimpleParser4::INHERIT_GLOBAL_TO_SUBNET4));
                           SimpleParser4::INHERIT_GLOBAL_TO_SUBNET4));
     EXPECT_EQ(2, num);
     EXPECT_EQ(2, num);
 
 
-    // Check the values. 2 of them are interited, while the third one
+    // Check the values. 2 of them are inherited, while the third one
     // was already defined in the subnet, so should not be inherited.
     // was already defined in the subnet, so should not be inherited.
     checkIntegerValue(subnet, "renew-timer", 100);
     checkIntegerValue(subnet, "renew-timer", 100);
     checkIntegerValue(subnet, "rebind-timer", 2);
     checkIntegerValue(subnet, "rebind-timer", 2);

+ 1 - 1
src/bin/dhcp6/simple_parser6.cc

@@ -21,7 +21,7 @@ namespace dhcp {
 /// is expected to be one centralized place to look at for
 /// is expected to be one centralized place to look at for
 /// the default values. This is expected to be looked at also by
 /// the default values. This is expected to be looked at also by
 /// people who are not skilled in C or C++, so they may be
 /// people who are not skilled in C or C++, so they may be
-/// confused with the differences between declaration and defintion.
+/// confused with the differences between declaration and definition.
 /// As such, there's one file to look at that hopefully is readable
 /// As such, there's one file to look at that hopefully is readable
 /// without any C or C++ skills.
 /// without any C or C++ skills.
 ///
 ///

+ 1 - 1
src/bin/dhcp6/tests/simple_parser6_unittest.cc

@@ -75,7 +75,7 @@ TEST_F(SimpleParser6Test, inheritGlobalToSubnet6) {
                                                      SimpleParser6::INHERIT_GLOBAL_TO_SUBNET6));
                                                      SimpleParser6::INHERIT_GLOBAL_TO_SUBNET6));
     EXPECT_EQ(3, num);
     EXPECT_EQ(3, num);
 
 
-    // Check the values. 3 of them are interited, while the fourth one
+    // Check the values. 3 of them are inherited, while the fourth one
     // was already defined in the subnet, so should not be inherited.
     // was already defined in the subnet, so should not be inherited.
     checkIntegerValue(subnet, "renew-timer", 100);
     checkIntegerValue(subnet, "renew-timer", 100);
     checkIntegerValue(subnet, "rebind-timer", 2);
     checkIntegerValue(subnet, "rebind-timer", 2);

+ 0 - 79
src/bin/dhcp6/tests/simple_parser6_unittest.cc~

@@ -1,79 +0,0 @@
-#include <config.h>
-#include <cc/data.h>
-#include <gtest/gtest.h>
-
-using namespace isc;
-using namespace isc::data;
-
-namespace {
-
-/// @brief DHCP Parser test fixture class
-class SimpleParser6Test : public ::testing::Test {
-
-    /// @brief Checks if specified map has an integer parameter with expected value
-    ///
-    /// @param map map to be checked
-    /// @param param_name name of the parameter to be checked
-    /// @param exp_value expected value of the parameter.
-    void checkIntegerValue(const ConstElementPtr& map, const std::string& param_name,
-                           int64_t exp_value) {
-
-        // First check if the passed element is a map.
-        ASSERT_EQ(Element::map, map->getType());
-
-        // Now try to get the element being checked
-        ConstElementPtr elem = map->get(param_name);
-        ASSERT_TRUE(elem);
-
-        // Now check if it's indeed integer
-        ASSERT_EQ(Element::integer, elem->getType());
-
-        // Finally, check if its value meets expectation.
-        EXPECT_EQ(exp_value, elem->intValue());
-    }
-};
-
-// This test checks if global defaults are properly set for DHCPv6.
-TEST_F(SimpleParser6Test, globalDefaults6) {
-
-    ElementPtr empty = Element::fromJSON("{ }");
-    size_t num;
-
-    EXPECT_NO_THROW(num = SimpleParser6::setDefaults(empty));
-
-    // We expect at least 4 parameters to be inserted.
-    EXPECT_TRUE(num >= 4);
-
-    checkIntegerValue(empty, "valid-lifetime", 7200);
-    checkIntegerValue(empty, "preferred-lifetime", 3600);
-    checkIntegerValue(empty, "rebind-timer", 1800);
-    checkIntegerValue(empty, "renew-timer", 900);
-}
-
-// This test checks if the parameters can be inherited from the global
-// scope to the subnet scope.
-TEST_F(SimpleParser6Test, inheritGlobalToSubnet6) {
-    ElementPtr global = Element::fromJSON("{ \"renew-timer\": 1,"
-                                          "  \"rebind-timer\": 2,"
-                                          "  \"preferred-lifetime\": 3,"
-                                          "  \"valid-lifetime\": 4"
-                                          "}");
-    ElementPtr subnet = Element::fromJSON("{ \"renew-timer\": 100 }");
-
-    // we should inherit 3 parameters. Renew-timer should remain intact,
-    // as it was already defined in the subnet scope.
-    size_t num;
-    EXPECT_NO_THROW(num = SimpleParser::deriveParams(global, subnet,
-                                                     SimpleParser6::INHERIT_GLOBAL_TO_SUBNET6));
-    EXPECT_EQ(3, num);
-
-    // Check the values. 3 of them are interited, while the fourth one
-    // was already defined in the subnet, so should not be inherited.
-    checkIntegerValue(subnet, "renew-timer", 100);
-    checkIntegerValue(subnet, "rebind-timer", 2);
-    checkIntegerValue(subnet, "preferred-lifetime", 3);
-    checkIntegerValue(subnet, "valid-lifetime", 4);
-}
-
-};
-