]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2318] Test for very low negative value removed.
authorMarcin Siodelski <marcin@isc.org>
Tue, 30 Oct 2012 19:44:32 +0000 (20:44 +0100)
committerMarcin Siodelski <marcin@isc.org>
Tue, 30 Oct 2012 19:44:32 +0000 (20:44 +0100)
Test was wrong because fromJSON function filters out low numbers anyway
and caused exception when preparing the data for the unit test.

src/bin/dhcp6/tests/config_parser_unittest.cc

index dafe314424e460016598c4739573e2d1ee928eec..489e3c11e9f6d631e29f6178463eccee317fea45 100644 (file)
@@ -571,17 +571,6 @@ TEST_F(Dhcp6ParserTest, optionNameSpaces) {
     testInvalidOptionParam("option foo", "name");
 }
 
-// Verify that very low negative option code is rejected in
-//  the configuration.
-TEST_F(Dhcp6ParserTest, optionCodeNegativeOverflow) {
-    // Using negative code. If range checking is not applied on the
-    // value then it may be successfully cast to uint16_t resulting
-    // in a value of 65531 (which will be accepted). The code should however
-    // detect that it is actually very low negative value and parsing should
-    // fail.
-    testInvalidOptionParam("-4294901765", "code");
-}
-
 // Verify that negative option code is rejected in the configuration.
 TEST_F(Dhcp6ParserTest, optionCodeNegative) {
     // Check negative option code -4. This should fail too.