]> gitweb.fperrin.net Git - DictionaryPC.git/blobdiff - src/com/hughes/android/dictionary/engine/DictionaryTest.java
Fix AF-EN test.
[DictionaryPC.git] / src / com / hughes / android / dictionary / engine / DictionaryTest.java
index f01c846ec6964d00a65483afae8aa932d37d8047..2662cbbb633e40f81b34035b3e17fec51185a992 100644 (file)
@@ -74,6 +74,20 @@ public class DictionaryTest extends TestCase {
     raf.close();
   }
 
+//  public void testFr() throws IOException {
+//      final RandomAccessFile raf = new RandomAccessFile(OUTPUTS + "FR.quickdic", "r");
+//      final Dictionary dict = new Dictionary(raf);
+//      final Index frIndex = dict.indices.get(0);
+//      
+//      // Now they're all cached, we shouldn't have to search.
+//      for (final IndexEntry indexEntry : frIndex.sortedIndexEntries) {
+//          System.out.println(indexEntry.token);
+//      }
+//
+//      raf.close();
+//  }
+
+  
   public void testDeEnWiktionary() throws IOException {
       final RandomAccessFile raf = new RandomAccessFile(OUTPUTS + "DE-EN.quickdic", "r");
       final Dictionary dict = new Dictionary(raf);
@@ -213,8 +227,22 @@ public class DictionaryTest extends TestCase {
     
     raf.close();
   }
+  
+  public void testMultiSearchIt() throws IOException {
+      final RandomAccessFile raf = new RandomAccessFile(OUTPUTS + "IT.quickdic", "r");
+      final Dictionary dict = new Dictionary(raf);
+      final Index index = dict.indices.get(0);
 
-  public void testMultiSearchBig() throws IOException {
+      {
+      final List<RowBase> rows = index.multiWordSearch("fare centro", 
+              Arrays.asList("fare", "centro"), new AtomicBoolean(false));
+      System.out.println(CollectionUtil.join(rows, "\n  "));
+      assertTrue(rows.toString(), rows.size() > 0);
+      assertTrue(rows.get(0).toString().startsWith("fare centro@"));
+      }
+  }
+
+  public void testMultiSearchDeBig() throws IOException {
     final RandomAccessFile raf = new RandomAccessFile(OUTPUTS + "DE-EN.quickdic", "r");
     final Dictionary dict = new Dictionary(raf);
     final Index enIndex = dict.indices.get(1);
@@ -276,36 +304,36 @@ public class DictionaryTest extends TestCase {
   }
 
   public void testMultiSearchBigAF() throws IOException {
-    final RandomAccessFile raf = new RandomAccessFile(OUTPUTS + "EN-AF.quickdic", "r");
+    final RandomAccessFile raf = new RandomAccessFile(OUTPUTS + "AF-EN.quickdic", "r");
     final Dictionary dict = new Dictionary(raf);
-    final Index enIndex = dict.indices.get(0);
+    final Index enIndex = dict.indices.get(1);
 
     {
     final List<RowBase> rows = enIndex.multiWordSearch("pig eats", Arrays.asList("pig", "eats"), new AtomicBoolean(false));
     System.out.println(CollectionUtil.join(rows, "\n  "));
     assertTrue(rows.toString(), rows.size() > 0);
-    assertEquals("pig (someone who overeats or eats rapidly) (noun)\tvark", rows.get(0).toString());
+    assertEquals("vark\tpig (someone who overeats or eats rapidly) (noun)", rows.get(0).toString());
     }
 
     {
     final List<RowBase> rows = enIndex.multiWordSearch("pig eat", Arrays.asList("pig", "eat"), new AtomicBoolean(false));
     System.out.println(CollectionUtil.join(rows, "\n  "));
     assertTrue(rows.toString(), rows.size() > 0);
-    assertEquals("pig (someone who overeats or eats rapidly) (noun)\tvark", rows.get(0).toString());
+    assertEquals("vark\tpig (someone who overeats or eats rapidly) (noun)", rows.get(0).toString());
     }
 
     {
     final List<RowBase> rows = enIndex.multiWordSearch("pi ea", Arrays.asList("pi", "ea"), new AtomicBoolean(false));
     System.out.println(CollectionUtil.join(rows, "\n  "));
     assertTrue(rows.toString(), rows.size() > 0);
-    assertTrue(rows.toString().contains("pig (someone who overeats or eats rapidly) (noun)\tvark"));
+    assertTrue(rows.toString().contains("vark\tpig (someone who overeats or eats rapidly) (noun)"));
     }
 
     {
     final List<RowBase> rows = enIndex.multiWordSearch("p eat", Arrays.asList("p", "eat"), new AtomicBoolean(false));
     System.out.println(CollectionUtil.join(rows, "\n  "));
     assertTrue(rows.toString(), rows.size() > 0);
-    assertTrue(rows.toString().contains("pig (someone who overeats or eats rapidly) (noun)\tvark"));
+    assertTrue(rows.toString().contains("vark\tpig (someone who overeats or eats rapidly) (noun)"));
     }
 
     
@@ -314,16 +342,16 @@ public class DictionaryTest extends TestCase {
 
 
   public void testExactSearch() throws IOException {
-    final RandomAccessFile raf = new RandomAccessFile(OUTPUTS + "EN-ZH.quickdic", "r");
+    final RandomAccessFile raf = new RandomAccessFile(OUTPUTS + "EN-cmn.quickdic", "r");
     final Dictionary dict = new Dictionary(raf);
-    final Index zhIndex = dict.indices.get(1);
+    final Index cmnIndex = dict.indices.get(1);
 
     final Random random = new Random(10);
     
     for (int i = 0; i < 1000; ++i) {
-      final int ii = random.nextInt(zhIndex.sortedIndexEntries.size());
-      final IndexEntry indexEntry = zhIndex.sortedIndexEntries.get(ii);
-      final IndexEntry found = zhIndex.findExact(indexEntry.token);
+      final int ii = random.nextInt(cmnIndex.sortedIndexEntries.size());
+      final IndexEntry indexEntry = cmnIndex.sortedIndexEntries.get(ii);
+      final IndexEntry found = cmnIndex.findExact(indexEntry.token);
       assertNotNull(found);
       assertEquals(indexEntry.token, found.token);
       assertEquals(indexEntry, found);  // Test of caching....