blob: 00383201eddc20e3d4bb01f20e11109ddc76b3e8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* yyyymmdd bug Email and other contact information
* -------- -------- -----------------------------------------------------------
* 20070502 185208 sengpl@ca.ibm.com - Seng Phung-Lu
* 20070509 180567 sengpl@ca.ibm.com - Seng Phung-Lu
* 20070705 195553 sengpl@ca.ibm.com - Seng Phung-Lu
* 20080313 126774 sengpl@ca.ibm.com - Seng Phung-Lu
*******************************************************************************/
package org.eclipse.jst.ws.tests.axis.tomcat.v50.perfmsr;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.Path;
import org.eclipse.jem.util.emf.workbench.ProjectUtilities;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.jst.ws.internal.common.J2EEUtils;
import org.eclipse.jst.ws.tests.axis.tomcat.v50.WSWizardTomcat50Test;
import org.eclipse.jst.ws.tests.performance.util.PerformanceJUnitUtils;
import org.eclipse.jst.ws.tests.unittest.WSJUnitConstants;
import org.eclipse.jst.ws.tests.util.JUnitUtils;
import org.eclipse.jst.ws.tests.util.ScenarioConstants;
import org.eclipse.test.performance.Performance;
import org.eclipse.test.performance.PerformanceMeter;
import org.eclipse.wst.command.internal.env.eclipse.AccumulateStatusHandler;
/**
* Top down performance scenario with Axis and Tomcat v5.0
*/
public class PerfmsrTDJavaAxisTC50 extends WSWizardTomcat50Test {
private final String WS_RUNTIMEID_AXIS = WSJUnitConstants.WS_RUNTIMEID_AXIS;
private final String PROJECT_NAME = WSJUnitConstants.TD_PROJECT_NAME;
private IFile sourceFile_;
protected void createProjects() throws Exception{
IProject webProject = ProjectUtilities.getProject(PROJECT_NAME);
if (!webProject.exists()){
JUnitUtils.createWebModule(PROJECT_NAME, PROJECT_NAME, server_.getId(), SERVERTYPEID_TC50, "14", env_, new NullProgressMonitor());
}
}
/**
* Sets up the input data;
* - create project(s),
* - copy resources to workspace
*/
protected void installInputData() throws Exception {
IProject webProject = ProjectUtilities.getProject(PROJECT_NAME);
IFolder destFolder = (IFolder)J2EEUtils.getWebContentContainer(webProject);
JUnitUtils.copyTestData("TDJava",destFolder,env_, null);
sourceFile_ = destFolder.getFile(new Path("Echo.wsdl"));
JUnitUtils.disableValidation(webProject);
JUnitUtils.syncBuildProject(webProject,env_, null);
}
/**
* Set the persistent server runtime context preferences
*/
protected void initJ2EEWSRuntimeServerDefaults() throws Exception {
// Set default preferences for Axis and Tomcat v5.0 server
JUnitUtils.setWSRuntimeServer(WS_RUNTIMEID_AXIS, SERVERTYPEID_TC50);
JUnitUtils.setServiceScenarioDefault();
}
/**
* Set the initial selection
*/
protected void initInitialSelection() throws Exception {
initialSelection_ = new StructuredSelection(sourceFile_);
}
/**
* Launches the pop-up command to initiate the scenario
* @throws Exception
*/
public void testTDJavaAxisTC50() throws Exception {
IStatus[] status;
JUnitUtils.enableOverwrite(true);
JUnitUtils.setRuntimePreference("org.eclipse.jst.ws.axis.creation.axisWebServiceRT");
Performance perf= Performance.getDefault();
PerformanceMeter performanceMeter= perf.createPerformanceMeter(perf.getDefaultScenarioId(this));
try {
performanceMeter.start();
status = PerformanceJUnitUtils.launchCreationWizard(ScenarioConstants.WIZARDID_TOP_DOWN,ScenarioConstants.OBJECT_CLASS_ID_IFILE,initialSelection_);
performanceMeter.stop();
performanceMeter.commit();
perf.assertPerformance(performanceMeter);
}
finally {
if (performanceMeter==null)
performanceMeter.dispose();
}
verifyOutput(status);
}
/**
* Verify the scenario completed successfully
* @throws Exception
*/
private final void verifyOutput(IStatus[] status) throws Exception
{
IProject webProject = ProjectUtilities.getProject(PROJECT_NAME);
IFolder webContentFolder = (IFolder)J2EEUtils.getWebContentContainer(webProject);
IFolder wsdlFolder = webContentFolder.getFolder("wsdl");
assertTrue(wsdlFolder.exists());
assertTrue(wsdlFolder.members().length > 0);
AccumulateStatusHandler statusHandler = new AccumulateStatusHandler(status);
IStatus[] s = statusHandler.getErrorReports();
//
if (s.length > 0){
for (int i=0;i<s.length;i++){
System.out.println("TDJava Error message for report #"+i+": "+s[i].getMessage());
}
}
assertTrue(s.length == 0);
}
/**
* Clear workspace if required
*/
protected void deleteInputData() throws Exception {
// Delete the Web project.
IProject webProject = ProjectUtilities.getProject(PROJECT_NAME);
webProject.delete(true,true,null);
}
}