Browse Source

[1583] one more cleanup: removed the wildcardEmptyWithNSEC3 test. This case
is no different from the non-empty wildcard NXRRRSET in terms of query
processing.

JINMEI Tatuya 13 years ago
parent
commit
988a731a52
1 changed files with 0 additions and 9 deletions
  1. 0 9
      src/bin/auth/tests/query_unittest.cc

+ 0 - 9
src/bin/auth/tests/query_unittest.cc

@@ -2059,13 +2059,4 @@ TEST_F(QueryTest, emptyNameWithNSEC3) {
     EXPECT_TRUE(result.isNSEC3Signed());
     EXPECT_FALSE(result.isWildcard());
 }
-
-TEST_F(QueryTest, wildcardEmptyWithNSEC3) {
-    mock_finder->setNSEC3Flag(true);
-    ZoneFinder::FindResult result = mock_finder->find(
-        Name("a.t.example.com"), RRType::A(), ZoneFinder::FIND_DNSSEC);
-    EXPECT_EQ(ZoneFinder::NXRRSET, result.code);
-    EXPECT_TRUE(result.isNSEC3Signed());
-    EXPECT_TRUE(result.isWildcard());
-}
 }