1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
|
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* 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
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
package mod._fwk;
import java.io.PrintWriter;
import lib.Status;
import lib.StatusException;
import lib.TestCase;
import lib.TestEnvironment;
import lib.TestParameters;
import util.utils;
import com.sun.star.beans.NamedValue;
import com.sun.star.beans.PropertyValue;
import com.sun.star.container.XHierarchicalNameAccess;
import com.sun.star.container.XNameAccess;
import com.sun.star.container.XNameContainer;
import com.sun.star.container.XNameReplace;
import com.sun.star.container.XNamed;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.lang.XServiceInfo;
import com.sun.star.lang.XSingleServiceFactory;
import com.sun.star.lang.XTypeProvider;
import com.sun.star.task.XJob;
import com.sun.star.uno.Type;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XInterface;
import com.sun.star.util.XChangesBatch;
import com.sun.star.uno.AnyConverter;
/**
* Test for object that implements the following interfaces :
* <ul>
* <li><code>com::sun::star::task::XJobExecutor</code></li>
* </ul><p>
* The following files are needed for testcase creation :
* <ul>
* <li> <code>qadevlibs/JobExecutor.jar</code> :
* this is java component <code>test.Job</code> which
* should be registered before or during this testcase
* creation. This component must implement
* <code>com.sun.star.task.XJob</code> interface and count
* <code>execute</code> method calls. It also should
* implement <code>container.XNamed</code> interface and
* <code>getName</code> method must return string with number
* of calls.</li>
* <ul> <p>
*
* Also <b>important prerequicity</b>: if Job and Event is not yet
* added to configuration or <code>test.Job</code> component is
* not yet registered, the SOffice <b>must be destroyed</b> during
* testcase initialization. <p>
*
* @see com.sun.star.task.XJobExecutor
* @see ifc.task._XJobExecutor
*/
public class JobExecutor extends TestCase {
static Job job = new Job();
XNamed xNamed = null;
Object oRootCfg = null;
/**
* For testcase initializing :
* <ol>
* <li> Implementation <code>test.Job</code> must be registered in
* SOffice registry. </li>
* <li> Configuration in package <code>org.OpenOffice.Office.Jobs</code>
* must be updated. <code>TestJob</code> must be registered for
* service <code>test.Job</code> and event for this job named
* <code>TextEvent</code> must be registered. </li>
* </ol>. <p>
*
* First these two conditions are checked. If job and event are not
* registered they are inserted into configuration and commited.
* After what SOffice must be destroyed for proper initialization
* of <code>JobExecutor</code> after startup. <p>
*
* Then if the implementation was not registered before it is
* registered in soffice <code>applicat.rbd</code> file (registering
* the component in currently running Java environment has no effect
* for <code>JobExecutor</code> in some reasons). <p>
*
* Note: SOffice is started again while the next
* <code>(XMultiServiceFactory)SOLink.getMSF()</code> call.
*/
protected void initialize(TestParameters Param, PrintWriter log) {
boolean serviceRegistered = false;
boolean configured = false;
try {
Object obj = ((XMultiServiceFactory)Param.getMSF()).createInstance("test.Job");
serviceRegistered = obj != null;
} catch(com.sun.star.uno.Exception e) {}
log.println("Service test.Job is "
+ (serviceRegistered ? "already" : "not yet") + " registered.");
if (! serviceRegistered){
String message = "You have to register 'test.Job' before office is stared.\n";
message += "Please run '$OFFICEPATH/program/pkgchk $DOCPTH/qadevlibs/JobExecutor.jar'";
throw new StatusException(message, new Exception());
}
XNameAccess jobs = null;
XNameAccess events = null;
try {
Object obj = ((XMultiServiceFactory)Param.getMSF()).createInstance
("com.sun.star.configuration.ConfigurationProvider");
XMultiServiceFactory xConfigMSF = (XMultiServiceFactory)
UnoRuntime.queryInterface(XMultiServiceFactory.class, obj);
PropertyValue[] args = new PropertyValue[1];
args[0] = new PropertyValue();
args[0].Name = "nodepath";
args[0].Value = "org.openoffice.Office.Jobs";
oRootCfg = xConfigMSF.createInstanceWithArguments(
"com.sun.star.configuration.ConfigurationUpdateAccess", args);
XHierarchicalNameAccess xHNA = (XHierarchicalNameAccess)
UnoRuntime.queryInterface(XHierarchicalNameAccess.class, oRootCfg);
obj = xHNA.getByHierarchicalName("Jobs");
jobs = (XNameAccess) UnoRuntime.queryInterface
(XNameAccess.class, obj);
obj = xHNA.getByHierarchicalName("Events");
events = (XNameAccess) UnoRuntime.queryInterface
(XNameAccess.class, obj);
} catch (Exception e) {
throw new StatusException("Couldn't get configuration", e);
}
configured = jobs.hasByName("TestJob") && events.hasByName("TestEvent");
log.println("Test job and event is "
+ (configured ? "already" : "not yet") + " configured.");
if (!configured) {
try {
log.println("Adding configuration to Jobs ...");
XSingleServiceFactory jobsFac = (XSingleServiceFactory)
UnoRuntime.queryInterface(XSingleServiceFactory.class, jobs);
Object oNewJob = jobsFac.createInstance();
XNameReplace xNewJobNR = (XNameReplace)
UnoRuntime.queryInterface(XNameReplace.class, oNewJob);
xNewJobNR.replaceByName("Service", "test.Job");
XNameContainer xJobsNC = (XNameContainer)
UnoRuntime.queryInterface(XNameContainer.class, jobs);
xJobsNC.insertByName("TestJob", oNewJob);
log.println("Adding configuration to Events ...");
XSingleServiceFactory eventsFac = (XSingleServiceFactory)
UnoRuntime.queryInterface(XSingleServiceFactory.class, events);
Object oNewEvent = eventsFac.createInstance();
XNameAccess xNewEventNA = (XNameAccess)
UnoRuntime.queryInterface(XNameAccess.class, oNewEvent);
Object oJobList = xNewEventNA.getByName("JobList");
XSingleServiceFactory jobListFac = (XSingleServiceFactory)
AnyConverter.toObject(new Type(XSingleServiceFactory.class),
oJobList);
XNameContainer jobListNC = (XNameContainer)
AnyConverter.toObject(new Type(XNameContainer.class),
oJobList);
log.println("\tAdding TimeStamps to Events ...");
Object oNewJobTimeStamps = jobListFac.createInstance();
jobListNC.insertByName("TestJob", oNewJobTimeStamps);
XNameContainer xEventsNC = (XNameContainer)
UnoRuntime.queryInterface(XNameContainer.class, events);
xEventsNC.insertByName("TestEvent", oNewEvent);
XChangesBatch xCB = (XChangesBatch)
UnoRuntime.queryInterface(XChangesBatch.class, oRootCfg);
xCB.commitChanges();
try {
Thread.sleep(1000);
} catch (InterruptedException ex) {}
} catch (com.sun.star.uno.Exception e) {
e.printStackTrace(log);
throw new StatusException("Couldn't change config", e);
}
}
}
/**
* Creating a Testenvironment for the interfaces to be tested.
*
* Service <code>com.sun.star.comp.framework.JobExecutor</code>
* is created.
*/
protected TestEnvironment createTestEnvironment(TestParameters Param, PrintWriter log) {
XInterface oObj = null;
Object job = null;
try {
oObj = (XInterface)((XMultiServiceFactory)Param.getMSF()).createInstance(
"com.sun.star.comp.framework.JobExecutor");
job = (XInterface)((XMultiServiceFactory)Param.getMSF()).createInstance("test.Job");
} catch(com.sun.star.uno.Exception e) {
e.printStackTrace(log);
throw new StatusException(
Status.failed("Couldn't create instance"));
}
xNamed = (XNamed) UnoRuntime.queryInterface(XNamed.class, job);
log.println("Count = " + xNamed.getName());
TestEnvironment tEnv = new TestEnvironment( oObj );
tEnv.addObjRelation("CallCounter", xNamed);
return tEnv;
} // finish method getTestEnvironment
protected void cleanup( TestParameters Param, PrintWriter log) {
}
}
/**
* Currently not used.
*/
class Job implements
XServiceInfo, XSingleServiceFactory {
private static class Impl implements XServiceInfo, XTypeProvider, XJob, XNamed {
int callCount = 0;
public byte[] getImplementationId() {
return toString().getBytes();
}
public Type[] getTypes() {
Class interfaces[] = getClass().getInterfaces();
Type types[] = new Type[interfaces.length];
for(int i = 0; i < interfaces.length; ++ i)
types[i] = new Type(interfaces[i]);
return types;
}
public Object execute(NamedValue[] param) {
callCount++;
return null;
}
public String getName() {
return String.valueOf(callCount);
}
public void setName(String n) {}
public boolean supportsService(String name) {
return __serviceName.equals(name);
}
public String[] getSupportedServiceNames() {
return new String[] {__serviceName};
}
public String getImplementationName() {
return getClass().getName();
}
}
public static final String __serviceName = "test.Job";
static Impl impl = new Impl();
public Object createInstanceWithArguments(Object[] args) {
return impl;
}
public Object createInstance() {
return createInstanceWithArguments(null);
}
public boolean supportsService(String name) {
return __serviceName.equals(name);
}
public String[] getSupportedServiceNames() {
return new String[] {__serviceName};
}
public String getImplementationName() {
return getClass().getName();
}
}
|