This topic provides an overview of how to generate tests from recorded HTTP, JMS, or MQ traffic. Sections include:

This method supports HTTP and MQ as well as JMS (the other options support only JMS). It lets you record multiple connections at once (the others support a single JMS connection at one time). Also, it consistently leaves messages on the queues (if you select that option).

However, this method is a two step process (capture the traffic in a file, then create tests from that file); the other wizards require only one step.

With the other wizards, tests get created automatically when the initial wizard is completed. They also provide TIBCO-aware and Sonic-aware configuration panels that automatically configure some of the provider-specific settings. The recording wizard shows a generic JMS configuration interface.

Generating Tests from Traffic Overview

SOAtest can create tests for application behavior that is captured in traffic logs—including:

Supported Traffic Log Formats

SOAtest supports the following traffic log formats (the file extension does not matter).

HTTP Traffic logs

For the HTTP parser type, SOAtest can recognize and parse HTTP traffic with POST, GET, and PUT methods.  DELETE is not supported. SOAtest expects the log to contain the HTTP headers for a message, followed with message body content:

HTTP request 1 headers 
HTTP request 1 body 
HTTP response 1 headers 
HTTP response 1 body 
HTTP request 2 headers 
HTTP request 2 body
HTTP response 2 headers 
HTTP response 2 body 
...

SOAtest also expects there to be two line endings (Windows or Unix) between a message body and the next set of HTTP headers.

This format is similar to what would be captured by the SOAtest recording wizard or other HTTP traffic sniffing tools that can record HTTP traffic as it gets transmitted over the HTTP socket connection.

HTTP chunking and traffic files that are recorded with chunked traffic are supported. However, raw HTTP traffic files that include chunked messages or "continue" headers are not supported.

JMS and MQ Traffic Logs

SOAtest supports the creation of tests from JMS and MQ traffic files produced by the SOAtest traffic recording wizard.

Message Formats

For parameterized messages, the traffic files can include any message format that SOAtest supports (including EDI, JSON, fixed length, and custom message formats). For fixed messages, only XML and JSON are supported.

Using Parameterized vs. Fixed Messages

SOAtest provides two options for generating tests from traffic logs:

Example

To understand the difference, consider the following example from a simple HTTP traffic file, including three messages for the getItemByTitle operation.

Parameterized Messages

With "generate parameterized messages," SOAtest configures the traffic file’s three getItemByTitle requests with a single test client that is parameterized as follows.



Additionally, it creates the following editable and extensible Data Repository.

Fixed Messages

With "generate fixed messages," SOAtest configures the traffic file’s three getItemByTitle requests with three test clients. The following shows the test client that was created to search for books using the keyword Java.



Two similar test clients are also added to search for books using the keywords Linux and C++.