/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2008 by Sun Microsystems, Inc. * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: PathSubstitutionTest.java,v $ * $Revision: 1.4 $ * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ package complex.path_substitution; import com.sun.star.lang.XMultiServiceFactory; import com.sun.star.uno.UnoRuntime; import com.sun.star.util.XStringSubstitution; import complexlib.ComplexTestCase; import java.util.Vector; /** * */ public class PathSubstitutionTest extends ComplexTestCase { private static XMultiServiceFactory xMSF; // all substitution variables private VariableContainer substVars = null; /** * A function to tell the framework, which test functions are available. * Right now, it's only 'checkXStringSubstitution'. * @return All test methods. */ public String[] getTestMethodNames() { return new String[]{"checkXStringSubstitution"}; } /** * Create an array with all substitution variables */ private void initialize() { substVars = new VariableContainer(); substVars.add("$(prog)", false, true); substVars.add("$(inst)", false, true); substVars.add("$(user)", false, true); substVars.add("$(work)", false, true); substVars.add("$(home)", false, true); substVars.add("$(temp)", false, true); substVars.add("$(lang)", false, false); substVars.add("$(langid)", false, false); substVars.add("$(vlang)", false,false); // path won't resubstitute substVars.add("$(path)", false,false); } /** * One actual test: as the method 'getTestMethodNames()' tells. */ public void checkXStringSubstitution() { xMSF = (XMultiServiceFactory)param.getMSF(); log.println("---- Testing the XStringSubstitution interface ----"); log.println("Create intance of test object.\n"); XStringSubstitution oObj = null; try { Object x = xMSF.createInstance( "com.sun.star.util.PathSubstitution"); oObj = (XStringSubstitution) UnoRuntime.queryInterface(XStringSubstitution.class, x); if (oObj == null) throw new com.sun.star.uno.Exception(); } catch(com.sun.star.uno.Exception e) { log.println(e.getClass().getName()); log.println("Message: " + e.getMessage()); failed("Could not create an instance of the test object."); return; } initialize(); for (int i=0; i