View Javadoc

1   /*
2    * soapUI, copyright (C) 2004-2009 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 java.awt.Component;
16  
17  import com.eviware.soapui.impl.EmptyPanelBuilder;
18  import com.eviware.soapui.impl.wsdl.teststeps.WsdlMockResponseTestStep;
19  import com.eviware.soapui.model.support.ModelSupport;
20  import com.eviware.soapui.support.components.JPropertiesTable;
21  import com.eviware.soapui.support.types.StringList;
22  import com.eviware.soapui.ui.desktop.DesktopPanel;
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>(
49  				"MockResponse Properties" );
50  		table.addProperty( "Name", "name", true );
51  		table.addProperty( "Description", "description", true );
52  		table.addProperty( "Message Size", "contentLength", false );
53  		table.addProperty( "Encoding", "encoding", new String[] { null, "UTF-8", "iso-8859-1" } );
54  
55  		StringList outgoingNames = new StringList( mockResponseStep.getTestCase().getTestSuite().getProject()
56  				.getWssContainer().getOutgoingWssNames() );
57  		outgoingNames.add( "" );
58  		table.addProperty( "Outgoing WSS", "outgoingWss", outgoingNames.toStringArray() );
59  
60  		table.addProperty( "Handle Fault", "handleFault", JPropertiesTable.BOOLEAN_OPTIONS );
61  		table.addProperty( "Handle Response", "handleResponse", JPropertiesTable.BOOLEAN_OPTIONS );
62  
63  		// attachments
64  		table.addProperty( "Enable MTOM", "mtomEnabled", JPropertiesTable.BOOLEAN_OPTIONS );
65  		table.addProperty( "Force MTOM", "forceMtom", JPropertiesTable.BOOLEAN_OPTIONS );
66  		table.addProperty( "Enable multiparts", "multipartEnabled", JPropertiesTable.BOOLEAN_OPTIONS );
67  		table.addProperty( "Encode Attachments", "encodeAttachments", JPropertiesTable.BOOLEAN_OPTIONS );
68  
69  		// preprocessing
70  		table.addProperty( "Strip whitespaces", "stripWhitespaces", JPropertiesTable.BOOLEAN_OPTIONS );
71  		table.addProperty( "Remove Empty Content", "removeEmptyContent", JPropertiesTable.BOOLEAN_OPTIONS );
72  
73  		// others
74  		table.addProperty( "Enable Inline Files", "inlineFilesEnabled", JPropertiesTable.BOOLEAN_OPTIONS )
75  				.setDescription( "Enables inline file references [file:<path>] in elements with binary content" );
76  		table.addProperty( "Response HTTP-Status", "responseHttpStatus", true );
77  		table.addProperty( "Response Delay", "responseDelay", true );
78  		table.addProperty( "Timeout", "timeout", true );
79  
80  		String[] names = ModelSupport.getNames( new String[] { "" }, mockResponseStep.getTestCase().getTestStepList() );
81  
82  		table.addProperty( "Start Step", "startStep", names );
83  
84  		table.addProperty( "Port", "port", true );
85  		table.addProperty( "Path", "path", true );
86  		table.addProperty( "Host", "host", true );
87  		table.setPropertyObject( mockResponseStep );
88  
89  		return table;
90  	}
91  }