Test Clocks Test helper
A test clock enables deterministic control over objects in testmode. With a test clock, you can create objects at a frozen time in the past or future, and advance to a specific future time to observe webhooks and state changes. After the clock advances, you can either validate the current state of your scenario (and test your assumptions), change the current state of your scenario (and test more complex scenarios), or keep advancing forward in time.
The Test Clock object Test helper
Attributes
- idstring
Unique identifier for the object.
- objectstring
String representing the objectâs type. Objects of the same type share the same value.
- createdtimestamp
Time at which the object was created. Measured in seconds since the Unix epoch.
- deletes_
aftertimestamp Time at which this clock is scheduled to auto delete.
- frozen_
timetimestamp Time at which all objects belonging to this clock are frozen.
- livemodeboolean
Has the value
true
if the object exists in live mode or the valuefalse
if the object exists in test mode. - namenullable string
The custom name supplied at creation.
- statusenum
The status of the Test Clock.
Possible enum valuesadvancing
In the process of advancing time for the test clock objects.
internal_
failure Failed to advance time. Future requests to advance time will fail.
ready
All test clock objects have advanced to the
frozen_
.time - status_
detailsobject Details on the current state of the Test Clock.
{ "id": "clock_1Mr3I22eZvKYlo2Ck0rgMqd7", "object": "test_helpers.test_clock", "created": 1680112806, "deletes_after": 1680717606, "frozen_time": 1577836800, "livemode": false, "name": null, "status": "ready"}
Create a test clock Test helper
Creates a new test clock that can be attached to new customers and quotes.
Parameters
- frozen_
timetimestampRequired The initial frozen time for this test clock.
- namestring
The name for this test clock.
Returns
The newly created TestClock
object is returned upon success. Otherwise, this call raises an error.
{ "id": "clock_1Mr3I22eZvKYlo2Ck0rgMqd7", "object": "test_helpers.test_clock", "created": 1680112806, "deletes_after": 1680717606, "frozen_time": 1577836800, "livemode": false, "name": null, "status": "ready"}
Retrieve a test clock Test helper
Retrieves a test clock.
Parameters
No parameters.
Returns
Returns the TestClock
object. Otherwise, this call raises an error.
{ "id": "clock_1Mr3I22eZvKYlo2Ck0rgMqd7", "object": "test_helpers.test_clock", "created": 1680112806, "deletes_after": 1680717606, "frozen_time": 1577836800, "livemode": false, "name": null, "status": "ready"}
List all test clocks Test helper
Returns a list of your test clocks.
Parameters
No parameters.
More parameters
- ending_
beforestring - limitinteger
- starting_
afterstring
Returns
A dictionary with a data
property that contains an array of up to limit
test clocks, starting after starting_
. Each entry in the array is a separate test clock object. If no more test clocks are available, the resulting array will be empty.
{ "object": "list", "url": "/v1/test_helpers/test_clocks", "has_more": false, "data": [ { "id": "clock_1Mr3I22eZvKYlo2Ck0rgMqd7", "object": "test_helpers.test_clock", "created": 1680112806, "deletes_after": 1680717606, "frozen_time": 1577836800, "livemode": false, "name": null, "status": "ready" } ]}