|
| 1 | +package org.apache.solr.search.facet; |
| 2 | + |
| 3 | +import java.io.ByteArrayInputStream; |
| 4 | +import java.io.ByteArrayOutputStream; |
| 5 | +import java.io.IOException; |
| 6 | +import java.io.InputStream; |
| 7 | +import java.util.HashMap; |
| 8 | +import java.util.Map; |
| 9 | +import java.util.Random; |
| 10 | + |
| 11 | +import com.carrotsearch.randomizedtesting.annotations.Seed; |
| 12 | +import org.apache.lucene.util.LuceneTestCase; |
| 13 | +import org.apache.solr.common.util.JavaBinCodec; |
| 14 | +import org.apache.solr.common.util.SimpleOrderedMap; |
| 15 | +import org.junit.Test; |
| 16 | + |
| 17 | +public class TermFrequencyCounterTest extends LuceneTestCase { |
| 18 | + private static final char[] ALPHABET = "abcdefghijklkmnopqrstuvwxyz".toCharArray(); |
| 19 | + |
| 20 | + @Test |
| 21 | + public void testAddValue() throws IOException { |
| 22 | + int iters = 10 * RANDOM_MULTIPLIER; |
| 23 | + |
| 24 | + for (int i = 0; i < iters; i++) { |
| 25 | + TermFrequencyCounter counter = new TermFrequencyCounter(); |
| 26 | + |
| 27 | + int numValues = random().nextInt(100); |
| 28 | + Map<String, Integer> expected = new HashMap<>(); |
| 29 | + for (int j = 0; j < numValues; j++) { |
| 30 | + String value = randomString(ALPHABET, random().nextInt(256)); |
| 31 | + int count = random().nextInt(256); |
| 32 | + |
| 33 | + addCount(counter, value, count); |
| 34 | + |
| 35 | + expected.merge(value, count, Integer::sum); |
| 36 | + } |
| 37 | + |
| 38 | + expected.forEach((value, count) -> assertCount(counter, value, count)); |
| 39 | + |
| 40 | + TermFrequencyCounter serialized = serdeser(counter, random().nextInt(Integer.MAX_VALUE)); |
| 41 | + |
| 42 | + expected.forEach((value, count) -> assertCount(serialized, value, count)); |
| 43 | + } |
| 44 | + } |
| 45 | + |
| 46 | + @Test |
| 47 | + public void testMerge() throws IOException { |
| 48 | + int iters = 10 * RANDOM_MULTIPLIER; |
| 49 | + |
| 50 | + for (int i = 0; i < iters; i++) { |
| 51 | + TermFrequencyCounter x = new TermFrequencyCounter(); |
| 52 | + |
| 53 | + int numXValues = random().nextInt(100); |
| 54 | + Map<String, Integer> expectedXValues = new HashMap<>(); |
| 55 | + for (int j = 0; j < numXValues; j++) { |
| 56 | + String value = randomString(ALPHABET, random().nextInt(256)); |
| 57 | + int count = random().nextInt(256); |
| 58 | + |
| 59 | + addCount(x, value, count); |
| 60 | + |
| 61 | + expectedXValues.merge(value, count, Integer::sum); |
| 62 | + } |
| 63 | + |
| 64 | + expectedXValues.forEach((value, count) -> assertCount(x, value, count)); |
| 65 | + |
| 66 | + TermFrequencyCounter y = new TermFrequencyCounter(); |
| 67 | + |
| 68 | + int numYValues = random().nextInt(100); |
| 69 | + Map<String, Integer> expectedYValues = new HashMap<>(); |
| 70 | + for (int j = 0; j < numYValues; j++) { |
| 71 | + String value = randomString(ALPHABET, random().nextInt(256)); |
| 72 | + int count = random().nextInt(256); |
| 73 | + |
| 74 | + addCount(y, value, count); |
| 75 | + |
| 76 | + expectedYValues.merge(value, count, Integer::sum); |
| 77 | + } |
| 78 | + |
| 79 | + expectedYValues.forEach((value, count) -> assertCount(y, value, count)); |
| 80 | + |
| 81 | + TermFrequencyCounter merged = merge(x, y, random().nextInt(Integer.MAX_VALUE)); |
| 82 | + |
| 83 | + expectedYValues.forEach((value, count) -> expectedXValues.merge(value, count, Integer::sum)); |
| 84 | + |
| 85 | + expectedXValues.forEach((value, count) -> assertCount(merged, value, count)); |
| 86 | + } |
| 87 | + } |
| 88 | + |
| 89 | + private static String randomString(char[] alphabet, int length) { |
| 90 | + final StringBuilder sb = new StringBuilder(length); |
| 91 | + for (int i = 0; i < length; i++) { |
| 92 | + sb.append(alphabet[random().nextInt(alphabet.length)]); |
| 93 | + } |
| 94 | + return sb.toString(); |
| 95 | + } |
| 96 | + |
| 97 | + private static void addCount(TermFrequencyCounter counter, String value, int count) { |
| 98 | + for (int i = 0; i < count; i++) { |
| 99 | + counter.add(value); |
| 100 | + } |
| 101 | + } |
| 102 | + |
| 103 | + private static void assertCount(TermFrequencyCounter counter, String value, int count) { |
| 104 | + assertEquals( |
| 105 | + "value " + value + " should have count " + count, |
| 106 | + count, |
| 107 | + (int) counter.getCounters().getOrDefault(value, 0) |
| 108 | + ); |
| 109 | + } |
| 110 | + |
| 111 | + private static TermFrequencyCounter serdeser(TermFrequencyCounter counter, int limit) throws IOException { |
| 112 | + JavaBinCodec codec = new JavaBinCodec(); |
| 113 | + |
| 114 | + ByteArrayOutputStream out = new ByteArrayOutputStream(); |
| 115 | + codec.marshal(counter.serialize(limit), out); |
| 116 | + |
| 117 | + InputStream in = new ByteArrayInputStream(out.toByteArray()); |
| 118 | + counter = new TermFrequencyCounter(); |
| 119 | + counter.merge((Map<String, Integer>) codec.unmarshal(in)); |
| 120 | + |
| 121 | + return counter; |
| 122 | + } |
| 123 | + |
| 124 | + private static TermFrequencyCounter merge( |
| 125 | + TermFrequencyCounter counter, |
| 126 | + TermFrequencyCounter toMerge, |
| 127 | + int limit |
| 128 | + ) throws IOException { |
| 129 | + JavaBinCodec codec = new JavaBinCodec(); |
| 130 | + |
| 131 | + ByteArrayOutputStream out = new ByteArrayOutputStream(); |
| 132 | + codec.marshal(toMerge.serialize(limit), out); |
| 133 | + |
| 134 | + InputStream in = new ByteArrayInputStream(out.toByteArray()); |
| 135 | + counter.merge((Map<String, Integer>) codec.unmarshal(in)); |
| 136 | + |
| 137 | + return counter; |
| 138 | + } |
| 139 | +} |
0 commit comments