]> gitweb.fperrin.net Git - DictionaryPC.git/blob - src/com/hughes/android/dictionary/engine/DictionaryBuilderTest.java
Got rid of Category:.
[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_EN = "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 + "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_EN + langCode + ".data",
118         "--input4Name=" + name,
119         "--input4Format=" + WholeSectionToHtmlParser.NAME,
120         "--input4WiktionaryLang=EN",
121         "--input4TitleIndex=" + "1",
122         "--input4PageLimit=100",
123
124         "--print=" + result.getPath() + ".text",
125     });
126     checkGolden(name, result); 
127   }
128
129   
130   public void testWiktionary_IT_EN() throws Exception {
131     wiktionaryTestWithLangToEn("wiktionary.it_en.quickdic", "IT", "it.txt",
132         "EN.data", "enwiktionary.english", "Italian", "it");
133   }
134
135   public void testWiktionary_ZH_EN() throws Exception {
136     wiktionaryTestWithLangToEn("wiktionary.zh_en.quickdic", "ZH", "empty.txt",
137         // These missing "e" prevents a complete match, forcing the name to be printed
138         "EN.data", "enwiktionary.english", "Chinese|Mandarin|Cantones", "zh");
139   }
140
141   public void testWiktionary_DE_EN() throws Exception {
142     wiktionaryTestWithLangToEn("wiktionary.de_en.quickdic", "DE", "de.txt",
143         "EN.data", "enwiktionary.english", "German", "it");
144   }
145
146   public void testWiktionary_IT_IT() throws Exception {
147     wiktionaryTestWithLangToEn("wiktionary.it_it.quickdic", "IT", "it.txt",
148         "IT.data", "enwiktionary.italian", "Italian", "it");
149   }
150
151   // French
152   public void testWiktionary_FR_FR() throws Exception {
153     wiktionaryTestWithLangToEn("wiktionary.fr_fr.quickdic", "FR", "fr.txt",
154         "FR.data", "enwiktionary.french", "French", "fr");
155   }
156
157   
158   // Arabic
159   public void testWiktionary_AR_AR() throws Exception {
160     wiktionaryTestWithLangToEn("wiktionary.ar_ar.quickdic", "AR", "empty.txt",
161         "AR.data", "enwiktionary.arabic", "Arabic", "ar");
162   }
163
164   // Chinese
165   public void testWiktionary_ZH_ZH() throws Exception {
166     wiktionaryTestWithLangToEn("wiktionary.zh_zh.quickdic", "ZH", "empty.txt",
167         // These missing "e" prevents a complete match, forcing the name to be printed.
168         "ZH.data", "enwiktionary.chinese", "Chinese|Mandarin|Cantones", "zh");
169   }
170
171   // German
172   public void testWiktionary_DE_DE() throws Exception {
173     wiktionaryTestWithLangToEn("wiktionary.de_de.quickdic", "DE", "de.txt",
174         "DE.data", "enwiktionary.german", "German", "it");
175   }
176
177   // Thai
178   public void testWiktionary_TH_TH() throws Exception {
179     wiktionaryTestWithLangToEn("wiktionary.th_th.quickdic", "TH", "empty.txt",
180         // These missing "e" prevents a complete match, forcing the name to be printed.
181         "TH.data", "enwiktionary.thai", "Thai", "th");
182   }
183
184   public void wiktionaryTestWithLangToEn(final String name, final String lang1,
185       final String stoplist, final String data, final String dictName,
186       final String langPattern, final String langCode) throws Exception {
187     final File result = new File(TEST_OUTPUTS + name);
188     System.out.println("Writing to: " + result);
189     final String type = data.equals("EN.data") ? "EnToTranslation" : "EnForeign";
190     DictionaryBuilder.main(new String[] {
191         "--dictOut=" + result.getAbsolutePath(),
192         "--lang1=" + lang1,
193         "--lang2=EN",
194         "--lang1Stoplist=" + STOPLISTS + stoplist,
195         "--lang2Stoplist=" + STOPLISTS + "en.txt",
196         "--dictInfo=SomeWikiData",
197
198         "--input4=" + WIKISPLIT_EN + data,
199         "--input4Name=" + dictName,
200         "--input4Format=enwiktionary",
201         "--input4WiktionaryType=" + type,
202         "--input4LangPattern=" + langPattern,
203         "--input4LangCodePattern=" + langCode,
204         "--input4EnIndex=2",
205         "--input4PageLimit=1000",
206
207         "--print=" + result.getPath() + ".text",
208     });
209     
210     checkGolden(name, result); 
211   }
212
213   public void testGermanCombined() throws Exception {
214     final String name = "de-en.quickdic";
215     final File result = new File(TEST_OUTPUTS + name);
216     System.out.println("Writing to: " + result);
217     DictionaryBuilder.main(new String[] {
218         "--dictOut=" + result.getAbsolutePath(),
219         "--lang1=DE",
220         "--lang2=EN",
221         "--dictInfo=@" + TEST_INPUTS + "de-en_dictInfo.txt",
222
223         "--input1=" + TEST_INPUTS + "de-en_chemnitz_100",
224         "--input1Name=chemnitz",
225         "--input1Charset=UTF8",
226         "--input1Format=chemnitz",
227
228         "--input2=" + TEST_INPUTS + "de-en_dictcc_simulated",
229         "--input2Name=dictcc",
230         "--input2Charset=UTF8",
231         "--input2Format=tab_separated",
232
233         "--print=" + result.getPath() + ".text",
234     });
235     
236     checkGolden(name, result); 
237   }
238
239   private void checkGolden(final String dictName, final File dictFile)
240       throws IOException, FileNotFoundException {
241     // Check it once:
242     assertFilesEqual(GOLDENS + dictName + ".text", dictFile.getPath() + ".text");
243
244     // Check it again.
245     final Dictionary dict = new Dictionary(new RandomAccessFile(dictFile.getAbsolutePath(), "r"));
246     final PrintStream out = new PrintStream(new File(dictFile.getPath() + ".text"));
247     dict.print(out);
248     out.close();
249     assertFilesEqual(GOLDENS + dictName + ".text", dictFile.getPath() + ".text");
250   }
251
252
253   void assertFilesEqual(final String expected, final String actual) throws IOException {
254     final String expectedString = FileUtil.readToString(new File(expected));
255     final String actualString = FileUtil.readToString(new File(actual));
256     assertEquals(expectedString, actualString);
257   }
258
259   
260 }