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; 38*8fd475f4SLinyi Li import org.openoffice.test.common.SystemUtil; 394481f6d8SLinyi Li import org.openoffice.test.common.Testspace; 403e7cc3ecSLiu Zhe import org.openoffice.test.common.FileProvider.FileFilter; 415f863819SLiu Zhe import org.openoffice.test.common.FileProvider.FileRepeat; 423e7cc3ecSLiu Zhe import org.openoffice.test.common.FileProvider.FileRepos; 433e7cc3ecSLiu Zhe import org.openoffice.test.common.FileUtil; 443e7cc3ecSLiu Zhe import org.openoffice.test.common.Logger; 453e7cc3ecSLiu Zhe import org.openoffice.test.uno.UnoApp; 463e7cc3ecSLiu Zhe 473e7cc3ecSLiu Zhe import com.sun.star.beans.PropertyValue; 483e7cc3ecSLiu Zhe import com.sun.star.document.MacroExecMode; 493e7cc3ecSLiu Zhe import com.sun.star.lang.XComponent; 503e7cc3ecSLiu Zhe import com.sun.star.uno.UnoRuntime; 513e7cc3ecSLiu Zhe import com.sun.star.util.XCloseable; 523e7cc3ecSLiu Zhe 533e7cc3ecSLiu Zhe 543e7cc3ecSLiu Zhe @RunWith(FileProvider.class) 553e7cc3ecSLiu Zhe public class Conversion { 563e7cc3ecSLiu Zhe 573e7cc3ecSLiu Zhe @Rule 583e7cc3ecSLiu Zhe public Logger log = Logger.getLogger(this); 593e7cc3ecSLiu Zhe 603e7cc3ecSLiu Zhe @FileRepos 619b5f68a3SLiu Zhe public static String repos = System.getProperty("conversion.repos", getDataPath("conversion_pvt")); 623e7cc3ecSLiu Zhe @FileFilter 63329fd865SLiu Zhe public static String filter = System.getProperty("conversion.filter", 64329fd865SLiu Zhe "-f .*(doc|dot|odt|ott)$ writer_pdf_Export pdf " 65329fd865SLiu Zhe + "-f .*(xls|xlt|ods|ots)$ calc_pdf_Export pdf " 66329fd865SLiu Zhe + "-f .*(ppt|ppt|odp|otp)$ impress_pdf_Export pdf " 67329fd865SLiu Zhe + "-f .*(doc|dot|docx|docm|dotx|dotm)$ writer8 odt " 68329fd865SLiu Zhe + "-f .*(xls|xlt|xlsx|xltx|xlsm|xltm)$ calc8 ods " 69329fd865SLiu Zhe + "-f .*(ppt|pot|pptx|pptm|potm|potx)$ impress8 odp " 70329fd865SLiu Zhe + "-f .*(odt|ott)$ 'MS Word 97' doc " 71329fd865SLiu Zhe + "-f .*(ods|ots)$ 'MS Excel 97' xls " 72329fd865SLiu Zhe + "-f .*(odp|otp)$ 'MS PowerPoint 97' ppt"); 735f863819SLiu Zhe 745f863819SLiu Zhe @FileRepeat 759dae0b27SLinyi Li public static int repeat = Integer.parseInt(System.getProperty("conversion.repeat", "8")); 763e7cc3ecSLiu Zhe 779b5f68a3SLiu Zhe public static String clean = System.getProperty("conversion.clean", "file"); 789b5f68a3SLiu Zhe 794481f6d8SLinyi Li public static int nLevelInfo = Integer.parseInt(System.getProperty("conversion.limitationcheck", "0")); // Level info: starts from 1, 0 means no need for limitation check 804481f6d8SLinyi Li 81*8fd475f4SLinyi Li public static int nSleep = Integer.parseInt(System.getProperty("conversion.sleep", "3000")); // Sleep before loadComponentFromURL and storeToURL 82*8fd475f4SLinyi Li 83329fd865SLiu Zhe private static OpenOffice aoo = new OpenOffice(); 843e7cc3ecSLiu Zhe 85329fd865SLiu Zhe private static UnoApp app = null; 86329fd865SLiu Zhe 87329fd865SLiu Zhe private static DataSheet result; 883e7cc3ecSLiu Zhe 895f863819SLiu Zhe private static int counter = 0; 905f863819SLiu Zhe 913e7cc3ecSLiu Zhe @BeforeClass 923e7cc3ecSLiu Zhe public static void beforeClass() throws Exception { 93329fd865SLiu Zhe aoo.setUnoUrl(OpenOffice.DEFAULT_UNO_URL); 94*8fd475f4SLinyi Li aoo.addArgs("-invisible", "-conversionmode", "-hidemenu", "-nofirststartwizard"); 95329fd865SLiu Zhe app = new UnoApp(aoo); 964481f6d8SLinyi Li Testspace.prepareDataFile("limit_cfg.ini", aoo.getHome().toString()+"/program"); // Move limitation check file to installation dir 979edf8282SLiu Zhe result = new DataSheet(getFile("output/pvt_uno_conversion.xml")); 98*8fd475f4SLinyi Li result.addRow("data", "File","Scenario","File Size","No","Time Consumed After Closing","Time Consumed After Saving","Time Consumed After Loading"); 993e7cc3ecSLiu Zhe } 1003e7cc3ecSLiu Zhe 1013e7cc3ecSLiu Zhe @AfterClass 1023e7cc3ecSLiu Zhe public static void afterClass() throws Exception { 1033e7cc3ecSLiu Zhe app.close(); 1043e7cc3ecSLiu Zhe } 1053e7cc3ecSLiu Zhe 1063e7cc3ecSLiu Zhe private String sourcePath = null; 1073e7cc3ecSLiu Zhe private String targetFilterName = null; 1083e7cc3ecSLiu Zhe private String targetExtName = null; 1093e7cc3ecSLiu Zhe 1103e7cc3ecSLiu Zhe private File sourceFile = null; 1113e7cc3ecSLiu Zhe private File targetFile = null; 1123e7cc3ecSLiu Zhe private String sourceFileUrl = null; 1133e7cc3ecSLiu Zhe private String targetFileUrl = null; 1143e7cc3ecSLiu Zhe 1153e7cc3ecSLiu Zhe private String scenario = null; 1163e7cc3ecSLiu Zhe private String sourceFileId = null; 1173e7cc3ecSLiu Zhe private long loadTime = -1; 1183e7cc3ecSLiu Zhe private long saveTime = -1; 1193e7cc3ecSLiu Zhe private long closeTime = -1; 1203e7cc3ecSLiu Zhe 1213e7cc3ecSLiu Zhe public Conversion(String sourcePath, String targetFilterName, String targetExtName) { 1223e7cc3ecSLiu Zhe super(); 1233e7cc3ecSLiu Zhe this.sourcePath = sourcePath; 1243e7cc3ecSLiu Zhe this.targetFilterName = targetFilterName; 1253e7cc3ecSLiu Zhe this.targetExtName = targetExtName; 1265f863819SLiu Zhe counter++; 1273e7cc3ecSLiu Zhe } 1283e7cc3ecSLiu Zhe 1293e7cc3ecSLiu Zhe @Before 1303e7cc3ecSLiu Zhe public void before() throws Exception { 1319b5f68a3SLiu Zhe sourceFile = new File(sourcePath); 1323e7cc3ecSLiu Zhe sourceFileUrl = FileUtil.getUrl(this.sourceFile); 1333e7cc3ecSLiu Zhe targetFile = getFile("classtemp/" + sourceFile.getName()+ "." + targetExtName); 1343e7cc3ecSLiu Zhe targetFileUrl = FileUtil.getUrl(this.targetFile); 1353e7cc3ecSLiu Zhe 1363e7cc3ecSLiu Zhe scenario = FileUtil.getFileExtName(sourceFile.getName()).toLowerCase() + " to " + FileUtil.getFileExtName(targetFile.getName()).toLowerCase(); 1379b5f68a3SLiu Zhe String pathSource = sourceFile.getCanonicalPath().replace("\\", "/"); 1389b5f68a3SLiu Zhe String pathRepos = new File(repos).getCanonicalPath().replace("\\", "/") + "/"; 1399b5f68a3SLiu Zhe sourceFileId = pathSource.replace(pathRepos, ""); 1403e7cc3ecSLiu Zhe log.info("Start [File: " + sourceFileId + "] [Size: " + (sourceFile.length() / 1024) + "KB] [Scenario: " + scenario + "]"); 1413e7cc3ecSLiu Zhe app.start(); 1423e7cc3ecSLiu Zhe } 1433e7cc3ecSLiu Zhe 1443e7cc3ecSLiu Zhe @After 1453e7cc3ecSLiu Zhe public void after() throws Exception{ 146*8fd475f4SLinyi Li result.addRow("data", sourceFileId, scenario, sourceFile.length(), counter % repeat , closeTime, saveTime, loadTime); 1473e7cc3ecSLiu Zhe log.info("Result [After Closing: " + closeTime + "] [After Saving: " + saveTime + "] [After Loading: " + loadTime + "]"); 1489b5f68a3SLiu Zhe if (closeTime < 0) { 1499b5f68a3SLiu Zhe app.close(); 1509b5f68a3SLiu Zhe } else if ("file".equalsIgnoreCase(clean) && counter % repeat == 0) { 1513e7cc3ecSLiu Zhe app.close(); 1523e7cc3ecSLiu Zhe } 1533e7cc3ecSLiu Zhe } 1543e7cc3ecSLiu Zhe 1553e7cc3ecSLiu Zhe private PropertyValue propertyValue(String name, Object value) { 1563e7cc3ecSLiu Zhe PropertyValue p = new PropertyValue(); 1573e7cc3ecSLiu Zhe p.Name = name; 1583e7cc3ecSLiu Zhe p.Value= value; 1593e7cc3ecSLiu Zhe return p; 1603e7cc3ecSLiu Zhe } 1613e7cc3ecSLiu Zhe 1623e7cc3ecSLiu Zhe @Test(timeout=10 * 60000) 1633e7cc3ecSLiu Zhe public void testConversion() throws Exception { 164*8fd475f4SLinyi Li try { 1653e7cc3ecSLiu Zhe // convert 166*8fd475f4SLinyi Li SystemUtil.sleep(nSleep); // Sleep before loadComponentFromURL 1673e7cc3ecSLiu Zhe long start = System.currentTimeMillis(); 1683e7cc3ecSLiu Zhe XComponent doc = app.loadDocumentFromURL(sourceFileUrl, 1693e7cc3ecSLiu Zhe propertyValue("Hidden", true), 1703e7cc3ecSLiu Zhe propertyValue("ReadOnly", true), 1713e7cc3ecSLiu Zhe propertyValue("AsyncMode", false), 172a1693044SLinyi Li propertyValue("MacroExecutionMode", MacroExecMode.NEVER_EXECUTE), 173a1693044SLinyi Li propertyValue("LimitationCheckLevel", nLevelInfo)); 1743e7cc3ecSLiu Zhe 1753e7cc3ecSLiu Zhe loadTime = System.currentTimeMillis() - start; 176*8fd475f4SLinyi Li 177*8fd475f4SLinyi Li SystemUtil.sleep(nSleep); // Sleep before storeToURL 1783e7cc3ecSLiu Zhe app.saveDocumentToURL(doc, targetFileUrl, 1793e7cc3ecSLiu Zhe propertyValue( "FilterName", targetFilterName), 1803e7cc3ecSLiu Zhe propertyValue( "Overwrite", true)); 181*8fd475f4SLinyi Li saveTime = System.currentTimeMillis() - start - nSleep; 1823e7cc3ecSLiu Zhe XCloseable xCloseable = (XCloseable) UnoRuntime.queryInterface(XCloseable.class, doc); 1833e7cc3ecSLiu Zhe xCloseable.close(true); 184*8fd475f4SLinyi Li closeTime = System.currentTimeMillis() - start - nSleep; 185*8fd475f4SLinyi Li } catch (com.sun.star.task.ErrorCodeIOException e){ 186*8fd475f4SLinyi Li int errCode = e.ErrCode; 187*8fd475f4SLinyi Li if( 296 == errCode ) { 188*8fd475f4SLinyi Li loadTime = -2; 189*8fd475f4SLinyi Li saveTime = -2; 190*8fd475f4SLinyi Li closeTime = -2; 1913e7cc3ecSLiu Zhe } 1925f863819SLiu Zhe 193*8fd475f4SLinyi Li throw e; 194*8fd475f4SLinyi Li } 195*8fd475f4SLinyi Li } 1963e7cc3ecSLiu Zhe } 197