Package com.eviware.soapui.impl.wsdl.panels.teststeps

Source Code of com.eviware.soapui.impl.wsdl.panels.teststeps.RestTestRequestPanelBuilder

/*
*  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.teststeps.RestTestRequestInterface;
import com.eviware.soapui.impl.wsdl.teststeps.RestTestRequestStep;
import com.eviware.soapui.support.components.JPropertiesTable;
import com.eviware.soapui.support.types.StringList;

/**
* PanelBuilder for RestTestRequest
*
* @author Ole.Matzura
*/

public class RestTestRequestPanelBuilder extends EmptyPanelBuilder<RestTestRequestStep>
{
  public RestTestRequestPanelBuilder()
  {
  }

  public RestTestRequestDesktopPanel buildDesktopPanel( RestTestRequestStep testStep )
  {
    return new RestTestRequestDesktopPanel( testStep );
  }

  public boolean hasDesktopPanel()
  {
    return true;
  }

  public JPanel buildOverviewPanel( RestTestRequestStep testStep )
  {
    RestTestRequestInterface request = testStep.getTestRequest();
    JPropertiesTable<RestTestRequestInterface> table = new JPropertiesTable<RestTestRequestInterface>(
        "REST 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( "Path", "path", true );
    }
    else
    {
      table.addProperty( "Endpoint", "endpoint", request.getInterface() == null ? new String[0] : request
          .getInterface().getEndpoints() );
      table.addProperty( "Service", "serviceName" );
      table.addProperty( "Resource", "path" );
      table.addProperty( "Method", "restMethodName" );
    }

    table.addProperty( "Timeout", "timeout", true );

    table.addProperty( "Bind Address", "bindAddress", true );
    table.addProperty( "Follow Redirects", "followRedirects", JPropertiesTable.BOOLEAN_OPTIONS );

    StringList keystores = new StringList( 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.setPropertyObject( request );

    return table;
  }

  public boolean hasOverviewPanel()
  {
    return true;
  }
}
TOP

Related Classes of com.eviware.soapui.impl.wsdl.panels.teststeps.RestTestRequestPanelBuilder

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.