2013-09-10 10:16:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed 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 com.android.inputmethod.latin;
|
|
|
|
|
|
|
|
import android.test.AndroidTestCase;
|
|
|
|
import android.test.suitebuilder.annotation.LargeTest;
|
2013-09-24 07:32:25 +00:00
|
|
|
import android.util.Pair;
|
2013-09-10 10:16:33 +00:00
|
|
|
|
2013-09-17 06:11:24 +00:00
|
|
|
import com.android.inputmethod.latin.makedict.CodePointUtils;
|
2013-09-10 10:16:33 +00:00
|
|
|
import com.android.inputmethod.latin.makedict.FormatSpec;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
import java.io.IOException;
|
2013-09-17 06:32:37 +00:00
|
|
|
import java.util.ArrayList;
|
2013-09-10 10:16:33 +00:00
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Locale;
|
2013-09-26 03:59:02 +00:00
|
|
|
import java.util.Map;
|
2013-09-17 06:11:24 +00:00
|
|
|
import java.util.Random;
|
2013-09-10 10:16:33 +00:00
|
|
|
|
|
|
|
@LargeTest
|
|
|
|
public class BinaryDictionaryTests extends AndroidTestCase {
|
|
|
|
private static final String TEST_DICT_FILE_EXTENSION = ".testDict";
|
|
|
|
private static final String TEST_LOCALE = "test";
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void setUp() throws Exception {
|
|
|
|
super.setUp();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void tearDown() throws Exception {
|
|
|
|
super.tearDown();
|
|
|
|
}
|
|
|
|
|
2013-09-26 03:59:02 +00:00
|
|
|
private File createEmptyDictionaryAndGetFile(final String filename) throws IOException {
|
2013-09-10 10:16:33 +00:00
|
|
|
final File file = File.createTempFile(filename, TEST_DICT_FILE_EXTENSION,
|
|
|
|
getContext().getCacheDir());
|
2013-09-26 03:59:02 +00:00
|
|
|
Map<String, String> attributeMap = new HashMap<String, String>();
|
|
|
|
attributeMap.put(FormatSpec.FileHeader.SUPPORTS_DYNAMIC_UPDATE_ATTRIBUTE,
|
|
|
|
FormatSpec.FileHeader.ATTRIBUTE_VALUE_TRUE);
|
|
|
|
if (BinaryDictionary.createEmptyDictFile(file.getAbsolutePath(),
|
|
|
|
3 /* dictVersion */, attributeMap)) {
|
|
|
|
return file;
|
|
|
|
} else {
|
|
|
|
throw new IOException("Empty dictionary cannot be created.");
|
|
|
|
}
|
2013-09-10 10:16:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void testIsValidDictionary() {
|
|
|
|
File dictFile = null;
|
|
|
|
try {
|
|
|
|
dictFile = createEmptyDictionaryAndGetFile("TestBinaryDictionary");
|
|
|
|
} catch (IOException e) {
|
|
|
|
fail("IOException while writing an initial dictionary : " + e);
|
|
|
|
}
|
|
|
|
BinaryDictionary binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
assertTrue("binaryDictionary must be valid for existing valid dictionary file.",
|
|
|
|
binaryDictionary.isValidDictionary());
|
|
|
|
binaryDictionary.close();
|
|
|
|
assertFalse("binaryDictionary must be invalid after closing.",
|
|
|
|
binaryDictionary.isValidDictionary());
|
|
|
|
dictFile.delete();
|
|
|
|
binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(), 0 /* offset */,
|
|
|
|
dictFile.length(), true /* useFullEditDistance */, Locale.getDefault(),
|
|
|
|
TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
assertFalse("binaryDictionary must be invalid for not existing dictionary file.",
|
|
|
|
binaryDictionary.isValidDictionary());
|
|
|
|
binaryDictionary.close();
|
|
|
|
}
|
2013-09-10 13:46:10 +00:00
|
|
|
|
|
|
|
public void testAddUnigramWord() {
|
|
|
|
File dictFile = null;
|
|
|
|
try {
|
|
|
|
dictFile = createEmptyDictionaryAndGetFile("TestBinaryDictionary");
|
|
|
|
} catch (IOException e) {
|
|
|
|
fail("IOException while writing an initial dictionary : " + e);
|
|
|
|
}
|
|
|
|
BinaryDictionary binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
|
|
|
|
final int probability = 100;
|
|
|
|
binaryDictionary.addUnigramWord("aaa", probability);
|
|
|
|
// Reallocate and create.
|
|
|
|
binaryDictionary.addUnigramWord("aab", probability);
|
|
|
|
// Insert into children.
|
|
|
|
binaryDictionary.addUnigramWord("aac", probability);
|
|
|
|
// Make terminal.
|
|
|
|
binaryDictionary.addUnigramWord("aa", probability);
|
|
|
|
// Create children.
|
|
|
|
binaryDictionary.addUnigramWord("aaaa", probability);
|
|
|
|
// Reallocate and make termianl.
|
|
|
|
binaryDictionary.addUnigramWord("a", probability);
|
|
|
|
|
|
|
|
final int updatedProbability = 200;
|
|
|
|
// Update.
|
|
|
|
binaryDictionary.addUnigramWord("aaa", updatedProbability);
|
|
|
|
|
|
|
|
assertEquals(probability, binaryDictionary.getFrequency("aab"));
|
|
|
|
assertEquals(probability, binaryDictionary.getFrequency("aac"));
|
2013-09-17 06:11:24 +00:00
|
|
|
assertEquals(probability, binaryDictionary.getFrequency("aa"));
|
2013-09-10 13:46:10 +00:00
|
|
|
assertEquals(probability, binaryDictionary.getFrequency("aaaa"));
|
|
|
|
assertEquals(probability, binaryDictionary.getFrequency("a"));
|
|
|
|
assertEquals(updatedProbability, binaryDictionary.getFrequency("aaa"));
|
2013-09-17 06:11:24 +00:00
|
|
|
|
|
|
|
dictFile.delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void testRandomlyAddUnigramWord() {
|
|
|
|
final int wordCount = 1000;
|
|
|
|
final int codePointSetSize = 50;
|
|
|
|
final int seed = 123456789;
|
|
|
|
|
|
|
|
File dictFile = null;
|
|
|
|
try {
|
|
|
|
dictFile = createEmptyDictionaryAndGetFile("TestBinaryDictionary");
|
|
|
|
} catch (IOException e) {
|
|
|
|
fail("IOException while writing an initial dictionary : " + e);
|
|
|
|
}
|
|
|
|
BinaryDictionary binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
|
|
|
|
final HashMap<String, Integer> probabilityMap = new HashMap<String, Integer>();
|
|
|
|
// Test a word that isn't contained within the dictionary.
|
|
|
|
final Random random = new Random(seed);
|
|
|
|
final int[] codePointSet = CodePointUtils.generateCodePointSet(codePointSetSize, random);
|
|
|
|
for (int i = 0; i < wordCount; ++i) {
|
|
|
|
final String word = CodePointUtils.generateWord(random, codePointSet);
|
2013-09-18 02:18:28 +00:00
|
|
|
probabilityMap.put(word, random.nextInt(0xFF));
|
2013-09-17 06:11:24 +00:00
|
|
|
}
|
|
|
|
for (String word : probabilityMap.keySet()) {
|
|
|
|
binaryDictionary.addUnigramWord(word, probabilityMap.get(word));
|
|
|
|
}
|
|
|
|
for (String word : probabilityMap.keySet()) {
|
|
|
|
assertEquals(word, (int)probabilityMap.get(word), binaryDictionary.getFrequency(word));
|
|
|
|
}
|
|
|
|
dictFile.delete();
|
2013-09-10 13:46:10 +00:00
|
|
|
}
|
2013-09-17 03:52:21 +00:00
|
|
|
|
|
|
|
public void testAddBigramWords() {
|
|
|
|
File dictFile = null;
|
|
|
|
try {
|
|
|
|
dictFile = createEmptyDictionaryAndGetFile("TestBinaryDictionary");
|
|
|
|
} catch (IOException e) {
|
|
|
|
fail("IOException while writing an initial dictionary : " + e);
|
|
|
|
}
|
|
|
|
BinaryDictionary binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
|
|
|
|
final int unigramProbability = 100;
|
|
|
|
final int bigramProbability = 10;
|
2013-09-18 02:18:28 +00:00
|
|
|
final int updatedBigramProbability = 15;
|
2013-09-17 03:52:21 +00:00
|
|
|
binaryDictionary.addUnigramWord("aaa", unigramProbability);
|
|
|
|
binaryDictionary.addUnigramWord("abb", unigramProbability);
|
|
|
|
binaryDictionary.addUnigramWord("bcc", unigramProbability);
|
|
|
|
binaryDictionary.addBigramWords("aaa", "abb", bigramProbability);
|
|
|
|
binaryDictionary.addBigramWords("aaa", "bcc", bigramProbability);
|
|
|
|
binaryDictionary.addBigramWords("abb", "aaa", bigramProbability);
|
|
|
|
binaryDictionary.addBigramWords("abb", "bcc", bigramProbability);
|
|
|
|
|
2013-09-18 02:18:28 +00:00
|
|
|
final int probability = binaryDictionary.calculateProbability(unigramProbability,
|
|
|
|
bigramProbability);
|
2013-09-17 03:52:21 +00:00
|
|
|
assertEquals(true, binaryDictionary.isValidBigram("aaa", "abb"));
|
|
|
|
assertEquals(true, binaryDictionary.isValidBigram("aaa", "bcc"));
|
|
|
|
assertEquals(true, binaryDictionary.isValidBigram("abb", "aaa"));
|
|
|
|
assertEquals(true, binaryDictionary.isValidBigram("abb", "bcc"));
|
2013-09-18 02:18:28 +00:00
|
|
|
assertEquals(probability, binaryDictionary.getBigramProbability("aaa", "abb"));
|
|
|
|
assertEquals(probability, binaryDictionary.getBigramProbability("aaa", "bcc"));
|
|
|
|
assertEquals(probability, binaryDictionary.getBigramProbability("abb", "aaa"));
|
|
|
|
assertEquals(probability, binaryDictionary.getBigramProbability("abb", "bcc"));
|
|
|
|
|
|
|
|
binaryDictionary.addBigramWords("aaa", "abb", updatedBigramProbability);
|
|
|
|
final int updatedProbability = binaryDictionary.calculateProbability(unigramProbability,
|
|
|
|
updatedBigramProbability);
|
|
|
|
assertEquals(updatedProbability, binaryDictionary.getBigramProbability("aaa", "abb"));
|
2013-09-17 03:52:21 +00:00
|
|
|
|
|
|
|
assertEquals(false, binaryDictionary.isValidBigram("bcc", "aaa"));
|
|
|
|
assertEquals(false, binaryDictionary.isValidBigram("bcc", "bbc"));
|
|
|
|
assertEquals(false, binaryDictionary.isValidBigram("aaa", "aaa"));
|
2013-09-18 02:18:28 +00:00
|
|
|
assertEquals(Dictionary.NOT_A_PROBABILITY,
|
|
|
|
binaryDictionary.getBigramProbability("bcc", "aaa"));
|
|
|
|
assertEquals(Dictionary.NOT_A_PROBABILITY,
|
|
|
|
binaryDictionary.getBigramProbability("bcc", "bbc"));
|
|
|
|
assertEquals(Dictionary.NOT_A_PROBABILITY,
|
|
|
|
binaryDictionary.getBigramProbability("aaa", "aaa"));
|
|
|
|
|
|
|
|
// Testing bigram link.
|
|
|
|
binaryDictionary.addUnigramWord("abcde", unigramProbability);
|
|
|
|
binaryDictionary.addUnigramWord("fghij", unigramProbability);
|
|
|
|
binaryDictionary.addBigramWords("abcde", "fghij", bigramProbability);
|
|
|
|
binaryDictionary.addUnigramWord("fgh", unigramProbability);
|
|
|
|
binaryDictionary.addUnigramWord("abc", unigramProbability);
|
|
|
|
binaryDictionary.addUnigramWord("f", unigramProbability);
|
|
|
|
assertEquals(probability, binaryDictionary.getBigramProbability("abcde", "fghij"));
|
|
|
|
assertEquals(Dictionary.NOT_A_PROBABILITY,
|
|
|
|
binaryDictionary.getBigramProbability("abcde", "fgh"));
|
|
|
|
binaryDictionary.addBigramWords("abcde", "fghij", updatedBigramProbability);
|
|
|
|
assertEquals(updatedProbability, binaryDictionary.getBigramProbability("abcde", "fghij"));
|
2013-09-17 03:52:21 +00:00
|
|
|
|
|
|
|
dictFile.delete();
|
|
|
|
}
|
2013-09-17 06:32:37 +00:00
|
|
|
|
|
|
|
public void testRandomlyAddBigramWords() {
|
|
|
|
final int wordCount = 100;
|
|
|
|
final int bigramCount = 1000;
|
|
|
|
final int codePointSetSize = 50;
|
|
|
|
final int seed = 11111;
|
2013-09-17 08:49:22 +00:00
|
|
|
|
2013-09-17 06:32:37 +00:00
|
|
|
File dictFile = null;
|
|
|
|
try {
|
|
|
|
dictFile = createEmptyDictionaryAndGetFile("TestBinaryDictionary");
|
|
|
|
} catch (IOException e) {
|
|
|
|
fail("IOException while writing an initial dictionary : " + e);
|
|
|
|
}
|
|
|
|
BinaryDictionary binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
final ArrayList<String> words = new ArrayList<String>();
|
|
|
|
// Test a word that isn't contained within the dictionary.
|
|
|
|
final Random random = new Random(seed);
|
|
|
|
final int[] codePointSet = CodePointUtils.generateCodePointSet(codePointSetSize, random);
|
2013-09-18 02:18:28 +00:00
|
|
|
final int[] unigramProbabilities = new int[wordCount];
|
2013-09-17 06:32:37 +00:00
|
|
|
for (int i = 0; i < wordCount; ++i) {
|
|
|
|
final String word = CodePointUtils.generateWord(random, codePointSet);
|
|
|
|
words.add(word);
|
2013-09-18 02:18:28 +00:00
|
|
|
final int unigramProbability = random.nextInt(0xFF);
|
|
|
|
unigramProbabilities[i] = unigramProbability;
|
2013-09-17 06:32:37 +00:00
|
|
|
binaryDictionary.addUnigramWord(word, unigramProbability);
|
|
|
|
}
|
|
|
|
|
2013-09-18 02:18:28 +00:00
|
|
|
final int[][] probabilities = new int[wordCount][wordCount];
|
|
|
|
|
|
|
|
for (int i = 0; i < wordCount; ++i) {
|
|
|
|
for (int j = 0; j < wordCount; ++j) {
|
|
|
|
probabilities[i][j] = Dictionary.NOT_A_PROBABILITY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-17 06:32:37 +00:00
|
|
|
for (int i = 0; i < bigramCount; i++) {
|
|
|
|
final int word0Index = random.nextInt(wordCount);
|
|
|
|
final int word1Index = random.nextInt(wordCount);
|
|
|
|
final String word0 = words.get(word0Index);
|
|
|
|
final String word1 = words.get(word1Index);
|
2013-09-18 02:18:28 +00:00
|
|
|
final int bigramProbability = random.nextInt(0xF);
|
|
|
|
probabilities[word0Index][word1Index] = binaryDictionary.calculateProbability(
|
|
|
|
unigramProbabilities[word1Index], bigramProbability);
|
2013-09-17 06:32:37 +00:00
|
|
|
binaryDictionary.addBigramWords(word0, word1, bigramProbability);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < words.size(); i++) {
|
|
|
|
for (int j = 0; j < words.size(); j++) {
|
2013-09-18 02:18:28 +00:00
|
|
|
assertEquals(probabilities[i][j],
|
|
|
|
binaryDictionary.getBigramProbability(words.get(i), words.get(j)));
|
2013-09-17 06:32:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dictFile.delete();
|
|
|
|
}
|
2013-09-17 08:49:22 +00:00
|
|
|
|
|
|
|
public void testRemoveBigramWords() {
|
|
|
|
File dictFile = null;
|
|
|
|
try {
|
|
|
|
dictFile = createEmptyDictionaryAndGetFile("TestBinaryDictionary");
|
|
|
|
} catch (IOException e) {
|
|
|
|
fail("IOException while writing an initial dictionary : " + e);
|
|
|
|
}
|
|
|
|
BinaryDictionary binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
final int unigramProbability = 100;
|
|
|
|
final int bigramProbability = 10;
|
|
|
|
binaryDictionary.addUnigramWord("aaa", unigramProbability);
|
|
|
|
binaryDictionary.addUnigramWord("abb", unigramProbability);
|
|
|
|
binaryDictionary.addUnigramWord("bcc", unigramProbability);
|
|
|
|
binaryDictionary.addBigramWords("aaa", "abb", bigramProbability);
|
|
|
|
binaryDictionary.addBigramWords("aaa", "bcc", bigramProbability);
|
|
|
|
binaryDictionary.addBigramWords("abb", "aaa", bigramProbability);
|
|
|
|
binaryDictionary.addBigramWords("abb", "bcc", bigramProbability);
|
|
|
|
|
|
|
|
assertEquals(true, binaryDictionary.isValidBigram("aaa", "abb"));
|
|
|
|
assertEquals(true, binaryDictionary.isValidBigram("aaa", "bcc"));
|
|
|
|
assertEquals(true, binaryDictionary.isValidBigram("abb", "aaa"));
|
|
|
|
assertEquals(true, binaryDictionary.isValidBigram("abb", "bcc"));
|
|
|
|
|
|
|
|
binaryDictionary.removeBigramWords("aaa", "abb");
|
|
|
|
assertEquals(false, binaryDictionary.isValidBigram("aaa", "abb"));
|
|
|
|
binaryDictionary.addBigramWords("aaa", "abb", bigramProbability);
|
|
|
|
assertEquals(true, binaryDictionary.isValidBigram("aaa", "abb"));
|
|
|
|
|
|
|
|
|
|
|
|
binaryDictionary.removeBigramWords("aaa", "bcc");
|
|
|
|
assertEquals(false, binaryDictionary.isValidBigram("aaa", "bcc"));
|
|
|
|
binaryDictionary.removeBigramWords("abb", "aaa");
|
|
|
|
assertEquals(false, binaryDictionary.isValidBigram("abb", "aaa"));
|
|
|
|
binaryDictionary.removeBigramWords("abb", "bcc");
|
|
|
|
assertEquals(false, binaryDictionary.isValidBigram("abb", "bcc"));
|
|
|
|
|
|
|
|
binaryDictionary.removeBigramWords("aaa", "abb");
|
|
|
|
// Test remove non-existing bigram operation.
|
|
|
|
binaryDictionary.removeBigramWords("aaa", "abb");
|
|
|
|
binaryDictionary.removeBigramWords("bcc", "aaa");
|
|
|
|
|
|
|
|
dictFile.delete();
|
|
|
|
}
|
2013-09-18 04:19:14 +00:00
|
|
|
|
|
|
|
public void testFlushDictionary() {
|
|
|
|
File dictFile = null;
|
|
|
|
try {
|
|
|
|
dictFile = createEmptyDictionaryAndGetFile("TestBinaryDictionary");
|
|
|
|
} catch (IOException e) {
|
|
|
|
fail("IOException while writing an initial dictionary : " + e);
|
|
|
|
}
|
|
|
|
BinaryDictionary binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
|
|
|
|
final int probability = 100;
|
|
|
|
binaryDictionary.addUnigramWord("aaa", probability);
|
|
|
|
binaryDictionary.addUnigramWord("abcd", probability);
|
|
|
|
// Close without flushing.
|
|
|
|
binaryDictionary.close();
|
|
|
|
|
|
|
|
binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
|
2013-09-18 09:08:33 +00:00
|
|
|
assertEquals(Dictionary.NOT_A_PROBABILITY, binaryDictionary.getFrequency("aaa"));
|
|
|
|
assertEquals(Dictionary.NOT_A_PROBABILITY, binaryDictionary.getFrequency("abcd"));
|
2013-09-18 04:19:14 +00:00
|
|
|
|
|
|
|
binaryDictionary.addUnigramWord("aaa", probability);
|
|
|
|
binaryDictionary.addUnigramWord("abcd", probability);
|
|
|
|
binaryDictionary.flush();
|
|
|
|
binaryDictionary.close();
|
|
|
|
|
|
|
|
binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
|
|
|
|
assertEquals(probability, binaryDictionary.getFrequency("aaa"));
|
|
|
|
assertEquals(probability, binaryDictionary.getFrequency("abcd"));
|
|
|
|
binaryDictionary.addUnigramWord("bcde", probability);
|
|
|
|
binaryDictionary.flush();
|
|
|
|
binaryDictionary.close();
|
|
|
|
|
|
|
|
binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
assertEquals(probability, binaryDictionary.getFrequency("bcde"));
|
|
|
|
binaryDictionary.close();
|
|
|
|
|
|
|
|
dictFile.delete();
|
|
|
|
}
|
2013-09-24 06:29:56 +00:00
|
|
|
|
|
|
|
public void testFlushWithGCDictionary() {
|
|
|
|
File dictFile = null;
|
|
|
|
try {
|
|
|
|
dictFile = createEmptyDictionaryAndGetFile("TestBinaryDictionary");
|
|
|
|
} catch (IOException e) {
|
|
|
|
fail("IOException while writing an initial dictionary : " + e);
|
|
|
|
}
|
|
|
|
BinaryDictionary binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
|
|
|
|
final int unigramProbability = 100;
|
|
|
|
final int bigramProbability = 10;
|
|
|
|
binaryDictionary.addUnigramWord("aaa", unigramProbability);
|
|
|
|
binaryDictionary.addUnigramWord("abb", unigramProbability);
|
|
|
|
binaryDictionary.addUnigramWord("bcc", unigramProbability);
|
|
|
|
binaryDictionary.addBigramWords("aaa", "abb", bigramProbability);
|
|
|
|
binaryDictionary.addBigramWords("aaa", "bcc", bigramProbability);
|
|
|
|
binaryDictionary.addBigramWords("abb", "aaa", bigramProbability);
|
|
|
|
binaryDictionary.addBigramWords("abb", "bcc", bigramProbability);
|
|
|
|
binaryDictionary.flushWithGC();
|
|
|
|
binaryDictionary.close();
|
|
|
|
|
|
|
|
binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
final int probability = binaryDictionary.calculateProbability(unigramProbability,
|
|
|
|
bigramProbability);
|
|
|
|
assertEquals(unigramProbability, binaryDictionary.getFrequency("aaa"));
|
|
|
|
assertEquals(unigramProbability, binaryDictionary.getFrequency("abb"));
|
|
|
|
assertEquals(unigramProbability, binaryDictionary.getFrequency("bcc"));
|
|
|
|
assertEquals(probability, binaryDictionary.getBigramProbability("aaa", "abb"));
|
|
|
|
assertEquals(probability, binaryDictionary.getBigramProbability("aaa", "bcc"));
|
|
|
|
assertEquals(probability, binaryDictionary.getBigramProbability("abb", "aaa"));
|
|
|
|
assertEquals(probability, binaryDictionary.getBigramProbability("abb", "bcc"));
|
|
|
|
assertEquals(false, binaryDictionary.isValidBigram("bcc", "aaa"));
|
|
|
|
assertEquals(false, binaryDictionary.isValidBigram("bcc", "bbc"));
|
|
|
|
assertEquals(false, binaryDictionary.isValidBigram("aaa", "aaa"));
|
|
|
|
binaryDictionary.flushWithGC();
|
|
|
|
binaryDictionary.close();
|
|
|
|
|
|
|
|
dictFile.delete();
|
|
|
|
}
|
2013-09-24 07:32:25 +00:00
|
|
|
|
|
|
|
// TODO: Evaluate performance of GC
|
|
|
|
public void testAddBigramWordsAndFlashWithGC() {
|
|
|
|
final int wordCount = 100;
|
|
|
|
final int bigramCount = 1000;
|
|
|
|
final int codePointSetSize = 30;
|
|
|
|
// TODO: Use various seeds such as a current timestamp to make this test more random.
|
|
|
|
final int seed = 314159265;
|
|
|
|
|
|
|
|
File dictFile = null;
|
|
|
|
try {
|
|
|
|
dictFile = createEmptyDictionaryAndGetFile("TestBinaryDictionary");
|
|
|
|
} catch (IOException e) {
|
|
|
|
fail("IOException while writing an initial dictionary : " + e);
|
|
|
|
}
|
|
|
|
|
|
|
|
BinaryDictionary binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
final ArrayList<String> words = new ArrayList<String>();
|
|
|
|
// Test a word that isn't contained within the dictionary.
|
|
|
|
final Random random = new Random(seed);
|
|
|
|
final int[] codePointSet = CodePointUtils.generateCodePointSet(codePointSetSize, random);
|
|
|
|
final int[] unigramProbabilities = new int[wordCount];
|
|
|
|
for (int i = 0; i < wordCount; ++i) {
|
|
|
|
final String word = CodePointUtils.generateWord(random, codePointSet);
|
|
|
|
words.add(word);
|
|
|
|
final int unigramProbability = random.nextInt(0xFF);
|
|
|
|
unigramProbabilities[i] = unigramProbability;
|
|
|
|
binaryDictionary.addUnigramWord(word, unigramProbability);
|
|
|
|
}
|
|
|
|
|
|
|
|
final int[][] probabilities = new int[wordCount][wordCount];
|
|
|
|
|
|
|
|
for (int i = 0; i < wordCount; ++i) {
|
|
|
|
for (int j = 0; j < wordCount; ++j) {
|
|
|
|
probabilities[i][j] = Dictionary.NOT_A_PROBABILITY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < bigramCount; i++) {
|
|
|
|
final int word0Index = random.nextInt(wordCount);
|
|
|
|
final int word1Index = random.nextInt(wordCount);
|
|
|
|
final String word0 = words.get(word0Index);
|
|
|
|
final String word1 = words.get(word1Index);
|
|
|
|
final int bigramProbability = random.nextInt(0xF);
|
|
|
|
probabilities[word0Index][word1Index] = binaryDictionary.calculateProbability(
|
|
|
|
unigramProbabilities[word1Index], bigramProbability);
|
|
|
|
binaryDictionary.addBigramWords(word0, word1, bigramProbability);
|
|
|
|
}
|
|
|
|
|
|
|
|
binaryDictionary.flushWithGC();
|
|
|
|
binaryDictionary.close();
|
|
|
|
binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
|
|
|
|
for (int i = 0; i < words.size(); i++) {
|
|
|
|
for (int j = 0; j < words.size(); j++) {
|
|
|
|
assertEquals(probabilities[i][j],
|
|
|
|
binaryDictionary.getBigramProbability(words.get(i), words.get(j)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dictFile.delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void testRandomOperetionsAndFlashWithGC() {
|
|
|
|
final int flashWithGCIterationCount = 50;
|
|
|
|
final int operationCountInEachIteration = 200;
|
|
|
|
final int initialUnigramCount = 100;
|
|
|
|
final float addUnigramProb = 0.5f;
|
|
|
|
final float addBigramProb = 0.8f;
|
|
|
|
final float removeBigramProb = 0.2f;
|
|
|
|
final int codePointSetSize = 30;
|
|
|
|
final int seed = 141421356;
|
|
|
|
|
|
|
|
final Random random = new Random(seed);
|
|
|
|
|
|
|
|
File dictFile = null;
|
|
|
|
try {
|
|
|
|
dictFile = createEmptyDictionaryAndGetFile("TestBinaryDictionary");
|
|
|
|
} catch (IOException e) {
|
|
|
|
fail("IOException while writing an initial dictionary : " + e);
|
|
|
|
}
|
|
|
|
|
|
|
|
BinaryDictionary binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
final ArrayList<String> words = new ArrayList<String>();
|
|
|
|
final ArrayList<Pair<String, String>> bigramWords = new ArrayList<Pair<String,String>>();
|
|
|
|
final int[] codePointSet = CodePointUtils.generateCodePointSet(codePointSetSize, random);
|
|
|
|
final HashMap<String, Integer> unigramProbabilities = new HashMap<String, Integer>();
|
|
|
|
final HashMap<Pair<String, String>, Integer> bigramProbabilities =
|
|
|
|
new HashMap<Pair<String, String>, Integer>();
|
|
|
|
for (int i = 0; i < initialUnigramCount; ++i) {
|
|
|
|
final String word = CodePointUtils.generateWord(random, codePointSet);
|
|
|
|
words.add(word);
|
|
|
|
final int unigramProbability = random.nextInt(0xFF);
|
|
|
|
unigramProbabilities.put(word, unigramProbability);
|
|
|
|
binaryDictionary.addUnigramWord(word, unigramProbability);
|
|
|
|
}
|
|
|
|
binaryDictionary.flushWithGC();
|
|
|
|
binaryDictionary.close();
|
|
|
|
|
|
|
|
for (int gcCount = 0; gcCount < flashWithGCIterationCount; gcCount++) {
|
|
|
|
binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
for (int opCount = 0; opCount < operationCountInEachIteration; opCount++) {
|
|
|
|
// Add unigram.
|
|
|
|
if (random.nextFloat() < addUnigramProb) {
|
|
|
|
final String word = CodePointUtils.generateWord(random, codePointSet);
|
|
|
|
words.add(word);
|
|
|
|
final int unigramProbability = random.nextInt(0xFF);
|
|
|
|
unigramProbabilities.put(word, unigramProbability);
|
|
|
|
binaryDictionary.addUnigramWord(word, unigramProbability);
|
|
|
|
}
|
|
|
|
// Add bigram.
|
|
|
|
if (random.nextFloat() < addBigramProb && words.size() > 2) {
|
|
|
|
final int word0Index = random.nextInt(words.size());
|
|
|
|
int word1Index = random.nextInt(words.size() - 1);
|
|
|
|
if (word0Index <= word1Index) {
|
|
|
|
word1Index++;
|
|
|
|
}
|
|
|
|
final String word0 = words.get(word0Index);
|
|
|
|
final String word1 = words.get(word1Index);
|
|
|
|
final int bigramProbability = random.nextInt(0xF);
|
|
|
|
final Pair<String, String> bigram = new Pair<String, String>(word0, word1);
|
|
|
|
bigramWords.add(bigram);
|
|
|
|
bigramProbabilities.put(bigram, bigramProbability);
|
|
|
|
binaryDictionary.addBigramWords(word0, word1, bigramProbability);
|
|
|
|
}
|
|
|
|
// Remove bigram.
|
|
|
|
if (random.nextFloat() < removeBigramProb && !bigramWords.isEmpty()) {
|
|
|
|
final int bigramIndex = random.nextInt(bigramWords.size());
|
|
|
|
final Pair<String, String> bigram = bigramWords.get(bigramIndex);
|
|
|
|
bigramWords.remove(bigramIndex);
|
|
|
|
bigramProbabilities.remove(bigram);
|
|
|
|
binaryDictionary.removeBigramWords(bigram.first, bigram.second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test whether the all unigram operations are collectlly handled.
|
|
|
|
for (int i = 0; i < words.size(); i++) {
|
|
|
|
final String word = words.get(i);
|
|
|
|
final int unigramProbability = unigramProbabilities.get(word);
|
|
|
|
assertEquals(word, unigramProbability, binaryDictionary.getFrequency(word));
|
|
|
|
}
|
|
|
|
// Test whether the all bigram operations are collectlly handled.
|
|
|
|
for (int i = 0; i < bigramWords.size(); i++) {
|
|
|
|
final Pair<String, String> bigram = bigramWords.get(i);
|
|
|
|
final int unigramProbability = unigramProbabilities.get(bigram.second);
|
|
|
|
final int probability;
|
|
|
|
if (bigramProbabilities.containsKey(bigram)) {
|
|
|
|
final int bigramProbability = bigramProbabilities.get(bigram);
|
|
|
|
probability = binaryDictionary.calculateProbability(unigramProbability,
|
|
|
|
bigramProbability);
|
|
|
|
} else {
|
|
|
|
probability = Dictionary.NOT_A_PROBABILITY;
|
|
|
|
}
|
|
|
|
assertEquals(probability,
|
|
|
|
binaryDictionary.getBigramProbability(bigram.first, bigram.second));
|
|
|
|
}
|
|
|
|
binaryDictionary.flushWithGC();
|
|
|
|
binaryDictionary.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
dictFile.delete();
|
|
|
|
}
|
2013-09-24 10:21:17 +00:00
|
|
|
|
|
|
|
public void testAddManyUnigramsAndFlushWithGC() {
|
|
|
|
final int flashWithGCIterationCount = 3;
|
|
|
|
final int codePointSetSize = 50;
|
|
|
|
final int seed = 22360679;
|
|
|
|
|
|
|
|
final Random random = new Random(seed);
|
|
|
|
|
|
|
|
File dictFile = null;
|
|
|
|
try {
|
|
|
|
dictFile = createEmptyDictionaryAndGetFile("TestBinaryDictionary");
|
|
|
|
} catch (IOException e) {
|
|
|
|
fail("IOException while writing an initial dictionary : " + e);
|
|
|
|
}
|
|
|
|
|
|
|
|
final ArrayList<String> words = new ArrayList<String>();
|
|
|
|
final HashMap<String, Integer> unigramProbabilities = new HashMap<String, Integer>();
|
|
|
|
final int[] codePointSet = CodePointUtils.generateCodePointSet(codePointSetSize, random);
|
|
|
|
|
|
|
|
BinaryDictionary binaryDictionary;
|
|
|
|
for (int i = 0; i < flashWithGCIterationCount; i++) {
|
|
|
|
binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
|
|
|
|
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
|
|
|
|
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
|
|
|
|
while(!binaryDictionary.needsToRunGC()) {
|
|
|
|
final String word = CodePointUtils.generateWord(random, codePointSet);
|
|
|
|
words.add(word);
|
|
|
|
final int unigramProbability = random.nextInt(0xFF);
|
|
|
|
unigramProbabilities.put(word, unigramProbability);
|
|
|
|
binaryDictionary.addUnigramWord(word, unigramProbability);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int j = 0; j < words.size(); j++) {
|
|
|
|
final String word = words.get(j);
|
|
|
|
final int unigramProbability = unigramProbabilities.get(word);
|
|
|
|
assertEquals(word, unigramProbability, binaryDictionary.getFrequency(word));
|
|
|
|
}
|
|
|
|
|
|
|
|
binaryDictionary.flushWithGC();
|
|
|
|
binaryDictionary.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
dictFile.delete();
|
|
|
|
}
|
2013-09-10 10:16:33 +00:00
|
|
|
}
|