About
Groovy scripts can be used in virtual services for many purposes such as forming and dispatching virtual responses, asserting incoming requests, and many more. For details, see Virtual Service Scripting.
Script objects
Below is a list of the default objects that are available in the virtual service script editors:
Object | Description |
---|---|
context |
Provides a scripting interface to the virtual service, responses and virtual service runner. Use the context.properties collection to store properties related to the service. |
log |
Includes methods and properties for posting messages to the Script log (to view this log, click Logs in the bottom left corner of the ReadyAPI window and switch to the Script log tab). You use this for debugging and logging purposes: to post and view data in the log. |
message |
Used in JMS virtual services. Provides a scripting interface to the JMS message body and headers. |
mockOperation |
Corresponds to a virtual operation. Provides a scripting interface to the virtual response and request data, assertions, dispatch settings and other properties. |
mockRequest |
Provides a scripting interface to the incoming request. Use methods and properties of this object to get query string, port, headers, body, and other data. |
mockResponse |
Provides a scripting interface to the virtual response data defined in a virtual service for a response. You can use responseContent of this property, for example, to change the response data before the virtual service sends the response to a client. |
mockResult |
Provides a scripting interface to the entire message exchange procedure: request, response and assertion results. |
mockRunner |
Provides a scripting interface to the virtual service runner. You can use methods of this object to stop the current service. |
requestContext |
Provides a scripting interface to the request context. Use the requestContext.properties collection to store request-related properties. |
You can see methods and properties of these objects on the Code Completion list. To invoke it, type the object name and press Ctrl+Space.
Examples
You can find examples of virtual service scripts in the Virtual Service Scripting topic.