View Javadoc

1   /*
2    * soapUI, copyright (C) 2004-2008 eviware.com
3    *
4    * soapUI is free software; you can redistribute it and/or modify it under the
5    * terms of version 2.1 of the GNU Lesser General Public License as published by
6    * the Free Software Foundation.
7    *
8    * soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
9    * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10   * See the GNU Lesser General Public License for more details at gnu.org.
11   */
12  
13  package com.eviware.soapui.impl.wsdl.panels.teststeps;
14  
15  import com.eviware.soapui.impl.EmptyPanelBuilder;
16  import com.eviware.soapui.impl.wsdl.teststeps.WsdlMockResponseTestStep;
17  import com.eviware.soapui.model.support.ModelSupport;
18  import com.eviware.soapui.support.components.JPropertiesTable;
19  import com.eviware.soapui.support.types.StringList;
20  import com.eviware.soapui.ui.desktop.DesktopPanel;
21  
22  import java.awt.*;
23  
24  public class MockResponseStepPanelBuilder extends EmptyPanelBuilder<WsdlMockResponseTestStep>
25  {
26  	public MockResponseStepPanelBuilder()
27  	{
28  	}
29  
30  	public DesktopPanel buildDesktopPanel( WsdlMockResponseTestStep mockResponseStep )
31  	{
32  		return new WsdlMockResponseStepDesktopPanel( mockResponseStep );
33  	}
34  
35  	@Override
36  	public boolean hasDesktopPanel()
37  	{
38  		return true;
39  	}
40  	
41  	public boolean hasOverviewPanel()
42     {
43        return true;
44     }
45     
46     public Component buildOverviewPanel( WsdlMockResponseTestStep mockResponseStep )
47     {
48     	JPropertiesTable<WsdlMockResponseTestStep> table = new JPropertiesTable<WsdlMockResponseTestStep>( "MockResponse Properties" );
49     	table.addProperty( "Name", "name", true );
50     	table.addProperty( "Description", "description", true );
51     	table.addProperty( "Message Size", "contentLength", false );
52     	table.addProperty( "Encoding", "encoding", new String[] {null, "UTF-8", "iso-8859-1" });
53     	
54     	StringList outgoingNames = new StringList( mockResponseStep.getTestCase().getTestSuite().getProject().getWssContainer().getOutgoingWssNames() );
55  		outgoingNames.add( "" );
56  		table.addProperty( "Outgoing WSS", "outgoingWss", outgoingNames.toStringArray() );
57  
58       	table.addProperty( "Handle Fault", "handleFault", JPropertiesTable.BOOLEAN_OPTIONS  );
59        table.addProperty( "Handle Response", "handleResponse", JPropertiesTable.BOOLEAN_OPTIONS  );
60  
61     	// attachments
62  	  	table.addProperty( "Enable MTOM", "mtomEnabled", JPropertiesTable.BOOLEAN_OPTIONS  );
63  	  	table.addProperty( "Force MTOM", "forceMtom", JPropertiesTable.BOOLEAN_OPTIONS  );
64  	  	table.addProperty( "Enable multiparts", "multipartEnabled", JPropertiesTable.BOOLEAN_OPTIONS );
65  	  	table.addProperty( "Encode Attachments", "encodeAttachments", JPropertiesTable.BOOLEAN_OPTIONS );
66     	
67     	// preprocessing
68     	table.addProperty( "Strip whitespaces", "stripWhitespaces", JPropertiesTable.BOOLEAN_OPTIONS );
69     	table.addProperty( "Remove Empty Content", "removeEmptyContent", JPropertiesTable.BOOLEAN_OPTIONS );
70     	
71     	// others
72     	table.addProperty( "Enable Inline Files", "inlineFilesEnabled", JPropertiesTable.BOOLEAN_OPTIONS ).
73  			setDescription( "Enables inline file references [file:<path>] in elements with binary content" );
74     	table.addProperty( "Response HTTP-Status", "responseHttpStatus", true );
75  	  	table.addProperty( "Response Delay", "responseDelay", true );
76  	  	table.addProperty( "Timeout", "timeout", true );
77  
78        String[] names = ModelSupport.getNames( new String[]{""}, mockResponseStep.getTestCase().getTestStepList() );
79  
80        table.addProperty( "Start Step", "startStep", names );
81  
82     	table.addProperty( "Port", "port", true );
83     	table.addProperty( "Path", "path", true );
84     	table.setPropertyObject( mockResponseStep );
85     	
86     	return table;
87     }
88  }