test.it.unimi.dsi.big.util.ImmutableExternalPrefixMapTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dsiutils Show documentation
Show all versions of dsiutils Show documentation
The DSI utilities are a mishmash of classes accumulated during the last twenty years in projects developed at the DSI (Dipartimento di Scienze dell'Informazione, i.e., Information Sciences Department), now DI (Dipartimento di Informatica, i.e., Informatics Department), of the Universita` degli Studi di Milano.
/*
* DSI utilities
*
* Copyright (C) 2002-2020 Sebastiano Vigna
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 3 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, see .
*
*/
package it.unimi.dsi.big.util;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.io.IOException;
import java.util.Arrays;
import java.util.Collection;
import java.util.Iterator;
import org.junit.Test;
import it.unimi.dsi.fastutil.objects.ObjectLinkedOpenHashSet;
import it.unimi.dsi.fastutil.objects.ObjectRBTreeSet;
import it.unimi.dsi.fastutil.objects.ObjectSets;
import it.unimi.dsi.util.LongInterval;
import it.unimi.dsi.util.LongIntervals;
public class ImmutableExternalPrefixMapTest {
public void testLargeSet(final int blockSize) throws IOException {
final Collection c = Arrays.asList(TernaryIntervalSearchTreeTest.WORDS);
TernaryIntervalSearchTree t = new TernaryIntervalSearchTree(c);
ImmutableExternalPrefixMap d = new ImmutableExternalPrefixMap(c, blockSize);
for (final String element : TernaryIntervalSearchTreeTest.WORDS) assertTrue(element, d.containsKey(element));
for(int i = 0; i < TernaryIntervalSearchTreeTest.WORDS.length; i++) assertEquals(TernaryIntervalSearchTreeTest.WORDS[i], d.list().get(i).toString());
for (final String element : TernaryIntervalSearchTreeTest.WORDS) for(int j = 0; j < element.length(); j++) {
String s = element.substring(0, j + 1);
assertEquals(s, t.rangeMap().get(s), d.getInterval(s));
s = s + " ";
assertEquals(s, t.rangeMap().get(s), d.getInterval(s));
s = s.substring(0, s.length() - 1) + "~";
assertEquals(s, t.rangeMap().get(s), d.getInterval(s));
}
// Similar tests, using all prefixes of all strings in WORDS.
final Collection p = new ObjectRBTreeSet<>();
for (final String element : TernaryIntervalSearchTreeTest.WORDS) for(int j = 0; j < element.length(); j++)
p.add(element.substring(0, j + 1));
d = new ImmutableExternalPrefixMap(p, blockSize);
t = new TernaryIntervalSearchTree(p);
int j = 0;
for (final String s : p) {
assertTrue(s, d.containsKey(s));
assertEquals(s, d.list().get(j++).toString());
assertEquals(s, t.rangeMap().get(s), d.getInterval(s));
}
final Iterator k = d.iterator();
for(final Iterator i = p.iterator(); i.hasNext();) {
assertTrue(i.hasNext() == k.hasNext());
assertEquals(i.next().toString(), k.next().toString());
}
// Test negatives
for(long i = 1000000000000L; i < 1000000002000L; i++) assertEquals(-1, d.getLong(Long.toBinaryString(i)));
}
@Test
public void testLargeSet64() throws IOException {
testLargeSet(64);
}
@Test
public void testLargeSet128() throws IOException {
testLargeSet(128);
}
@Test
public void testLargeSet256() throws IOException {
testLargeSet(256);
}
@Test
public void testLargeSet1024() throws IOException {
testLargeSet(1024);
}
@Test
public void testLargeSet16384() throws IOException {
testLargeSet(16384);
}
@Test
public void testPrefixes() throws IOException {
final ImmutableExternalPrefixMap d = new ImmutableExternalPrefixMap(new ObjectLinkedOpenHashSet(new String[] { "ab", "ba", "bb" }));
assertEquals(LongInterval.valueOf(1, 2), d.getInterval("b"));
}
@Test
public void testLargeRootPrefixes() throws IOException {
final ImmutableExternalPrefixMap d = new ImmutableExternalPrefixMap(new ObjectLinkedOpenHashSet(new String[] { "aab", "aac", "aad" }), 2);
assertEquals(LongInterval.valueOf(0, 2), d.getInterval(""));
assertEquals(LongInterval.valueOf(0, 2), d.getInterval("aa"));
assertEquals(LongInterval.valueOf(0, 2), d.getInterval("aa"));
}
@Test
public void testSingleton() throws IOException {
final ImmutableExternalPrefixMap d = new ImmutableExternalPrefixMap(ObjectSets.singleton("a"), 1024);
assertTrue(d.containsKey("a"));
assertFalse(d.containsKey("b"));
assertFalse(d.containsKey("0"));
}
@Test
public void testPrefixOutOfRange() throws IOException {
final ImmutableExternalPrefixMap d = new ImmutableExternalPrefixMap(new ObjectLinkedOpenHashSet(new String[] { "ab", "ac" }));
assertEquals(LongIntervals.EMPTY_INTERVAL, d.getInterval("b"));
assertEquals(LongInterval.valueOf(0, 1), d.getInterval("a"));
}
}