The Message Stub emulates a service and is the complement of the SOAP Client. This tool is used to stub out a service by returning a single message. 

Sections include: 

About Message Stub

The Message Stub tool can be invoked as part of an end-to-end test scenario. SOAtest’s local server will start listening for a message when that specific Message Stub test step is called as part of the test sequence. It will consume the message, then react in the manner defined in the Message Stub tool’s configuration. After this completes, the next test in the test scenario will execute.

Message Stub tools can be integrated into an end-to-end test scenario so that they are invoked at the desired point in the test suite execution flow and can trigger additional test actions.

For instance, to validate a loan approval service that executes a business process workflow with multiple steps (including calling a manager approval service and another external credit rating service), you could construct a scenario with the following tests:

  • Test 1: Send a request to a loan approval service to initiate the process.
  • Test 2: Act as a stub to listen for the incoming credit rating service over HTTP and respond with the desired rating for the scenario (emulate the crediting rating service response).
  • Test 3: Act as a stub to consume the manager approval message over a JMS queue and respond with approval, denial, and so on.
  • Test 4: Get an asynchronous response from the loan process with the final loan result and validate it.
  • Test 5: Execute a query against a relational database to check if the loan application was audited in the database properly.
  • Test 6: Remove the application data from the database in order to restore it to the original state and make the test scenario repeatable.

These stubs can be parameterized with data from a data source.

When you want to have your application interact with a stub instead of an actual resource, configure your application to access the stub, which will be deployed at http://<localhost>:9080/servlet/MessageHandler. Note that every stub created and deployed in this manner has the same URL. This is possible because the Message Stub tools will be invoked one at a time, according to the logic of the test suite.

You can gain visibility into Message Stub tools’ behavior through the Traffic Viewer tools that are attached to them.

Service Definition Options

Specifying options in the Definition tab allows SOAtest to populate the Response tab with items that make it easier for you to specify the response message. You can specify the following settings related to the service definition or schema that defines the expected request and outgoing response:

  • Service Definition: Specifies if the responder has an associated service definition (RAML, OpenAPI/Swagger, WSDL or Schema). For plain XML, choose None. When a service definition is specified and the tool is constrained to WSDL or schema, the applicable form view will be automatically populated with appropriate field values and controls (for example, radio buttons for booleans, different controls for numbers vs. integers, drop-downs for enumerations). It will also prevent the entry of invalid messages (for example, messages missing required values, a value of the incorrect type, a method/resource/response code not specified in a schema, and so on). Editing will be restricted to ensure that the message complies with the associated schema (for example, you will not be able to insert, delete, rename, copy, or paste tree nodes).
  • For RAML Service Definition Mode
    • RAML URL: A specific RAML URL, or a variable referencing a RAML URL.
  • For OpenAPI/Swagger Service Definition Mode
    • OpenAPI/Swagger URL: A specific OpenAPI/Swagger URL, or a variable referencing an OpenAPI/Swagger URL.
  • For WSDL Service Definition Mode
    • WSDL URL: Describes the WSDL URL where this service can be accessed. You can either enter a value or click Browse. If you do not have a WSDL, you can leave this field empty.
    • Constrain to WSDL: Determines whether certain tool parameters obtain their values from the WSDL rather than from manual entry. If this option is enabled, certain parameters (for example, router endpoint, SOAP action, SOAP body and header parameters) are disabled and get their values from the WSDL. If this option is disabled, the Refresh WSDL button will also be disabled.
    • WSDL Documentation (Automatically completed if available): Describes the service at the given WSDL URI.
  • For Schema Service Definition Mode
    • Schema URL: Describes the Schema URL where this service can be accessed. You can either enter a value or click Browse. If you do not have a schema, you can leave this field empty.
    • Constrain to Schema: Determines whether certain tool parameters obtain their values from the Schema rather than from manual entry. If this option is enabled, certain parameters  are disabled and get their values from the schema. If this option is disabled, the Refresh Schema button will also be disabled.
    • XML Message Type: Determines whether the Response tab’s Form Input controls are geared for SOAP messages or plain XML messages. If Plain XML is selected, Form Input mode will directly represent the message. If SOAP is selected, the XML configured in Form Input will be wrapped with a SOAP Envelope and the view will provide a SOAP Header section that allows you to configure SOAP headers if desired.

Response Options

The Response tab allows you to configure the response values that you want the emulated asset to deliver when specified requests are received. 

The options available vary depending on what option is selected in the Views menu.

Literal XML, Form XML, Scripted XML, and Form Input Views

The available options for Literal XML, Form XML, Scripted XML, or Form Input are similar to those available with the SOAP Client tool. 

Note that if a resource selector is enabled in the Form Input or Form JSON view, you can use it to select the resource for your response. When you select a resource, the Form Input/JSON view will be populated with appropriate values and UI controls (for example, radio buttons for booleans, different controls for numbers vs. integers, and so on). 

  • In Form Input mode, the resource selector will show all resources for which the associated service definition 1) defines the response as XML and 2) specifies an XML schema.
  • In Form JSON mode, the resource selector will show all resources for which the associated service definition 1) defines the response as JSON and 2) specifies a JSON schema.

Multiple Responses View

The Multiple Responses view allows you to specify which responses to use for specific requests. 

In the Conditions tab you can specify the request conditions that must be met in order for the correlated response to be sent. You can specify conditions using XPath functions and/or URL parameters for RESTful services (built-in support is available for GET and POST). The Message tab specifies what response is sent if the conditions are met.

Using ’Always Match’ with Multiple Responses

 Enable the Always Match option if:

  • You want to specify a single response that the stub should always return, regardless of the content of the incoming message, or
  • You have multiple responses and you want to specify the final response that the stub should return. In this case, it serves a catch-all, last-resort response if none of the previous conditions matched. For example, you could specify an "always match" final response that returns a SOAP Fault indicating that the service failed to process the request and return something based on the incoming values.

If more than one XPath or URL parameter matches a response, SOAtest will return the first matching response in the list (use the Up and Down buttons to specify the desired order or responses). If the XPath or URL parameter provided for each response results in a unique match, the order of the responses is irrelevant. 

Scripted XML View

The Scripted XML view allows you to specify complex logic. For details, see Using Scripted Logic.

Transport Header Options

The Transport Header tab allows you to specify HTTP, JMS, or MQ message header properties.

Test Correlation Options

The Test Correlation tab allows you to specify which messages this Message Stub tool/test accepts and processes. Various messages sent to the stub URL are routed to specific Message Stub tools (each of which handle different operations) based on the settings here. For example, one Message Stub tool might respond to customer registration messages, another might respond to payment messages, and another might function as a default "catch all" that it used when none of the others match.

You can specify which messages a Message Stub accepts by entering values in the following Test Correlation tab areas:

  • Transport: Allows you to specify HTTP Headers, JMS message properties, or MQ message fields within the message that will determine whether or not the message is processed.
  • Request Body: Allows you to specify XPaths within the message that will determine whether or not the message is processed.
  • URL Parameters (for RESTful services): Allows you to specify URL parameters that will determine whether or not the message is processed. URL parameters can be repeated (you can have the same parameter set to different values).
  • Custom: Allows you to specify a custom test correlation that is based on the return value of a custom method. For more details on using custom correlations, see the tip box below.

You can configure one type of correlation, multiple types of correlation, or no correlations. If no correlations are configured, everything in the message will be processed. 

Using Custom Correlations

 A custom test correlation is based on the return value of a custom method. Requirements:

  • The method must take 0 or 1 arguments.
  • The optional argument is of type com.parasoft.api.ScriptingContext.
  • The method can access the transport headers, URL parameters, and message contents of the incoming message using the ScriptingContext object.

More information can be found in the Javadocs for CorrelationScriptingHookConstants (go to Parasoft > Help or Help > Help Contents, depending on your installation, and look for the book titled "Parasoft SOAtest Extensibility API").

For example, if you want to test a plain text message based on a regular expression, you might use:

 from com.parasoft.api import CorrelationScriptingHookConstants  
 from java.lang import *
 def match(context):
   strMessage = context.get(CorrelationScriptingHookConstants.MESSAGE_STR)   
   return String(strMessage).matches("myRegularExpression")

If you want to test an element in an XML message, you might use:

from com.parasoft.api import CorrelationScriptingHookConstants from org.w3c.dom import *
from javax.xml.parsers import *
from javax.xml.xpath import *
from java.io import *
from java.lang import *
def match(context):
  xmlDocument = context.get(CorrelationScriptingHookConstants.MESSAGE_DOM)   
  if xmlDocument != None:
    xPathFactory = XPathFactory.newInstance();
    xpath = xPathFactory.newXPath()
    expression = xpath.compile("//*[local-name(.)='someElement' and namespace-uri(.)='someNamespace'][1]/text()")
    elementValue = expression.evaluate(xmlDocument)
    return String(elementValue).matches("myRegularExpression")
  return 0

Transport Correlation

To configure a transport correlation:

  1. Enable the Enable correlation option.
  2. Click Add. A new entry row appears.
  3. Enter the Name and Value of the message correlation you would like to specify.

Request Body Correlation

To configure a request body message correlation:

  1. Enable the Enable correlation option.
  2. Click Edit. An Edit XPath Function dialog opens.
  3. Select an element from the Element tree, choose a function from the Function menu, and click OK.

URL Parameters Correlation

To configure the URL parameters correlation:

  1. Enable the Enable correlation option.
  2. Click Add. A new entry row appears.
  3. Enter the Parameter Name and Value of the correlation you would like to specify.

Data Source Correlation Options

The Data Source Correlation tab allows you to specify which data source row values to use in stub responses.

Benefits

One way to configure stubs with Multiple Responses mode is to manually configure the Message Stub tool to send different response messages based on the nature of the incoming message. 

Another way to configure stubs to dynamically respond with the desired message is to use data sources. You can easily fill out data source tables (such as Excel) where each row contains values in the incoming message (typically, just the leaf node values) that you want the stub to respond to, then another column that specifies how you want the stub to respond when the specified conditions are met (see Using Existing Data Sources or Rapidly Creating Data Sources for Responses for details). After that, you can configure the mapping between the request and response message values and the columns within the data source.  

This allows for request/response use cases to be configured easily in one easy-to-edit table (data source), it allows them to be managed there to scale further with more and more messages, and it also provides more flexibility with response messages (since Form Input allows you to have some values fixed, others parameterized, some automatic or even scripted).

This data source correlation is very flexible. You can configure the stub to respond to incoming request values with rules and logic beyond exact match/correlation. For example, you could configure a stub to evaluate the last 4 digits of a credit card number, numerical values less or greater than a given value, or other patterns and expressions. 

The value matching supports the wild cards * and ?. For example, if you want an incoming value named "title keyword" to match a certain row as long as it contains the word Linux, then you can have the data source value "*Linux*". * matches zero or more characters, ? matches a single character.

Configuration

To parameterize stub responses from a data source:

  1. Ensure that you have a data source configured in SOAtest and available for the Message Stub.
  2. Click Add in the appropriate part of the Data Source Correlation tab, provide an XPath and/or URL parameter, and select the appropriate column name. When the deployed stub is exercised, SOAtest will extract the specified values from the request, then search the named column for a match that corresponds to the extracted value. If a match is found, the data in the corresponding data source row will be used to populate the response:
    • If a service definition was provided, the XPath can be generated using the Edit button. That dialog validates the XPath expression and the column name in real time.
    • SOAtest validates the XPath syntax while you type/edit these XPath expressions, if you choose to customize them instead of using the visual Edit option.
    • Wildcards can be used in the data source column.
  3. Parameterize the Response area of the Message Stub by referencing other data source columns within that same data source (that is, Form Input, Form XML, and so on). You can add several XPaths or URL parameters to column name mappings.

Processing Details

When the Message Stub executes in a test suite, or as a hosted stub, the incoming messages are evaluated through these XPath expressions/URL parameters. The values are then matched against the corresponding data source values (each with its respective column) to find a row that matches the values. 

A series of matching attempts try to match each value to corresponding data source row. If no match is found by the end of the matching attempts, then the engine moves on to the next row in the data source. If no match was found in any of the rows, then an error is returned.  

The matching attempts are made in the following order:

  1. Exact/literal string match.
  2. Match with wildcard * which denotes zero or more characters. For example, Linux* would match values such as "Linux", "Linux Administration" or "Linux Administration Handbook".
  3. Match by processing the data source value string as a regular expression. For example, this allows abc-\d{3}-123 to be matched with any incoming values such as abc-576-123, abc-000- 123, and so on (the middle part being any three digits).
  4. Match by processing the data source value and the incoming value it is being evaluated against as numbers. For example, this allows 10 to be matched with 10.0.
  5. Match by processing the incoming value as a number and the data source cell value as a number prefixed with a comparison operator. Allowed operators are: <, >, <=, >=, != or <>. For example, if the data source value is provided as <=14.99, then incoming values that are less or equal to 14.99 will match that particular value.

A data source row is considered a match if all the values specified in the data source correlation list of a Message Stub in that row matched.

If a matching row is found, then that row will be used for any parameterized values in the Message Stub Response message. This way, the stub can respond with the desired message values based on values in the incoming messages. 

Service Options

The Service Options tab allows you to configure how the message is processed. The following options are available:

  • Message Exchange Pattern: Select Solicit Response or Notification Only.
  • Return Status: Allows you to specify how the message is returned, for instance, to emulate working or faulty services. To use the default value of 200 OK, enable Use Default Return Status. If this option is not enabled, the following options are available:
    • Return Status: Enter the custom return status value. If a data source is available, you can also parameterize this value.
    • Skip message proxy failoverEnable to bypass the message proxy's failover setting for internally routed error messages and send the custom return status configured in the response.

  • Request Handling: Select Apply incoming request tools on the message before responding if you need the request message to be transformed before it is processed by the Data Source Correlation or Multiple Responses "if request matches" condition logic. This is important when the XML must be altered to make it suitable for correlation, or if the message is not XML at all and requires some transformation before the stub sends the original caller a suitable response for the request.
  • Performance: The Performance tab enables you to set the following options related to the execution time:
    • Timeout after (milliseconds): Specifies the length of delay (in milliseconds) after which SOAtest should consider the message to be timed out. The Default setting is 30000. The Custom setting allows you to enter a timeout. A non-positive timeout value can be entered to specify an infinite timeout.
      • Fail the test on timeout: Select this option to fail the test on the specified timeout.
      • Pass the test only if a timeout occurred: Select this option to pass the test if the specified timeout occurred (that is, test did not finish execution within the specified time).
    • Think time (ms): Enter the amount of time (in milliseconds) for the message delay you want to emulate. This can be used to emulate a slow service. If a data source is available, you may also parameterize this value. A think time value larger than the Timeout value will not force a timeout. Timeouts will only occur if a message is not correlated successfully and the Message Stub is idle and unable to complete.
  • Style/Use: These options allow you to select the body style and encoding of the message:
    • Body Style: Select either document or rpc.
    • Use: Select either encoded or literal.
    • Encoding Style URI (Automatically completed if available): Lists the encoding style URI used to send requests.
    • Target Object URI: Specifies the target object URI.
  • Attachment Encapsulation Format: Specifies whether to use the Default or Custom encapsulation format. The Default option specifies whatever is chosen as the Attachment Encapsulation Format in the SOAP Client tab of the Preferences panel (for more information, see SOAP Settings). The Custom option allows you to choose None, MTOM always, or MTOM optional.
  • Headers: Allows you to add custom headers in the response.

Adding Custom Headers

To add custom headers:

  1. Click Add in the Service Options tab. A dialog opens.
  2. Enter the Name and Value of the message correlation you would like to specify.
  3. Click OK.

Using Existing Data Sources or Rapidly Creating Data Sources for Responses

Specifying response values in a data source is a very efficient way to add a significant volume of request/response pairs.

Using Existing Data Sources

If you already have a data source that specifies values for request parameters and the desired corresponding response parameters, you can use those values as follows:

  1. Add the data source to SOAtest.
  2. Configure the Message Stub’s data source mapping with the appropriate request columns (as described in Data Source Correlation Options).

Rapidly Creating Data Sources

If you do not already have such a data source but want a fast way to specify multiple request/response sets:

  1. Use the procedure described in Generating a Data Source Template for Populating Message Elements to create a CSV file from the Form Input view of the Message Stub tool. A data source will be generated and added to the test suite. This generated data source will contain columns for responses. The Message Stub tool’s Form Input view will be parameterized automatically.
  2. Add a new data source column (for example, using Excel, OpenOffice or a similar spreadsheet application) for each request parameter that should be used to determine the response. Wildcards can be used.
  3. Configure the Message Stub’s data source mapping with the new request columns you added. See Data Source Correlation Options for details.
  4. Add new rows to the data source (for example, using Excel, OpenOffice or a similar spreadsheet application) in order to specify values for request parameters and the desired corresponding response parameters.

Using Scripted Logic

You can script response values based on the incoming request. This allows for more complex logic for your stubs. In addition, the Message Stub allows you to access data source values through the script. Access to these values is similar to how you would access them through the Extension Tool.

For an example of how to use scripted logic within the Message Stub tool:

  1. Enter a service definition in the in the Definition tab of the Message Stub tool.
  2. Right-click the Message Stub node and choose Add Output. The Add Output wizard opens.
  3. From the Add Output wizard, select Incoming Request from the left pane and XML Data Bank from the right pane, then click Finish.
  4. Double-click the Incoming Request> XML Data Bank node beneath the Message Stub node. The XML Data Bank configuration panel displays in the right GUI panel.
  5. In the right GUI panel, add the XPath of the value you want to access in your script.
  6. Double-click the Message Stub node. The Message Stub configuration panel displays in the right GUI panel.
  7. In the Response tab, choose the Scripted view.
  8. Enable the Use Data Source option.
  9. Specify your logic. The following is the basic template for accessing data source and data bank values:

    def customLogic(context):
        # Retrieve the data source value. "Data Source Name" should be replaced
        # with the name of your data source and "Column Name" should be the column
        # that your value is coming from. You can access many columns from the same
        # data source within this script. For Data Bank values, the table is always
        # named "Generated Data Source" so you only need to replace "Data Bank Column Name"     
        dataSourceValue = context.getValue("Data Source Name", "Column Name")     
        dataBankValue = context.getValue("Generated Data Source", "Data Bank Column Name")     
        # add custom logic that uses value from data source

  10. Select the correct method from the Method menu. The method you select should be your entry point. In the above example, the method would be customLogic().

Adding Attachment Handlers to the Message Stub

It may be useful to add an Attachment Handler to the Message Stub in order to test your attachment handling when sending message attachments. To add an Attachment Handler to a Message Stub, complete the following:

  1. Select the Message Stub node and click Add test or output. The Add Output wizard opens.
  2. From the Add Output wizard, select Incoming Attachment from the left pane and Attachment Handler from the right pane, then click Finish.
  3. Double-click the Attachment Handler node, then configure the tool in the tool configuration panel.
  4. (Optional) Select the Attachment Handler node beneath the Message Stub node and click Add Test/Add Output. The Add Output wizard opens from which you can add a Write File tool to write the attachment out as a binary file.
  • No labels