bump product version to 4.2.0.1
[LibreOffice.git] / qadevOOo / tests / java / mod / _acceptor / Acceptor.java
blob9b4c10b4c7918931e90e8f15e55b6b435a7e5e59
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 package mod._acceptor;
21 import java.io.PrintWriter;
23 import lib.StatusException;
24 import lib.TestCase;
25 import lib.TestEnvironment;
26 import lib.TestParameters;
27 import util.utils;
29 import com.sun.star.lang.XMultiServiceFactory;
30 import com.sun.star.uno.XInterface;
32 /**
33 * Here <code>com.sun.star.connection.Acceptor</code> service is tested.<p>
34 * Test allows to run object tests in several threads concurently.
35 * @see com.sun.star.connection.Acceptor
36 * @see com.sun.star.connection.XAcceptor
37 * @see com.sun.star.connection.XConnector
38 * @see ifc.connection._XAcceptor
40 public class Acceptor extends TestCase {
43 /**
44 * Acceptor chooses the first port after <code>basePort</code>
45 * which is free.
47 protected static final int basePort = 10000;
48 private int curPort ;
49 private static String sOfficeHost = null ;
51 /**
52 * Retrieves host name where StarOffice is started from test
53 * parameter <code>'CNCSTR'</code>.
55 public void initialize( TestParameters tParam, PrintWriter log ) {
56 String cncstr = (String) tParam.get("CNCSTR") ;
57 int idx = cncstr.indexOf("host=") + 5 ;
58 sOfficeHost = cncstr.substring(idx, cncstr.indexOf(",", idx)) ;
61 /**
62 * Creating a Testenvironment for the interfaces to be tested. <p>
63 * Creates <code>Acceptor</code> service and passed as relation
64 * connection string where port for accepting is unique among
65 * different object test threads. <p>
66 * The following object relations are created :
67 * <ul>
68 * <li> <code>'XAcceptor.connectStr'</code> : String variable for
69 * <code>XAcceptor</code> interface test. Has the following format :
70 * <code>'socket,host=<SOHost>,port=<UniquePort>' where <SOHost> is
71 * the host where StarOffice is started. </li>
72 * <li> <code>'Acceptor.Port'</code> : Integer value which specifies
73 * port on which Acceptor must listen, and which is required
74 * when disposing environment, to free this port number. </li>
75 * <ul>
77 public synchronized TestEnvironment createTestEnvironment(
78 TestParameters Param, PrintWriter log ) throws StatusException {
80 XInterface oObj = null;
81 XInterface acceptor = null;
83 try {
84 acceptor = (XInterface)
85 ((XMultiServiceFactory)Param.getMSF()).createInstance
86 ("com.sun.star.connection.Acceptor");
87 } catch (com.sun.star.uno.Exception e) {
88 throw new StatusException("Can't create object environment", e) ;
91 // select the port
92 curPort = utils.getNextFreePort(basePort);
93 log.println("Choose Port nr: " + curPort);
94 oObj = acceptor;
96 TestEnvironment tEnv = new TestEnvironment(oObj) ;
98 // adding connection string as relation
99 tEnv.addObjRelation("XAcceptor.connectStr",
100 "socket,host=" + sOfficeHost + ",port=" + curPort) ;
102 // adding port number for freeing it.
103 tEnv.addObjRelation("Acceptor.Port", new Integer(curPort)) ;
105 return tEnv ;
109 * Just clears flag which indicates that port is free now.
111 public synchronized void disposeTestEnvironment( TestEnvironment tEnv,
112 TestParameters tParam) {
114 curPort = ((Integer)tEnv.getObjRelation("Acceptor.Port")).intValue();