Skip to main content
WireMock Cloud has two helpers for manipulating dates - now and date.

Current date/time

The now helper renders the current date/time, with the ability to specify the format (see full reference) and offset.
Dates can be rendered in a specific timezone (the default is UTC):
Pass epoch as the format to render the date as UNIX epoch time (in milliseconds), or unix as the format to render the UNIX timestamp in seconds.

Random date values

You can combine the now helper with random helpers to generate random dates:

Existing date values

The date helper can be used to manipulate existing date values, changing the offset, timezone and print format in exactly the same manner as with the now helper.

Parsing dates from strings

Dates can be parsed from other model elements. This is mostly useful when passed to the date helper for further processing:

Specifying parser format

You can specify the format to use when parsing a date via a format string:
Output: 2021-11-10T00:00:00Z. Additionally you can specify unix or epoch as the format which will interpret parse a large integer denoting (respectively) seconds or milliseconds since 1st of January 1970:
Output: 2020-01-02T11:21:31Z.

Formatting dates

Date values can be formatted to strings using the dateFormat helper. You can either select a named format from the following:
  • full: full date format. For example: Tuesday, June 19, 2012
  • long: long date format. For example: June 19, 2012
  • medium: medium date format. For example: Jun 19, 2012
  • short: short date format. For example: 6/19/12
e.g.
Or you can specify your own format string (full reference here):

Format string reference

The following details all of the format string elements used when formatting and parsing dates and times:

Truncating dates

The truncateDate helper will truncate date/times to specific points e.g.
Output: Wed Jun 30 00:00:00 UTC 2021. The full list of available truncations is:
  • first minute of hour
  • first hour of day
  • first day of month
  • first day of next month
  • last day of month
  • first day of year
  • first day of next year
  • last day of year