Machete.NumericTimeMatcher (Machete v0.3.11)
View SourceDefines a matcher that matches integers that represent time against various measurements
(monotonic_time
, system_time
, and os_time
), and in various units (:native
, millisecond,
microsecond, nanosecond, etc).
Summary
Types
Describes the arguments that can be passed to this matcher
Describes an instance of this matcher
Functions
Matches against integers that represent Unix time values in milliseconds
Types
Functions
Matches against integers that represent Unix time values in milliseconds
Takes the following arguments:
exactly
: Requires the matched Unix time to be exactly equal to the specified Unix timeroughly
: Requires the matched Unix time to be withinepsilon
seconds of the specified Unix time. The atom:now
can be used to use the current time as the specified Unix timeepsilon
: The bound(s) to use when determining how close (in milliseconds) the matched Unix time needs to be toroughly
. Can be specified as a single integer that is used for both lower and upper bounds, or a tuple consisting of distinct lower and upper bounds. If not specified, defaults to 10_000 millisecondsbefore
: Requires the matched Unix time to be before or equal to the specified Unix time. The atom:now
can be used to use the current time as the specified Unix timeafter
: Requires the matched Unix time to be after or equal to the specified Unix time. The atom:now
can be used to use the current time as the specified Unix time
Examples:
iex> assert :os.system_time(:millisecond) ~> unix_time()
true
iex> assert 1681060000000 ~> unix_time(exactly: 1681060000000)
true
iex> assert :os.system_time(:millisecond) ~> unix_time(roughly: :now)
true
iex> assert 1681060000000 ~> unix_time(roughly: 1681060005000)
true
iex> assert 1681060000000 ~> unix_time(roughly: 1681060001000, epsilon: 1000)
true
iex> assert 1681060000000 ~> unix_time(roughly: 1681060001000, epsilon: {1000, 500})
true
iex> refute 1681060000000 ~> unix_time(roughly: 1681060001001, epsilon: 1000)
false
iex> refute 1681060000000 ~> unix_time(roughly: 1681060001001, epsilon: {1000, 500})
false
iex> assert 1681060000000 ~> unix_time(before: :now)
true
iex> assert 1681060000000 ~> unix_time(before: 1681090000000)
true
iex> assert 9991090000000 ~> unix_time(after: :now)
true
iex> assert 1681060000000 ~> unix_time(after: 0)
true