/*
* soapUI, copyright (C) 2004-2011 eviware.com
*
* soapUI is free software; you can redistribute it and/or modify it under the
* terms of version 2.1 of the GNU Lesser General Public License as published by
* the Free Software Foundation.
*
* soapUI 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 for more details at gnu.org.
*/
package com.eviware.soapui.impl.wsdl.actions.project;
import org.apache.log4j.Logger;
import com.eviware.soapui.SoapUI;
import com.eviware.soapui.config.HttpRequestConfig;
import com.eviware.soapui.config.TestStepConfig;
import com.eviware.soapui.impl.rest.panels.request.views.html.HttpHtmlResponseView;
import com.eviware.soapui.impl.support.HttpUtils;
import com.eviware.soapui.impl.support.http.HttpRequest;
import com.eviware.soapui.impl.wsdl.WsdlProject;
import com.eviware.soapui.impl.wsdl.WsdlSubmit;
import com.eviware.soapui.impl.wsdl.WsdlTestSuite;
import com.eviware.soapui.impl.wsdl.panels.teststeps.HttpTestRequestDesktopPanel;
import com.eviware.soapui.impl.wsdl.support.HelpUrls;
import com.eviware.soapui.impl.wsdl.testcase.WsdlTestCase;
import com.eviware.soapui.impl.wsdl.testcase.WsdlTestRunContext;
import com.eviware.soapui.impl.wsdl.teststeps.HttpTestRequest;
import com.eviware.soapui.impl.wsdl.teststeps.HttpTestRequestStep;
import com.eviware.soapui.impl.wsdl.teststeps.registry.HttpRequestStepFactory;
import com.eviware.soapui.model.iface.Request.SubmitException;
import com.eviware.soapui.model.support.ModelSupport;
import com.eviware.soapui.support.MessageSupport;
import com.eviware.soapui.support.StringUtils;
import com.eviware.soapui.support.UISupport;
import com.eviware.soapui.support.action.support.AbstractSoapUIAction;
import com.eviware.x.form.XFormDialog;
import com.eviware.x.form.support.ADialogBuilder;
import com.eviware.x.form.support.AField;
import com.eviware.x.form.support.AField.AFieldType;
import com.eviware.x.form.support.AForm;
import com.sun.java.xml.ns.j2Ee.HttpMethodType;
public class CreateWebTestAction extends AbstractSoapUIAction<WsdlProject>
{
public static final String SOAPUI_ACTION_ID = "AddNewWebTestAction";
private WsdlProject project;
public static final MessageSupport messages = MessageSupport.getMessages( CreateWebTestAction.class );
private static final String CREATE_NEW_OPTION = "<Create New>";
private XFormDialog dialog;
HttpTestRequestDesktopPanel desktopPanel;
private final static Logger logger = Logger.getLogger( CreateWebTestAction.class );
public CreateWebTestAction()
{
super( "New Web TestCase", "New Web TestCase" );
}
public void perform( WsdlProject target, Object param )
{
this.project = target;
if( dialog == null )
{
dialog = ADialogBuilder.buildDialog( Form.class );
}
dialog.setOptions( Form.TESTSUITE,
ModelSupport.getNames( new String[] { CREATE_NEW_OPTION }, project.getTestSuiteList() ) );
dialog.setValue( Form.TESTSUITE, CREATE_NEW_OPTION );
dialog.setValue( Form.TESTCASENAME, "Web TestCase" );
dialog.setValue( Form.URL, "" );
dialog.setValue( Form.STARTRECORDING, Boolean.toString( true ) );
if( dialog.show() )
{
String targetTestSuiteName = dialog.getValue( Form.TESTSUITE );
String targetTestCaseName = dialog.getValue( Form.TESTCASENAME );
while( StringUtils.isNullOrEmpty( dialog.getValue( Form.URL ) ) )
{
UISupport.showErrorMessage( "You must specify the web address to start at" );
dialog.show();
}
String testStepName = dialog.getValue( Form.URL );
String url = HttpUtils.ensureEndpointStartsWithProtocol( testStepName );
WsdlTestSuite targetTestSuite = null;
WsdlTestCase targetTestCase = null;
targetTestSuite = project.getTestSuiteByName( targetTestSuiteName );
if( targetTestSuite == null )
{
targetTestSuiteName = "Web TestSuite";
while( project.getTestSuiteByName( targetTestSuiteName ) != null )
{
targetTestSuiteName = UISupport.prompt(
"TestSuite name must be unique, please specify new name for TestSuite\n" + "[" + project.getName()
+ "->" + targetTestSuiteName + "]", "Change TestSuite name", targetTestSuiteName );
if( targetTestSuiteName == null )
return;
}
targetTestSuite = project.addNewTestSuite( targetTestSuiteName );
}
targetTestCase = targetTestSuite.getTestCaseByName( targetTestCaseName );
if( targetTestCase == null )
{
while( targetTestSuite.getTestCaseByName( targetTestCaseName ) != null )
{
targetTestCaseName = UISupport.prompt(
"TestCase name must be unique, please specify new name for TestCase\n" + "[" + targetTestCaseName
+ "] in TestSuite [" + project.getName() + "->" + targetTestSuiteName + "]",
"Change TestCase name", targetTestCaseName );
if( targetTestCaseName == null )
return;
}
targetTestCase = targetTestSuite.addNewTestCase( targetTestCaseName );
}
while( testStepName == null || targetTestCase.getTestStepByName( testStepName ) != null )
{
testStepName = UISupport.prompt( "TestStep name must be unique, please specify new name for step\n" + "["
+ testStepName + "] in TestCase [" + project.getName() + "->" + targetTestSuiteName + "->"
+ targetTestCaseName + "]", "Change TestStep name", testStepName );
if( testStepName == null )
return;
}
createWebTest( targetTestCase, HttpUtils.ensureEndpointStartsWithProtocol( url ), testStepName,
dialog.getBooleanValue( Form.STARTRECORDING ) );
}
}
private void createWebTest( WsdlTestCase targetTestCase, String endpoint, String name, final boolean startRecording )
{
targetTestCase.setKeepSession( true );
HttpRequestConfig httpRequest = HttpRequestConfig.Factory.newInstance();
httpRequest.setMethod( HttpMethodType.GET.toString() );
httpRequest.setEndpoint( endpoint );
TestStepConfig testStepConfig = TestStepConfig.Factory.newInstance();
testStepConfig.setType( HttpRequestStepFactory.HTTPREQUEST_TYPE );
testStepConfig.setConfig( httpRequest );
testStepConfig.setName( name );
HttpTestRequestStep testStep = ( HttpTestRequestStep )targetTestCase.addTestStep( testStepConfig );
desktopPanel = ( HttpTestRequestDesktopPanel )UISupport.selectAndShow( testStep );
HttpTestRequest testRequest = null;
try
{
testRequest = testStep.getTestRequest();
WsdlSubmit<HttpRequest> submitRequest = testRequest.submit( new WsdlTestRunContext( testStep ), true );
if( startRecording )
{
submitRequest.waitUntilFinished();
HttpHtmlResponseView htmlResponseView = ( HttpHtmlResponseView )desktopPanel.getResponseEditor().getViews()
.get( 2 );
htmlResponseView.setRecordHttpTrafic( true );
}
}
catch( SubmitException e )
{
SoapUI.logError( e );
}
desktopPanel.focusResponseInTabbedView( true );
}
@AForm( description = "Specify Web TestCase Options", name = "Add Web TestCase", helpUrl = HelpUrls.CLONETESTSUITE_HELP_URL, icon = UISupport.TOOL_ICON_PATH )
public interface Form
{
@AField( name = "Web Address", description = "The web address to start at", type = AField.AFieldType.STRING )
public final static String URL = "Web Address";
@AField( name = "Web TestCase Name", description = "The Web TestCase name", type = AFieldType.STRING )
public final static String TESTCASENAME = "Web TestCase Name";
@AField( name = "Target TestSuite", description = "The target TestSuite to add WebTest to", type = AFieldType.ENUMERATION )
public final static String TESTSUITE = "Target TestSuite";
@AField( description = "", type = AFieldType.BOOLEAN, enabled = true )
public final static String STARTRECORDING = "Start Recording immediately";
}
}