/lucene/sandbox/src/test/org/apache/lucene/document/TestInetAddressPoint.java

http://github.com/apache/lucene-solr · Java · 176 lines · 122 code · 31 blank · 23 comment · 0 complexity · 959949a46b270777d260fcac6cfeb624 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.apache.lucene.document;
  18. import java.net.InetAddress;
  19. import org.apache.lucene.index.IndexReader;
  20. import org.apache.lucene.index.RandomIndexWriter;
  21. import org.apache.lucene.search.IndexSearcher;
  22. import org.apache.lucene.search.Query;
  23. import org.apache.lucene.store.Directory;
  24. import org.apache.lucene.util.LuceneTestCase;
  25. /** Simple tests for {@link InetAddressPoint} */
  26. public class TestInetAddressPoint extends LuceneTestCase {
  27. /** Add a single address and search for it */
  28. public void testBasics() throws Exception {
  29. Directory dir = newDirectory();
  30. RandomIndexWriter writer = new RandomIndexWriter(random(), dir);
  31. // add a doc with an address
  32. Document document = new Document();
  33. InetAddress address = InetAddress.getByName("1.2.3.4");
  34. document.add(new InetAddressPoint("field", address));
  35. writer.addDocument(document);
  36. // search and verify we found our doc
  37. IndexReader reader = writer.getReader();
  38. IndexSearcher searcher = newSearcher(reader);
  39. assertEquals(1, searcher.count(InetAddressPoint.newExactQuery("field", address)));
  40. assertEquals(1, searcher.count(InetAddressPoint.newPrefixQuery("field", address, 24)));
  41. assertEquals(1, searcher.count(InetAddressPoint.newRangeQuery("field", InetAddress.getByName("1.2.3.3"), InetAddress.getByName("1.2.3.5"))));
  42. assertEquals(1, searcher.count(InetAddressPoint.newSetQuery("field", InetAddress.getByName("1.2.3.4"))));
  43. assertEquals(1, searcher.count(InetAddressPoint.newSetQuery("field", InetAddress.getByName("1.2.3.4"), InetAddress.getByName("1.2.3.5"))));
  44. assertEquals(0, searcher.count(InetAddressPoint.newSetQuery("field", InetAddress.getByName("1.2.3.3"))));
  45. assertEquals(0, searcher.count(InetAddressPoint.newSetQuery("field")));
  46. reader.close();
  47. writer.close();
  48. dir.close();
  49. }
  50. /** Add a single address and search for it */
  51. public void testBasicsV6() throws Exception {
  52. Directory dir = newDirectory();
  53. RandomIndexWriter writer = new RandomIndexWriter(random(), dir);
  54. // add a doc with an address
  55. Document document = new Document();
  56. InetAddress address = InetAddress.getByName("fec0::f66d");
  57. document.add(new InetAddressPoint("field", address));
  58. writer.addDocument(document);
  59. // search and verify we found our doc
  60. IndexReader reader = writer.getReader();
  61. IndexSearcher searcher = newSearcher(reader);
  62. assertEquals(1, searcher.count(InetAddressPoint.newExactQuery("field", address)));
  63. assertEquals(1, searcher.count(InetAddressPoint.newPrefixQuery("field", address, 64)));
  64. assertEquals(1, searcher.count(InetAddressPoint.newRangeQuery("field", InetAddress.getByName("fec0::f66c"), InetAddress.getByName("fec0::f66e"))));
  65. reader.close();
  66. writer.close();
  67. dir.close();
  68. }
  69. public void testToString() throws Exception {
  70. assertEquals("InetAddressPoint <field:1.2.3.4>", new InetAddressPoint("field", InetAddress.getByName("1.2.3.4")).toString());
  71. assertEquals("InetAddressPoint <field:1.2.3.4>", new InetAddressPoint("field", InetAddress.getByName("::FFFF:1.2.3.4")).toString());
  72. assertEquals("InetAddressPoint <field:[fdc8:57ed:f042:ad1:f66d:4ff:fe90:ce0c]>", new InetAddressPoint("field", InetAddress.getByName("fdc8:57ed:f042:0ad1:f66d:4ff:fe90:ce0c")).toString());
  73. assertEquals("field:[1.2.3.4 TO 1.2.3.4]", InetAddressPoint.newExactQuery("field", InetAddress.getByName("1.2.3.4")).toString());
  74. assertEquals("field:[0:0:0:0:0:0:0:1 TO 0:0:0:0:0:0:0:1]", InetAddressPoint.newExactQuery("field", InetAddress.getByName("::1")).toString());
  75. assertEquals("field:[1.2.3.0 TO 1.2.3.255]", InetAddressPoint.newPrefixQuery("field", InetAddress.getByName("1.2.3.4"), 24).toString());
  76. assertEquals("field:[fdc8:57ed:f042:ad1:0:0:0:0 TO fdc8:57ed:f042:ad1:ffff:ffff:ffff:ffff]", InetAddressPoint.newPrefixQuery("field", InetAddress.getByName("fdc8:57ed:f042:0ad1:f66d:4ff:fe90:ce0c"), 64).toString());
  77. assertEquals("field:{fdc8:57ed:f042:ad1:f66d:4ff:fe90:ce0c}", InetAddressPoint.newSetQuery("field", InetAddress.getByName("fdc8:57ed:f042:0ad1:f66d:4ff:fe90:ce0c")).toString());
  78. }
  79. public void testQueryEquals() throws Exception {
  80. Query q1, q2;
  81. q1 = InetAddressPoint.newRangeQuery("a", InetAddress.getByName("1.2.3.3"), InetAddress.getByName("1.2.3.5"));
  82. q2 = InetAddressPoint.newRangeQuery("a", InetAddress.getByName("1.2.3.3"), InetAddress.getByName("1.2.3.5"));
  83. assertEquals(q1, q2);
  84. assertEquals(q1.hashCode(), q2.hashCode());
  85. assertFalse(q1.equals(InetAddressPoint.newRangeQuery("a", InetAddress.getByName("1.2.3.3"), InetAddress.getByName("1.2.3.7"))));
  86. assertFalse(q1.equals(InetAddressPoint.newRangeQuery("b", InetAddress.getByName("1.2.3.3"), InetAddress.getByName("1.2.3.5"))));
  87. q1 = InetAddressPoint.newPrefixQuery("a", InetAddress.getByName("1.2.3.3"), 16);
  88. q2 = InetAddressPoint.newPrefixQuery("a", InetAddress.getByName("1.2.3.3"), 16);
  89. assertEquals(q1, q2);
  90. assertEquals(q1.hashCode(), q2.hashCode());
  91. assertFalse(q1.equals(InetAddressPoint.newPrefixQuery("a", InetAddress.getByName("1.1.3.5"), 16)));
  92. assertFalse(q1.equals(InetAddressPoint.newPrefixQuery("a", InetAddress.getByName("1.2.3.5"), 24)));
  93. q1 = InetAddressPoint.newExactQuery("a", InetAddress.getByName("1.2.3.3"));
  94. q2 = InetAddressPoint.newExactQuery("a", InetAddress.getByName("1.2.3.3"));
  95. assertEquals(q1, q2);
  96. assertEquals(q1.hashCode(), q2.hashCode());
  97. assertFalse(q1.equals(InetAddressPoint.newExactQuery("a", InetAddress.getByName("1.2.3.5"))));
  98. q1 = InetAddressPoint.newSetQuery("a", InetAddress.getByName("1.2.3.3"), InetAddress.getByName("1.2.3.5"));
  99. q2 = InetAddressPoint.newSetQuery("a", InetAddress.getByName("1.2.3.3"), InetAddress.getByName("1.2.3.5"));
  100. assertEquals(q1, q2);
  101. assertEquals(q1.hashCode(), q2.hashCode());
  102. assertFalse(q1.equals(InetAddressPoint.newSetQuery("a", InetAddress.getByName("1.2.3.3"), InetAddress.getByName("1.2.3.7"))));
  103. }
  104. public void testPrefixQuery() throws Exception {
  105. assertEquals(
  106. InetAddressPoint.newRangeQuery("a", InetAddress.getByName("1.2.3.0"), InetAddress.getByName("1.2.3.255")),
  107. InetAddressPoint.newPrefixQuery("a", InetAddress.getByName("1.2.3.127"), 24));
  108. assertEquals(
  109. InetAddressPoint.newRangeQuery("a", InetAddress.getByName("1.2.3.128"), InetAddress.getByName("1.2.3.255")),
  110. InetAddressPoint.newPrefixQuery("a", InetAddress.getByName("1.2.3.213"), 25));
  111. assertEquals(
  112. InetAddressPoint.newRangeQuery("a", InetAddress.getByName("2001::a000:0"), InetAddress.getByName("2001::afff:ffff")),
  113. InetAddressPoint.newPrefixQuery("a", InetAddress.getByName("2001::a6bd:fc80"), 100));
  114. }
  115. public void testNextUp() throws Exception {
  116. assertEquals(InetAddress.getByName("::1"),
  117. InetAddressPoint.nextUp(InetAddress.getByName("::")));
  118. assertEquals(InetAddress.getByName("::1:0"),
  119. InetAddressPoint.nextUp(InetAddress.getByName("::ffff")));
  120. assertEquals(InetAddress.getByName("1.2.4.0"),
  121. InetAddressPoint.nextUp(InetAddress.getByName("1.2.3.255")));
  122. assertEquals(InetAddress.getByName("0.0.0.0"),
  123. InetAddressPoint.nextUp(InetAddress.getByName("::fffe:ffff:ffff")));
  124. assertEquals(InetAddress.getByName("::1:0:0:0"),
  125. InetAddressPoint.nextUp(InetAddress.getByName("255.255.255.255")));
  126. ArithmeticException e = expectThrows(ArithmeticException.class,
  127. () -> InetAddressPoint.nextUp(InetAddress.getByName("ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff")));
  128. assertEquals("Overflow: there is no greater InetAddress than ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", e.getMessage());
  129. }
  130. public void testNextDown() throws Exception {
  131. assertEquals(InetAddress.getByName("ffff:ffff:ffff:ffff:ffff:ffff:ffff:fffe"),
  132. InetAddressPoint.nextDown(InetAddress.getByName("ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff")));
  133. assertEquals(InetAddress.getByName("::ffff"),
  134. InetAddressPoint.nextDown(InetAddress.getByName("::1:0")));
  135. assertEquals(InetAddress.getByName("1.2.3.255"),
  136. InetAddressPoint.nextDown(InetAddress.getByName("1.2.4.0")));
  137. assertEquals(InetAddress.getByName("::fffe:ffff:ffff"),
  138. InetAddressPoint.nextDown(InetAddress.getByName("0.0.0.0")));
  139. assertEquals(InetAddress.getByName("255.255.255.255"),
  140. InetAddressPoint.nextDown(InetAddress.getByName("::1:0:0:0")));
  141. ArithmeticException e = expectThrows(ArithmeticException.class,
  142. () -> InetAddressPoint.nextDown(InetAddress.getByName("::")));
  143. assertEquals("Underflow: there is no smaller InetAddress than 0:0:0:0:0:0:0:0", e.getMessage());
  144. }
  145. }