/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ package mod._brdgfctr; import java.io.PrintWriter; import lib.StatusException; import lib.TestCase; import lib.TestEnvironment; import lib.TestParameters; import util.utils; import com.sun.star.lang.XMultiServiceFactory; import com.sun.star.uno.XInterface; /** * Tests com.sun.star.bridge.BridgeFactory * service.

* @see com.sun.star.bridge.XBridgeFactory * @see com.sun.star.lang.XComponent * @see ifc.bridge._XBridgeFactory * @see ifc.lang._XComponent */ public class BridgeFactory extends TestCase { /** * Retrieves host name where StarOffice is started from test * parameter 'CNCSTR'. */ protected void initialize( TestParameters tParam, PrintWriter log ) { String cncstr = (String) tParam.get("CNCSTR") ; int idx = cncstr.indexOf("host=") + 5 ; sOfficeHost = cncstr.substring(idx, cncstr.indexOf(",", idx)) ; } protected void cleanup( TestParameters tParam, PrintWriter log ) { } /** * Acceptor chooses the first port after basePort * which is free. */ protected static final int basePort = 50003 ; private int curPort ; private static String sOfficeHost = null ; /** * Creating a Testenvironment for the interfaces to be tested. * Just creates com.sun.star.bridge.BridgeFactory * service as object to be tested. */ public synchronized TestEnvironment createTestEnvironment( TestParameters Param, PrintWriter log ) throws StatusException { XInterface oObj = null ; try { oObj = (XInterface) ((XMultiServiceFactory)Param.getMSF()).createInstance ("com.sun.star.bridge.BridgeFactory") ; } catch (com.sun.star.uno.Exception e) { throw new StatusException("Can't create object environment", e) ; } if (oObj == null) throw new StatusException("Can't create service", new NullPointerException()); TestEnvironment tEnv = new TestEnvironment(oObj) ; // select the port curPort = utils.getNextFreePort(basePort); log.println("Choose Port nr: " + curPort); // adding connection string as relation tEnv.addObjRelation("CNNCTSTR", "socket,host=" + sOfficeHost + ",port=" + curPort) ; // adding port number for freeing it. tEnv.addObjRelation("Connector.Port", new Integer(curPort)) ; return tEnv ; } /** * Just clears flag which indicates that port is free now. */ public synchronized void disposeTestEnvironment( TestEnvironment tEnv, TestParameters tParam) { curPort = ((Integer)tEnv.getObjRelation("Connector.Port")).intValue() ; } }