Templating¶
Hoverfly can build responses dynamically through templating. This is particularly useful when combined with loose matching, as it allows a single matcher to represent an unlimited combination of responses.
Enabling Templating¶
By default templating is disabled. In order to enable it, set the templated
field to true in the response of a simulation.
Getting data from the request¶
Currently, you can get the following data from request to the response via templating:
Field |
Example |
Request |
Result |
---|---|---|---|
Request scheme |
|
http |
|
Query parameter value |
|
bar |
|
Query parameter value (list) |
|
bar2 |
|
Path parameter value |
|
one |
|
Method |
|
GET |
|
jsonpath on body |
|
{ “id”: 123, “username”: “hoverfly” } |
123 |
xpath on body |
|
<root><id>123</id></root> |
123 |
From data |
|
||
Header value |
|
{ “X-Header-Id”: [“bar”] } |
bar |
Header value (list) |
|
{ “X-Header-Id”: [“bar1”, “bar2”] } |
bar2 |
State |
|
State Store = {“basket”:”eggs”} |
eggs |
Helper Methods¶
Additional data can come from helper methods. These are the ones Hoverfly currently support:
Description |
Example |
Result |
---|---|---|
The current date time with offset, in the given format. For example:
|
|
|
A random string |
|
hGfclKjnmwcCds |
A random string with a specified length |
|
KC |
A random boolean |
|
true |
A random integer |
|
42 |
A random integer within a range |
|
7 |
A random float |
|
42 |
A random float within a range |
|
7.4563213423 |
A random email address |
|
|
A random IPv4 address |
|
224.36.27.8 |
A random IPv6 address |
|
41d7:daa0:6e97:6fce:411e:681:f86f:e557 |
A random UUID |
|
7b791f3d-d7f4-4635-8ea1-99568d821562 |
Replace all occurrences of the old value with the new value in the target string |
(where Request.Body has the value of {“text”:”to be or not to be”} |
to mock or not to mock |
Generate random data using go-fakeit |
|
John Smith |
Time offset¶
When using template helper method now
, time offset must be formatted using the following syntax.
Shorthand |
Type |
---|---|
ns |
Nanosecond |
us/µs |
Microsecond |
ms |
Millisecond |
s |
Second |
m |
Minute |
h |
Hour |
d |
Day |
y |
Year |
Prefix an offset with -
to subtract the duration from the current date time.
Example time offset¶
5m |
5 minutes |
1h30m |
1 hour 5 minutes |
1y10d |
1 year 10 days |
Date time formats¶
When using template helper method now
, date time formats must follow the Golang syntax.
More can be found out here https://golang.org/pkg/time/#Parse
Example date time formats¶
2006-01-02T15:04:05Z07:00 |
Mon, 02 Jan 2006 15:04:05 MST |
Jan _2 15:04:05 |
Note
If you leave the format string empty, the default format to be used is ISO 8601 (2006-01-02T15:04:05Z07:00).
You can also get an UNIX timestamp by setting the format to:
unix
: UNIX timestamp in secondsepoch
: UNIX timestamp in milliseconds
Faker¶
Support for go-fakeit was added in order to extend the
templating capabilities of Hoverfly. Faker covers many different test data requirements and it can be used within
Hoverfly templated responses by using the faker
helper followed by the faker type (e.g. Name
, Email
)
For example, you can generate a random name using the following expression:
{
"body": "{\"name\": \"{{faker 'Name'}}\"}"
}
Fakers that require arguments are currently not supported.
Conditional Templating, Looping and More¶
Hoverfly uses the https://github.com/aymerick/raymond library for templating, which is based on http://handlebarsjs.com/
To learn about more advanced templating functionality, such as looping and conditionals, read the documentation for these projects.
Global Literals and Variables¶
You can define global literals and variables for templated response. This comes in handy when you have a lot of templated responses that share the same constant values or helper methods.
Literals¶
Literals are constant values. You can declare literals as follows and then reference it in templated response as {{ Literals.<literal name> }}
.
{
"data": {
...
"literals": [
{
"name":"literal1",
"value":"value1"
},
{
"name":"literal2",
"value":["value1", "value2", "value3"]
},
{
"name":"literal3",
"value": {
"key": "value"
}
}
]
}
Variables¶
Variable lets you define a helper method that can be shared among templated responses.
You can associate the helper method with a name and then reference it in templated response as {{ Vars.<variable name> }}
.
{
"data": {
...
"variables": [
{
"name":"<variable name>",
"function":"<helper method name>",
"arguments":["arg1", "arg2"]
}
]
}
{
"data": {
...
"variables": [
{
"name":"varOne",
"function":"faker",
"arguments":["Name"]
},
{
"name":"idFromJSONRequestBody",
"function":"requestBody",
"arguments":["jsonpath", "$.id"]
},
{
"name":"idFromXMLRequestBody",
"function":"requestBody",
"arguments":["xpath", "/root/id"]
}
]
}