/*
* 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.panels.teststeps;
import javax.swing.JPanel;
import com.eviware.soapui.impl.EmptyPanelBuilder;
import com.eviware.soapui.impl.wsdl.WsdlProject;
import com.eviware.soapui.impl.wsdl.teststeps.HttpTestRequestInterface;
import com.eviware.soapui.impl.wsdl.teststeps.HttpTestRequestStep;
import com.eviware.soapui.support.components.JPropertiesTable;
import com.eviware.soapui.support.types.StringList;
/**
* PanelBuilder for HttpTestRequest
*
* @author Ole.Matzura
*/
public class HttpTestRequestPanelBuilder extends EmptyPanelBuilder<HttpTestRequestStep>
{
public HttpTestRequestPanelBuilder()
{
}
public HttpTestRequestDesktopPanel buildDesktopPanel( HttpTestRequestStep testStep )
{
return new HttpTestRequestDesktopPanel( testStep );
}
public boolean hasDesktopPanel()
{
return true;
}
public JPanel buildOverviewPanel( HttpTestRequestStep testStep )
{
HttpTestRequestInterface<?> request = testStep.getTestRequest();
JPropertiesTable<HttpTestRequestInterface<?>> table = new JPropertiesTable<HttpTestRequestInterface<?>>(
"HTTP TestRequest Properties" );
// basic properties
table.addProperty( "Name", "name", true );
table.addProperty( "Description", "description", true );
// table.addProperty( "Message Size", "contentLength", false );
table.addProperty( "Encoding", "encoding", new String[] { null, "UTF-8", "iso-8859-1" } );
/*
* if( request.getOperation() != null ) table.addProperty( "Endpoint",
* "endpoint", request.getInterface().getEndpoints() );
*/
table.addProperty( "Endpoint", "endpoint", true );
table.addProperty( "Timeout", "timeout", true );
table.addProperty( "Bind Address", "bindAddress", true );
table.addProperty( "Follow Redirects", "followRedirects", JPropertiesTable.BOOLEAN_OPTIONS );
/*
* if( request.getOperation() != null ) { table.addProperty( "Service",
* "service" ); table.addProperty( "Resource", "path" ); }
*/
// security / authentication
table.addProperty( "Username", "username", true );
table.addPropertyShadow( "Password", "password", true );
table.addProperty( "Domain", "domain", true );
StringList keystores = new StringList( ( ( WsdlProject )request.getTestStep().getTestCase().getTestSuite()
.getProject() ).getWssContainer().getCryptoNames() );
keystores.add( "" );
table.addProperty( "SSL Keystore", "sslKeystore", keystores.toStringArray() );
table.addProperty( "Strip whitespaces", "stripWhitespaces", JPropertiesTable.BOOLEAN_OPTIONS );
table.addProperty( "Remove Empty Content", "removeEmptyContent", JPropertiesTable.BOOLEAN_OPTIONS );
table.addProperty( "Entitize Properties", "entitizeProperties", JPropertiesTable.BOOLEAN_OPTIONS );
table.addProperty( "Multi-Value Delimiter", "multiValueDelimiter", true );
// post-processing
table.addProperty( "Pretty Print", "prettyPrint", JPropertiesTable.BOOLEAN_OPTIONS );
table.addProperty( "Dump File", "dumpFile", true ).setDescription( "Dumps response message to specified file" );
table.addProperty( "Max Size", "maxSize", true ).setDescription( "The maximum number of bytes to receive" );
table.addProperty( "Discard Response", "discardResponse", JPropertiesTable.BOOLEAN_OPTIONS );
table.addProperty( "Send Empty Parameters", "sendEmptyParameters", JPropertiesTable.BOOLEAN_OPTIONS );
table.setPropertyObject( request );
return table;
}
public boolean hasOverviewPanel()
{
return true;
}
}