1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir package helper; 28*cdf0e10cSrcweir 29*cdf0e10cSrcweir import java.io.File; 30*cdf0e10cSrcweir import java.util.Properties; 31*cdf0e10cSrcweir 32*cdf0e10cSrcweir import lib.TestParameters; 33*cdf0e10cSrcweir import util.PropertyName; 34*cdf0e10cSrcweir import util.utils; 35*cdf0e10cSrcweir 36*cdf0e10cSrcweir /** 37*cdf0e10cSrcweir * This class parses commandline Argument and stores <br> 38*cdf0e10cSrcweir * them into TestParameter 39*cdf0e10cSrcweir */ 40*cdf0e10cSrcweir public class ClParser 41*cdf0e10cSrcweir { 42*cdf0e10cSrcweir /* 43*cdf0e10cSrcweir * Parses the commandline argument and puts them<br> 44*cdf0e10cSrcweir * into the TestParameters 45*cdf0e10cSrcweir */ 46*cdf0e10cSrcweir 47*cdf0e10cSrcweir public void getCommandLineParameter(TestParameters param, String[] args) 48*cdf0e10cSrcweir { 49*cdf0e10cSrcweir Properties mapping = getMapping(); 50*cdf0e10cSrcweir 51*cdf0e10cSrcweir for (int i = 0; i < args.length;) 52*cdf0e10cSrcweir { 53*cdf0e10cSrcweir String pName = getParameterFor(mapping, args[i]).trim(); 54*cdf0e10cSrcweir String pValue = ""; 55*cdf0e10cSrcweir if (pName.equals("TestJob")) 56*cdf0e10cSrcweir { 57*cdf0e10cSrcweir if (args.length > (i + 1)) 58*cdf0e10cSrcweir { 59*cdf0e10cSrcweir pValue = args[i].trim() + " " + args[i + 1].trim(); 60*cdf0e10cSrcweir i += 2; 61*cdf0e10cSrcweir } 62*cdf0e10cSrcweir else 63*cdf0e10cSrcweir { 64*cdf0e10cSrcweir pValue = args[i].trim() + " unknown"; 65*cdf0e10cSrcweir i += 2; 66*cdf0e10cSrcweir } 67*cdf0e10cSrcweir } 68*cdf0e10cSrcweir else 69*cdf0e10cSrcweir { 70*cdf0e10cSrcweir if ((i + 1) < args.length) 71*cdf0e10cSrcweir { 72*cdf0e10cSrcweir pValue = args[i + 1].trim(); 73*cdf0e10cSrcweir 74*cdf0e10cSrcweir if (pValue.startsWith("-")) 75*cdf0e10cSrcweir { 76*cdf0e10cSrcweir i++; 77*cdf0e10cSrcweir pValue = "yes"; 78*cdf0e10cSrcweir } 79*cdf0e10cSrcweir else if (pValue.startsWith("'")) 80*cdf0e10cSrcweir { 81*cdf0e10cSrcweir i++; 82*cdf0e10cSrcweir while (!pValue.endsWith("'")) 83*cdf0e10cSrcweir { 84*cdf0e10cSrcweir i++; 85*cdf0e10cSrcweir pValue = pValue + " " + args[i].trim(); 86*cdf0e10cSrcweir 87*cdf0e10cSrcweir } 88*cdf0e10cSrcweir pValue = utils.replaceAll13(pValue, "'", ""); 89*cdf0e10cSrcweir i++; 90*cdf0e10cSrcweir } 91*cdf0e10cSrcweir else 92*cdf0e10cSrcweir { 93*cdf0e10cSrcweir i += 2; 94*cdf0e10cSrcweir } 95*cdf0e10cSrcweir 96*cdf0e10cSrcweir if (pName.equals("TestDocumentPath")) 97*cdf0e10cSrcweir { 98*cdf0e10cSrcweir System.setProperty( 99*cdf0e10cSrcweir "DOCPTH", new File(pValue).getAbsolutePath()); 100*cdf0e10cSrcweir } 101*cdf0e10cSrcweir else if (pName.equals(PropertyName.SRC_ROOT)) 102*cdf0e10cSrcweir { 103*cdf0e10cSrcweir System.setProperty(pName, pValue); 104*cdf0e10cSrcweir 105*cdf0e10cSrcweir } 106*cdf0e10cSrcweir } 107*cdf0e10cSrcweir else 108*cdf0e10cSrcweir { 109*cdf0e10cSrcweir pValue = "yes"; 110*cdf0e10cSrcweir i++; 111*cdf0e10cSrcweir } 112*cdf0e10cSrcweir } 113*cdf0e10cSrcweir 114*cdf0e10cSrcweir param.put(pName, pValue); 115*cdf0e10cSrcweir } 116*cdf0e10cSrcweir } 117*cdf0e10cSrcweir 118*cdf0e10cSrcweir /* 119*cdf0e10cSrcweir * This method returns the path to a Configuration file <br> 120*cdf0e10cSrcweir * if defined as command line parameter, an empty String elsewhere 121*cdf0e10cSrcweir */ 122*cdf0e10cSrcweir public String getIniPath(String[] args) 123*cdf0e10cSrcweir { 124*cdf0e10cSrcweir String iniFile = ""; 125*cdf0e10cSrcweir 126*cdf0e10cSrcweir for (int i = 0; i < args.length; i++) 127*cdf0e10cSrcweir { 128*cdf0e10cSrcweir if (args[i].equals("-ini")) 129*cdf0e10cSrcweir { 130*cdf0e10cSrcweir iniFile = args[i + 1]; 131*cdf0e10cSrcweir break; 132*cdf0e10cSrcweir } 133*cdf0e10cSrcweir } 134*cdf0e10cSrcweir 135*cdf0e10cSrcweir return iniFile; 136*cdf0e10cSrcweir } 137*cdf0e10cSrcweir 138*cdf0e10cSrcweir /* 139*cdf0e10cSrcweir * This method returns the path to a Configuration file <br> 140*cdf0e10cSrcweir * if defined as command line parameter, an empty String elsewhere 141*cdf0e10cSrcweir */ 142*cdf0e10cSrcweir public String getRunnerIniPath(String[] args) 143*cdf0e10cSrcweir { 144*cdf0e10cSrcweir String iniFile = ""; 145*cdf0e10cSrcweir 146*cdf0e10cSrcweir for (int i = 0; i < args.length; i++) 147*cdf0e10cSrcweir { 148*cdf0e10cSrcweir if (args[i].equals("-runnerini")) 149*cdf0e10cSrcweir { 150*cdf0e10cSrcweir iniFile = args[i + 1]; 151*cdf0e10cSrcweir break; 152*cdf0e10cSrcweir } 153*cdf0e10cSrcweir } 154*cdf0e10cSrcweir 155*cdf0e10cSrcweir return iniFile; 156*cdf0e10cSrcweir } 157*cdf0e10cSrcweir 158*cdf0e10cSrcweir /* 159*cdf0e10cSrcweir * This method maps commandline Parameters to TestParameters 160*cdf0e10cSrcweir */ 161*cdf0e10cSrcweir protected Properties getMapping() 162*cdf0e10cSrcweir { 163*cdf0e10cSrcweir Properties map = new Properties(); 164*cdf0e10cSrcweir map.setProperty("-cs", "ConnectionString"); 165*cdf0e10cSrcweir map.setProperty("-tb", "TestBase"); 166*cdf0e10cSrcweir map.setProperty("-tdoc", "TestDocumentPath"); 167*cdf0e10cSrcweir map.setProperty("-objdsc", "DescriptionPath"); 168*cdf0e10cSrcweir map.setProperty("-cmd", "AppExecutionCommand"); 169*cdf0e10cSrcweir map.setProperty("-o", "TestJob"); 170*cdf0e10cSrcweir map.setProperty("-sce", "TestJob"); 171*cdf0e10cSrcweir map.setProperty("-p", "TestJob"); 172*cdf0e10cSrcweir map.setProperty("-aca", "AdditionalConnectionArguments"); 173*cdf0e10cSrcweir map.setProperty("-xcl", "ExclusionList"); 174*cdf0e10cSrcweir map.setProperty("-debug", "DebugIsActive"); 175*cdf0e10cSrcweir map.setProperty("-log", "LoggingIsActive"); 176*cdf0e10cSrcweir map.setProperty("-dbout", "DataBaseOut"); 177*cdf0e10cSrcweir map.setProperty("-nca", "NoCwsAttach"); 178*cdf0e10cSrcweir 179*cdf0e10cSrcweir return map; 180*cdf0e10cSrcweir } 181*cdf0e10cSrcweir 182*cdf0e10cSrcweir protected String getParameterFor(Properties map, String name) 183*cdf0e10cSrcweir { 184*cdf0e10cSrcweir String ret = map.getProperty(name); 185*cdf0e10cSrcweir 186*cdf0e10cSrcweir if (ret == null) 187*cdf0e10cSrcweir { 188*cdf0e10cSrcweir ret = name.substring(1); 189*cdf0e10cSrcweir } 190*cdf0e10cSrcweir 191*cdf0e10cSrcweir return ret; 192*cdf0e10cSrcweir } 193*cdf0e10cSrcweir }