Test steps are core building blocks of functional tests. You add them to a test case to control the execution flow and validate the functionality of the testing service. Each step performs a simple action - simulates a request, exchanges data, checks responses, and so on.
A test case starts running from the topmost test step and executes test steps in sequence. However, it is possible to create more complex behaviour by using conditional branching, loops, and calls of other test cases.
The following test steps are available in ReadyAPI:
Sending Requests | |
Sends a SOAP request over either HTTP, HTTPS, or JMS and receives the response if any. SOAP Request test steps are tied to the corresponding WSDL operation and its WSDL interface added to a project when importing the corresponding WSDL. | |
Sends a REST request over HTTP, HTTPS, or JMS and receives the response if any. REST Request test steps are tied to the corresponding REST Service, Resource, and Method in the containing project. | |
Sends an HTTP request over HTTP, HTTPS, or JMS and returns the results. | |
| |
| |
| |
| |
Sends a database query or stored procedure call to the configured database and returns the result. | |
Sends a SOAP or REST request by using Java Message Service. | |
Simulates an XML-RPC operation call. | |
Working With Properties | |
Helps you define an arbitrary number of properties that can optionally be read from or written to a file. These can then be used for parameterization of requests, assertions, and so on. | |
Helps you transfer or extract property values between test steps, for example, you can extract a value from a response message and write it to a Data Sink test step for external storage. | |
| |
Data-Driven Testing | |
| |
| |
| |
| |
Execution Flow | |
Checks for specific values in the last received message in the test case and jumps to the target test step. | |
Transfers execution of a test case to the specified target test case and sets its properties as configured in the test step. Use this to create modular test cases, for example, when the same sequence of test steps should be run at the beginning of a number of test cases. | |
Pauses the execution of the test case for the specified time. | |
Scripting | |
Custom scripting with Groovy. | |
Validation | |
| |
Web Service Virtualization | |
Listens and waits for an HTTP or HTTPS SOAP request and returns the configured response. Used for testing callbacks and asynchronous processes. | |
| |
| |
Working With AMQP | |
Creates an exchange on an AMQP broker. | |
Creates a queue on an AMQP broker. | |
Binds a queue to an exchange. | |
Sends a message to an exchange. | |
Fetches a message from a queue. | |
Working With MQTT | |
Simulates actions of an MQTT client. | |
Simulates actions of an MQTT publisher. | |
Simulates a disconnection from an MQTT broker. | |
Working With Files | |
| |
| |
Uploads a file to the specified FTP server. | |
Miscellaneous | |
Performs a manual check as part of your automated test run. | |
| |
|