Simulating State with Scenarios

Some testing activities require that different responses be served for a sequence of identical requests. For instance if you are testing a to-do list application such as this one you may wish to start with no to-do list items, post a new item, then see the item appear in the list.

Assuming there is a “list to-do items” API call used to fetch the list, this must be called twice during the above test, returning no items on the first invocation, and the newly added item on the second. Since both of these requests will be identical (same URL, method, request headers), something additional is required for WireMock Cloud to differentiate the first and second cases.

WireMock Cloud’s Scenarios solve this problem by providing finite state machines that can be used as additional stub matching conditions. They allow more than one definition of an otherwise identical stub with different responses based on the current state of the machine.

Example

To implement the above case, you would declare that the stub returning the empty list is only matched when the scenario state is “Started”, while the stub returning the list with one item is only matched when the scenario state is “First item added”.

Start by creating the empty list stub, which is matched only when the scenario named “To do list” is in the “Started” state:

Then create a stub to handle posting of the first list item. When triggered this stub will move the scenario state to “First item added”:

Finally, create a stub to return the list containing one item, which is matched only then the scenario is in the “First item added” state:

Testing

First, make a GET request to fetch the list, which should be empty. You should be able to do this any number of times without the result changing:

$ curl http://example.wiremockapi.cloud/todo-items
{
  "items": []
}

Now POST a new item (it actually doesn’t matter what the request body contains, since we didn’t specify a body matcher in the stub):

$ curl http://example.wiremockapi.cloud/todo-items -X POST

This should now have moved the scenario state to “First item added”. Getting the list of items again should now return one item:

$ curl http://example.wiremockapi.cloud/todo-items
{
  "items": [
    {
      "id": "1",
      "description": "Read all about Scenarios"
    }
  ]
}

Scenario reset

All scenarios can be reset to their “Started” state by clicking .