aherbert commented on a change in pull request #131: Added caching hasher
URL: 
https://github.com/apache/commons-collections/pull/131#discussion_r387521241
 
 

 ##########
 File path: 
src/test/java/org/apache/commons/collections4/bloomfilter/hasher/CachingHasherTest.java
 ##########
 @@ -0,0 +1,241 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.commons.collections4.bloomfilter.hasher;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
+
+import java.util.List;
+import java.util.NoSuchElementException;
+import java.util.PrimitiveIterator;
+import java.util.PrimitiveIterator.OfInt;
+
+import org.apache.commons.collections4.bloomfilter.hasher.function.MD5Cyclic;
+import org.junit.Before;
+import org.junit.Test;
+
+/**
+ * Tests the {@link CachingHasher}.
+ */
+public class CachingHasherTest {
+    private CachingHasher.Builder builder;
+    private Shape shape;
+
+    private final HashFunctionIdentity testFunction = new 
HashFunctionIdentity() {
+
+        @Override
+        public String getName() {
+            return "Test Function";
+        }
+
+        @Override
+        public ProcessType getProcessType() {
+            return ProcessType.CYCLIC;
+        }
+
+        @Override
+        public String getProvider() {
+            return "Apache Commons Collection Tests";
+        }
+
+        @Override
+        public long getSignature() {
+            return 0;
+        }
+
+        @Override
+        public Signedness getSignedness() {
+            return Signedness.SIGNED;
+        }
+    };
+
+    /**
+     * Sets up the CachingHasher.
+     */
+    @Before
+    public void setup() {
+        builder = new CachingHasher.Builder(new MD5Cyclic());
+        shape = new Shape(new MD5Cyclic(), 3, 72, 17);
+    }
+
+    /**
+     * Tests that the expected bits are returned from hashing.
+     */
+    @Test
+    public void testGetBits() {
+
+        final int[] expected = { 6, 69, 44, 19, 10, 57, 48, 23, 70, 61, 36, 
11, 2, 49, 24, 15, 62 };
+
+        final Hasher hasher = builder.with("Hello").build();
+
+        final OfInt iter = hasher.getBits(shape);
+
+        for (final int element : expected) {
+            assertTrue(iter.hasNext());
+            assertEquals(element, iter.nextInt());
+        }
+        assertFalse(iter.hasNext());
+    }
+
+    /**
+     * Tests that bits from multiple hashes are returned correctly.
+     */
+    @Test
+    public void testGetBits_MultipleHashes() {
+        final int[] expected = { 6, 69, 44, 19, 10, 57, 48, 23, 70, 61, 36, 
11, 2, 49, 24, 15, 62, 1, 63, 53, 43, 17, 7,
+                69, 59, 49, 39, 13, 3, 65, 55, 45, 35, 25 };
+
+        final Hasher hasher = builder.with("Hello").with("World").build();
+
+        final OfInt iter = hasher.getBits(shape);
+
+        for (final int element : expected) {
+            assertTrue(iter.hasNext());
+            assertEquals(element, iter.nextInt());
+        }
+        assertFalse(iter.hasNext());
+        try {
+            iter.next();
+            fail("Should have thown NoSuchElementException");
+        } catch (final NoSuchElementException ignore) {
+            // do nothing
+        }
+    }
+
+    /**
+     * Tests that retrieving bits for the wrong shape throws an exception.
+     */
+    @Test
+    public void testGetBits_WongShape() {
+
+        final Hasher hasher = builder.with("Hello").build();
+
+        try {
+            hasher.getBits(new Shape(testFunction, 3, 72, 17));
+            fail("Should have thown IllegalArgumentException");
+        } catch (final IllegalArgumentException expected) {
+            // do nothing
+        }
+    }
+
+    /**
+     * Tests if isEmpty() reports correctly and the iterator returns no values.
+     */
+    @Test
+    public void testIsEmpty() {
+        CachingHasher hasher = builder.build();
+        assertTrue(hasher.isEmpty());
+        final OfInt iter = hasher.getBits(shape);
+        assertFalse(iter.hasNext());
+        try {
+            iter.next();
+            fail("Should have thown NoSuchElementException");
+        } catch (final NoSuchElementException expected) {
+            // do nothing
+        }
+
+        assertFalse(builder.with("Hello").build().isEmpty());
+    }
+
+    @Test
+    public void testNonCyclicHashFunction() {
+        HashFunctionIdentity hfi = new HashFunctionIdentity() {
+
+            @Override
+            public String getName() {
+                return "Testing-NonCyclic-Hash";
+            }
+
+            @Override
+            public ProcessType getProcessType() {
+                return ProcessType.ITERATIVE;
+            }
+
+            @Override
+            public String getProvider() {
+                return "Apache Commons Collection Testing";
+            }
+
+            @Override
+            public long getSignature() {
+                return 0;
+            }
+
+            @Override
+            public Signedness getSignedness() {
+                return Signedness.SIGNED;
+            }
+        };
+
+        try {
+            new CachingHasher(hfi, new long[][] { { 1, 4 }, { 3, 6 } });
+            fail("Should have thrown exception");
+        } catch (IllegalArgumentException expected) {
+            // do nothing.
+        }
+
+    }
+
+    @Test
+    public void testGetBuffers() {
+        final CachingHasher hasher = builder.with("Hello").build();
+
+        List<long[]> buffers = hasher.getBuffers();
+        HashFunctionIdentity id = hasher.getHashFunctionIdentity();
+
+        CachingHasher hasher2 = new CachingHasher( id, buffers );
+
+        PrimitiveIterator.OfInt iter1 = hasher.getBits(shape);
+        PrimitiveIterator.OfInt iter2 = hasher2.getBits(shape);
+
+        while (iter1.hasNext())
 
 Review comment:
   This should have failed checkstyle. Have you based on the current master?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to