/************************************************************** * * 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._connector.uno; import com.sun.star.uno.XInterface; import com.sun.star.lang.XMultiServiceFactory; import java.io.PrintWriter; import lib.StatusException; import lib.TestCase; import lib.TestEnvironment; import lib.TestParameters; import util.utils; /** * Test for object which is represented by service * com.sun.star.connection.Connector.

* Object implements the following interfaces : *

* Can be run in several threads. * @see com.sun.star.connection.XConnector * @see ifc.connection._XConnector */ public class Connector extends TestCase { /** * Acceptor chooses the first port after basePort * which is free. */ protected static final int basePort = 10000 ; private int curPort ; private static String sOfficeHost = null ; /** * 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)) ; } /** * Does nothing. */ protected void cleanup( TestParameters tParam, PrintWriter log ) { } /** * Creating a Testenvironment for the interfaces to be tested. * Just creates service com.sun.star.connection.Connector */ protected synchronized TestEnvironment createTestEnvironment(TestParameters Param, PrintWriter log) { XInterface oObj = null ; try { XInterface connector = (XInterface) ((XMultiServiceFactory)Param.getMSF()).createInstance ("com.sun.star.connection.Connector") ; oObj = connector ; } catch (com.sun.star.uno.Exception e) { e.printStackTrace(log); throw new StatusException("Can't create object environment", e); } 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("XConnector.connectStr", "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(); } }