xref: /trunk/test/testuno/source/pvt/uno/Conversion.java (revision a169304499c5d8f4a895c60bdc93428e9c132dc6)
13e7cc3ecSLiu Zhe /**************************************************************
23e7cc3ecSLiu Zhe  *
33e7cc3ecSLiu Zhe  * Licensed to the Apache Software Foundation (ASF) under one
43e7cc3ecSLiu Zhe  * or more contributor license agreements.  See the NOTICE file
53e7cc3ecSLiu Zhe  * distributed with this work for additional information
63e7cc3ecSLiu Zhe  * regarding copyright ownership.  The ASF licenses this file
73e7cc3ecSLiu Zhe  * to you under the Apache License, Version 2.0 (the
83e7cc3ecSLiu Zhe  * "License"); you may not use this file except in compliance
93e7cc3ecSLiu Zhe  * with the License.  You may obtain a copy of the License at
103e7cc3ecSLiu Zhe  *
113e7cc3ecSLiu Zhe  *   http://www.apache.org/licenses/LICENSE-2.0
123e7cc3ecSLiu Zhe  *
133e7cc3ecSLiu Zhe  * Unless required by applicable law or agreed to in writing,
143e7cc3ecSLiu Zhe  * software distributed under the License is distributed on an
153e7cc3ecSLiu Zhe  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
163e7cc3ecSLiu Zhe  * KIND, either express or implied.  See the License for the
173e7cc3ecSLiu Zhe  * specific language governing permissions and limitations
183e7cc3ecSLiu Zhe  * under the License.
193e7cc3ecSLiu Zhe  *
203e7cc3ecSLiu Zhe  *************************************************************/
213e7cc3ecSLiu Zhe 
223e7cc3ecSLiu Zhe package pvt.uno;
233e7cc3ecSLiu Zhe 
243e7cc3ecSLiu Zhe import static org.openoffice.test.common.Testspace.*;
253e7cc3ecSLiu Zhe 
263e7cc3ecSLiu Zhe import java.io.File;
273e7cc3ecSLiu Zhe 
283e7cc3ecSLiu Zhe import org.junit.After;
293e7cc3ecSLiu Zhe import org.junit.AfterClass;
303e7cc3ecSLiu Zhe import org.junit.Before;
313e7cc3ecSLiu Zhe import org.junit.BeforeClass;
323e7cc3ecSLiu Zhe import org.junit.Rule;
333e7cc3ecSLiu Zhe import org.junit.Test;
343e7cc3ecSLiu Zhe import org.junit.runner.RunWith;
353e7cc3ecSLiu Zhe import org.openoffice.test.OpenOffice;
36329fd865SLiu Zhe import org.openoffice.test.common.DataSheet;
373e7cc3ecSLiu Zhe import org.openoffice.test.common.FileProvider;
383e7cc3ecSLiu Zhe import org.openoffice.test.common.FileProvider.FileFilter;
395f863819SLiu Zhe import org.openoffice.test.common.FileProvider.FileRepeat;
403e7cc3ecSLiu Zhe import org.openoffice.test.common.FileProvider.FileRepos;
413e7cc3ecSLiu Zhe import org.openoffice.test.common.FileUtil;
423e7cc3ecSLiu Zhe import org.openoffice.test.common.Logger;
433e7cc3ecSLiu Zhe import org.openoffice.test.uno.UnoApp;
443e7cc3ecSLiu Zhe 
453e7cc3ecSLiu Zhe import com.sun.star.beans.PropertyValue;
463e7cc3ecSLiu Zhe import com.sun.star.document.MacroExecMode;
473e7cc3ecSLiu Zhe import com.sun.star.lang.XComponent;
483e7cc3ecSLiu Zhe import com.sun.star.uno.UnoRuntime;
493e7cc3ecSLiu Zhe import com.sun.star.util.XCloseable;
503e7cc3ecSLiu Zhe 
513e7cc3ecSLiu Zhe 
523e7cc3ecSLiu Zhe @RunWith(FileProvider.class)
533e7cc3ecSLiu Zhe public class Conversion {
543e7cc3ecSLiu Zhe 
553e7cc3ecSLiu Zhe     @Rule
563e7cc3ecSLiu Zhe     public Logger log = Logger.getLogger(this);
573e7cc3ecSLiu Zhe 
583e7cc3ecSLiu Zhe     @FileRepos
599b5f68a3SLiu Zhe     public static String repos = System.getProperty("conversion.repos", getDataPath("conversion_pvt"));
603e7cc3ecSLiu Zhe     @FileFilter
61329fd865SLiu Zhe     public static String filter = System.getProperty("conversion.filter",
62329fd865SLiu Zhe               "-f .*(doc|dot|odt|ott)$ writer_pdf_Export pdf "
63329fd865SLiu Zhe             + "-f .*(xls|xlt|ods|ots)$ calc_pdf_Export pdf "
64329fd865SLiu Zhe             + "-f .*(ppt|ppt|odp|otp)$ impress_pdf_Export pdf "
65329fd865SLiu Zhe             + "-f .*(doc|dot|docx|docm|dotx|dotm)$ writer8 odt "
66329fd865SLiu Zhe             + "-f .*(xls|xlt|xlsx|xltx|xlsm|xltm)$ calc8 ods "
67329fd865SLiu Zhe             + "-f .*(ppt|pot|pptx|pptm|potm|potx)$ impress8 odp "
68329fd865SLiu Zhe             + "-f .*(odt|ott)$ 'MS Word 97' doc "
69329fd865SLiu Zhe             + "-f .*(ods|ots)$ 'MS Excel 97' xls "
70329fd865SLiu Zhe             + "-f .*(odp|otp)$ 'MS PowerPoint 97' ppt");
715f863819SLiu Zhe 
725f863819SLiu Zhe     @FileRepeat
739dae0b27SLinyi Li     public static int repeat = Integer.parseInt(System.getProperty("conversion.repeat", "8"));
743e7cc3ecSLiu Zhe 
759b5f68a3SLiu Zhe     public static String clean = System.getProperty("conversion.clean", "file");
769b5f68a3SLiu Zhe 
77329fd865SLiu Zhe     private static OpenOffice aoo = new OpenOffice();
783e7cc3ecSLiu Zhe 
79329fd865SLiu Zhe     private static UnoApp app = null;
80329fd865SLiu Zhe 
81329fd865SLiu Zhe     private static DataSheet result;
823e7cc3ecSLiu Zhe 
835f863819SLiu Zhe     private static int counter = 0;
845f863819SLiu Zhe 
853e7cc3ecSLiu Zhe     @BeforeClass
863e7cc3ecSLiu Zhe     public static void beforeClass() throws Exception {
87329fd865SLiu Zhe         aoo.setUnoUrl(OpenOffice.DEFAULT_UNO_URL);
88329fd865SLiu Zhe         aoo.addArgs("-invisible", "-conversionmode", "-hidemenu");
89329fd865SLiu Zhe         app = new UnoApp(aoo);
909edf8282SLiu Zhe         result = new DataSheet(getFile("output/pvt_uno_conversion.xml"));
919edf8282SLiu Zhe         result.addRow("data", "File","Scenario","File Size","Time Consumed After Closing","Time Consumed After Saving","Time Consumed After Loading");
923e7cc3ecSLiu Zhe     }
933e7cc3ecSLiu Zhe 
943e7cc3ecSLiu Zhe     @AfterClass
953e7cc3ecSLiu Zhe     public static void afterClass() throws Exception {
963e7cc3ecSLiu Zhe         app.close();
973e7cc3ecSLiu Zhe     }
983e7cc3ecSLiu Zhe 
993e7cc3ecSLiu Zhe     private String sourcePath = null;
1003e7cc3ecSLiu Zhe     private String targetFilterName = null;
1013e7cc3ecSLiu Zhe     private String targetExtName = null;
1023e7cc3ecSLiu Zhe 
1033e7cc3ecSLiu Zhe     private File sourceFile = null;
1043e7cc3ecSLiu Zhe     private File targetFile = null;
1053e7cc3ecSLiu Zhe     private String sourceFileUrl = null;
1063e7cc3ecSLiu Zhe     private String targetFileUrl = null;
1073e7cc3ecSLiu Zhe 
1083e7cc3ecSLiu Zhe     private String scenario = null;
1093e7cc3ecSLiu Zhe     private String sourceFileId = null;
1103e7cc3ecSLiu Zhe     private long loadTime = -1;
1113e7cc3ecSLiu Zhe     private long saveTime = -1;
1123e7cc3ecSLiu Zhe     private long closeTime = -1;
1133e7cc3ecSLiu Zhe 
1143e7cc3ecSLiu Zhe     public Conversion(String sourcePath, String targetFilterName, String targetExtName) {
1153e7cc3ecSLiu Zhe         super();
1163e7cc3ecSLiu Zhe         this.sourcePath = sourcePath;
1173e7cc3ecSLiu Zhe         this.targetFilterName = targetFilterName;
1183e7cc3ecSLiu Zhe         this.targetExtName = targetExtName;
1195f863819SLiu Zhe         counter++;
1203e7cc3ecSLiu Zhe     }
1213e7cc3ecSLiu Zhe 
1223e7cc3ecSLiu Zhe     @Before
1233e7cc3ecSLiu Zhe     public void before() throws Exception {
1249b5f68a3SLiu Zhe         sourceFile = new File(sourcePath);
1253e7cc3ecSLiu Zhe         sourceFileUrl = FileUtil.getUrl(this.sourceFile);
1263e7cc3ecSLiu Zhe         targetFile = getFile("classtemp/" + sourceFile.getName()+ "." + targetExtName);
1273e7cc3ecSLiu Zhe         targetFileUrl = FileUtil.getUrl(this.targetFile);
1283e7cc3ecSLiu Zhe 
1293e7cc3ecSLiu Zhe         scenario = FileUtil.getFileExtName(sourceFile.getName()).toLowerCase() + " to " + FileUtil.getFileExtName(targetFile.getName()).toLowerCase();
1309b5f68a3SLiu Zhe         String pathSource = sourceFile.getCanonicalPath().replace("\\", "/");
1319b5f68a3SLiu Zhe         String pathRepos = new File(repos).getCanonicalPath().replace("\\", "/") + "/";
1329b5f68a3SLiu Zhe         sourceFileId = pathSource.replace(pathRepos, "");
1333e7cc3ecSLiu Zhe         log.info("Start [File: " + sourceFileId + "] [Size: " + (sourceFile.length() / 1024) + "KB] [Scenario: " + scenario + "]");
1343e7cc3ecSLiu Zhe         app.start();
1353e7cc3ecSLiu Zhe     }
1363e7cc3ecSLiu Zhe 
1373e7cc3ecSLiu Zhe     @After
1383e7cc3ecSLiu Zhe     public void after() throws Exception{
1399edf8282SLiu Zhe         result.addRow("data", sourceFileId, scenario, sourceFile.length(), closeTime, saveTime, loadTime);
1403e7cc3ecSLiu Zhe         log.info("Result [After Closing: " + closeTime + "] [After Saving: " + saveTime + "] [After Loading: " + loadTime + "]");
1419b5f68a3SLiu Zhe         if (closeTime < 0) {
1429b5f68a3SLiu Zhe             app.close();
1439b5f68a3SLiu Zhe         } else if ("file".equalsIgnoreCase(clean) && counter % repeat == 0) {
1443e7cc3ecSLiu Zhe             app.close();
1453e7cc3ecSLiu Zhe         }
1463e7cc3ecSLiu Zhe     }
1473e7cc3ecSLiu Zhe 
1483e7cc3ecSLiu Zhe     private PropertyValue propertyValue(String name, Object value) {
1493e7cc3ecSLiu Zhe         PropertyValue p = new PropertyValue();
1503e7cc3ecSLiu Zhe         p.Name = name;
1513e7cc3ecSLiu Zhe         p.Value= value;
1523e7cc3ecSLiu Zhe         return p;
1533e7cc3ecSLiu Zhe     }
1543e7cc3ecSLiu Zhe 
1553e7cc3ecSLiu Zhe     @Test(timeout=10 * 60000)
1563e7cc3ecSLiu Zhe     public void testConversion() throws Exception {
157*a1693044SLinyi Li 
158*a1693044SLinyi Li         int nLevelInfo = Integer.parseInt(System.getProperty("conversion.limitationcheck", "0"));   // Level info: starts from 1, 0 means no need for limitation check
159*a1693044SLinyi Li 
1603e7cc3ecSLiu Zhe         // convert
1613e7cc3ecSLiu Zhe         long start = System.currentTimeMillis();
1623e7cc3ecSLiu Zhe         XComponent doc = app.loadDocumentFromURL(sourceFileUrl,
1633e7cc3ecSLiu Zhe                 propertyValue("Hidden", true),
1643e7cc3ecSLiu Zhe                 propertyValue("ReadOnly", true),
1653e7cc3ecSLiu Zhe                 propertyValue("AsyncMode", false),
166*a1693044SLinyi Li                 propertyValue("MacroExecutionMode", MacroExecMode.NEVER_EXECUTE),
167*a1693044SLinyi Li                 propertyValue("LimitationCheckLevel", nLevelInfo));
1683e7cc3ecSLiu Zhe 
1693e7cc3ecSLiu Zhe         loadTime = System.currentTimeMillis() - start;
1703e7cc3ecSLiu Zhe         app.saveDocumentToURL(doc, targetFileUrl,
1713e7cc3ecSLiu Zhe                 propertyValue( "FilterName", targetFilterName),
1723e7cc3ecSLiu Zhe                 propertyValue( "Overwrite", true));
1733e7cc3ecSLiu Zhe         saveTime = System.currentTimeMillis() - start;
1743e7cc3ecSLiu Zhe         XCloseable xCloseable = (XCloseable) UnoRuntime.queryInterface(XCloseable.class, doc);
1753e7cc3ecSLiu Zhe         xCloseable.close(true);
1763e7cc3ecSLiu Zhe         closeTime = System.currentTimeMillis() - start;
1773e7cc3ecSLiu Zhe     }
1785f863819SLiu Zhe 
1793e7cc3ecSLiu Zhe }
180