]> gitweb.fperrin.net Git - DictionaryPC.git/blob - src/com/hughes/android/dictionary/engine/DictionaryBuilderTest.java
c19a1b375bfeb5329123361b21262188688306e4
[DictionaryPC.git] / src / com / hughes / android / dictionary / engine / DictionaryBuilderTest.java
1 // Copyright 2011 Google Inc. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 package com.hughes.android.dictionary.engine;
16
17 import java.io.File;
18 import java.io.FileNotFoundException;
19 import java.io.IOException;
20 import java.io.PrintStream;
21 import java.io.RandomAccessFile;
22
23 import com.hughes.android.dictionary.parser.wiktionary.EnTranslationToTranslationParser;
24 import com.hughes.android.dictionary.parser.wiktionary.WholeSectionToHtmlParser;
25 import com.hughes.util.FileUtil;
26
27 import junit.framework.TestCase;
28
29 public class DictionaryBuilderTest extends TestCase {
30   
31   public static final String TEST_INPUTS = "testdata/inputs/";
32   public static final String WIKISPLIT = "data/inputs/wikiSplit/en/";
33   public static final String STOPLISTS = "data/inputs/stoplists/";
34   public static final String GOLDENS = "testdata/goldens/";
35
36   public static final String TEST_OUTPUTS = "testdata/outputs/";
37
38   public void doTestCustomDict(final String name, final String lang1,
39       final String lang2, final String inputFile) throws Exception {
40     final File result = new File(TEST_OUTPUTS + name);
41     System.out.println("Writing to: " + result);
42     DictionaryBuilder.main(new String[] {
43         "--dictOut=" + result.getAbsolutePath(),
44         "--lang1=" + lang1,
45         "--lang2=" + lang2,
46         "--lang1Stoplist=" + STOPLISTS + "empty.txt",
47         "--lang2Stoplist=" + STOPLISTS + "empty.txt",
48         "--dictInfo=bleh.",
49         
50         "--input1=testdata/inputs/" + inputFile,
51         "--input1Name=my_input_" + name,
52         "--input1Charset=ISO-8859-1",
53         "--input1Format=tab_separated",
54
55         "--print=" + result.getPath() + ".text",
56     });
57     
58     checkGolden(name, result); 
59   }
60   
61   public void test_FR_NL() throws Exception {
62     doTestCustomDict("QuickDic-FR-NL.quickdic", "FR", "NL", "QuickDic-FR-NL.txt");
63   }
64   
65   public void testWiktionary_en_de2fr() throws Exception {
66     wiktionaryTestWithEnTrans2Trans("wiktionary.de_fr.quickdic", "DE", "FR");
67   }
68
69   public void wiktionaryTestWithEnTrans2Trans(final String name, final String lang1,
70       final String lang2) throws Exception {
71     final File result = new File(TEST_OUTPUTS + name);
72     System.out.println("Writing to: " + result);
73     DictionaryBuilder.main(new String[] {
74         "--dictOut=" + result.getAbsolutePath(),
75         "--lang1=" + lang1,
76         "--lang2=" + lang2,
77         "--lang1Stoplist=" + STOPLISTS + "empty.txt",
78         "--lang2Stoplist=" + STOPLISTS + "empty.txt",
79         "--dictInfo=SomeWikiDataTrans2Trans",
80
81         "--input4=" + WIKISPLIT + "EN.data",
82         "--input4Name=" + name,
83         "--input4Format=" + EnTranslationToTranslationParser.NAME,
84         "--input4LangPattern1=" + lang1,
85         "--input4LangPattern2=" + lang2,
86         "--input4PageLimit=1000",
87
88         "--print=" + result.getPath() + ".text",
89     });
90     
91     checkGolden(name, result); 
92   }
93
94   public void testWiktionary_WholeSection_DE() throws Exception {
95     wiktionaryTestWithWholeSectionToHtml("wiktionary.WholeSection.DE.quickdic", "DE");
96   }
97
98   public void testWiktionary_WholeSection_EN() throws Exception {
99     wiktionaryTestWithWholeSectionToHtml("wiktionary.WholeSection.EN.quickdic", "EN");
100   }
101
102   public void testWiktionary_WholeSection_IT() throws Exception {
103     wiktionaryTestWithWholeSectionToHtml("wiktionary.WholeSection.IT.quickdic", "IT");
104   }
105
106   public void wiktionaryTestWithWholeSectionToHtml(final String name, final String langCode) throws Exception {
107     final File result = new File(TEST_OUTPUTS + name);
108     System.out.println("Writing to: " + result);
109     DictionaryBuilder.main(new String[] {
110         "--dictOut=" + result.getAbsolutePath(),
111         "--lang1=" + langCode,
112         "--lang2=" + "EN",
113         "--lang1Stoplist=" + STOPLISTS + "empty.txt",
114         "--lang2Stoplist=" + STOPLISTS + "empty.txt",
115         "--dictInfo=SomeWikiDataWholeSection",
116
117         "--input4=" + WIKISPLIT + langCode + ".data",
118         "--input4Name=" + name,
119         "--input4Format=" + WholeSectionToHtmlParser.NAME,
120         "--input4TitleIndex=" + "1",
121         "--input4PageLimit=100",
122
123         "--print=" + result.getPath() + ".text",
124     });
125     checkGolden(name, result); 
126   }
127
128   
129   public void testWiktionary_IT_EN() throws Exception {
130     wiktionaryTestWithLangToEn("wiktionary.it_en.quickdic", "IT", "it.txt",
131         "EN.data", "enwiktionary.english", "Italian", "it");
132   }
133
134   public void testWiktionary_ZH_EN() throws Exception {
135     wiktionaryTestWithLangToEn("wiktionary.zh_en.quickdic", "ZH", "empty.txt",
136         // These missing "e" prevents a complete match, forcing the name to be printed
137         "EN.data", "enwiktionary.english", "Chinese|Mandarin|Cantones", "zh");
138   }
139
140   public void testWiktionary_DE_EN() throws Exception {
141     wiktionaryTestWithLangToEn("wiktionary.de_en.quickdic", "DE", "de.txt",
142         "EN.data", "enwiktionary.english", "German", "it");
143   }
144
145   public void testWiktionary_IT_IT() throws Exception {
146     wiktionaryTestWithLangToEn("wiktionary.it_it.quickdic", "IT", "it.txt",
147         "IT.data", "enwiktionary.italian", "Italian", "it");
148   }
149
150   // French
151   public void testWiktionary_FR_FR() throws Exception {
152     wiktionaryTestWithLangToEn("wiktionary.fr_fr.quickdic", "FR", "fr.txt",
153         "FR.data", "enwiktionary.french", "French", "fr");
154   }
155
156   
157   // Arabic
158   public void testWiktionary_AR_AR() throws Exception {
159     wiktionaryTestWithLangToEn("wiktionary.ar_ar.quickdic", "AR", "empty.txt",
160         "AR.data", "enwiktionary.arabic", "Arabic", "ar");
161   }
162
163   // Chinese
164   public void testWiktionary_ZH_ZH() throws Exception {
165     wiktionaryTestWithLangToEn("wiktionary.zh_zh.quickdic", "ZH", "empty.txt",
166         // These missing "e" prevents a complete match, forcing the name to be printed.
167         "ZH.data", "enwiktionary.chinese", "Chinese|Mandarin|Cantones", "zh");
168   }
169
170   // German
171   public void testWiktionary_DE_DE() throws Exception {
172     wiktionaryTestWithLangToEn("wiktionary.de_de.quickdic", "DE", "de.txt",
173         "DE.data", "enwiktionary.german", "German", "it");
174   }
175
176   // Thai
177   public void testWiktionary_TH_TH() throws Exception {
178     wiktionaryTestWithLangToEn("wiktionary.th_th.quickdic", "TH", "empty.txt",
179         // These missing "e" prevents a complete match, forcing the name to be printed.
180         "TH.data", "enwiktionary.thai", "Thai", "th");
181   }
182
183   public void wiktionaryTestWithLangToEn(final String name, final String lang1,
184       final String stoplist, final String data, final String dictName,
185       final String langPattern, final String langCode) throws Exception {
186     final File result = new File(TEST_OUTPUTS + name);
187     System.out.println("Writing to: " + result);
188     final String type = data.equals("EN.data") ? "EnToTranslation" : "EnForeign";
189     DictionaryBuilder.main(new String[] {
190         "--dictOut=" + result.getAbsolutePath(),
191         "--lang1=" + lang1,
192         "--lang2=EN",
193         "--lang1Stoplist=" + STOPLISTS + stoplist,
194         "--lang2Stoplist=" + STOPLISTS + "en.txt",
195         "--dictInfo=SomeWikiData",
196
197         "--input4=" + WIKISPLIT + data,
198         "--input4Name=" + dictName,
199         "--input4Format=enwiktionary",
200         "--input4WiktionaryType=" + type,
201         "--input4LangPattern=" + langPattern,
202         "--input4LangCodePattern=" + langCode,
203         "--input4EnIndex=2",
204         "--input4PageLimit=1000",
205
206         "--print=" + result.getPath() + ".text",
207     });
208     
209     checkGolden(name, result); 
210   }
211
212   public void testGermanCombined() throws Exception {
213     final String name = "de-en.quickdic";
214     final File result = new File(TEST_OUTPUTS + name);
215     System.out.println("Writing to: " + result);
216     DictionaryBuilder.main(new String[] {
217         "--dictOut=" + result.getAbsolutePath(),
218         "--lang1=DE",
219         "--lang2=EN",
220         "--dictInfo=@" + TEST_INPUTS + "de-en_dictInfo.txt",
221
222         "--input1=" + TEST_INPUTS + "de-en_chemnitz_100",
223         "--input1Name=chemnitz",
224         "--input1Charset=UTF8",
225         "--input1Format=chemnitz",
226
227         "--input2=" + TEST_INPUTS + "de-en_dictcc_simulated",
228         "--input2Name=dictcc",
229         "--input2Charset=UTF8",
230         "--input2Format=tab_separated",
231
232         "--print=" + result.getPath() + ".text",
233     });
234     
235     checkGolden(name, result); 
236   }
237
238   private void checkGolden(final String dictName, final File dictFile)
239       throws IOException, FileNotFoundException {
240     // Check it once:
241     assertFilesEqual(GOLDENS + dictName + ".text", dictFile.getPath() + ".text");
242
243     // Check it again.
244     final Dictionary dict = new Dictionary(new RandomAccessFile(dictFile.getAbsolutePath(), "r"));
245     final PrintStream out = new PrintStream(new File(dictFile.getPath() + ".text"));
246     dict.print(out);
247     out.close();
248     assertFilesEqual(GOLDENS + dictName + ".text", dictFile.getPath() + ".text");
249   }
250
251
252   void assertFilesEqual(final String expected, final String actual) throws IOException {
253     final String expectedString = FileUtil.readToString(new File(expected));
254     final String actualString = FileUtil.readToString(new File(actual));
255     assertEquals(expectedString, actualString);
256   }
257
258   
259 }