2022-05-16 15:38:52 +02:00
|
|
|
import std/times
|
|
|
|
import pkg/chronos
|
2022-05-19 14:56:03 -05:00
|
|
|
import codex/contracts/clock
|
2023-12-07 01:16:36 +00:00
|
|
|
import codex/utils/json
|
2022-05-16 15:38:52 +02:00
|
|
|
import ../ethertest
|
|
|
|
|
2022-05-17 11:50:52 +02:00
|
|
|
ethersuite "On-Chain Clock":
|
|
|
|
var clock: OnChainClock
|
2022-05-16 15:38:52 +02:00
|
|
|
|
|
|
|
setup:
|
2023-12-18 09:34:04 +00:00
|
|
|
clock = OnChainClock.new(ethProvider)
|
2022-05-16 15:38:52 +02:00
|
|
|
await clock.start()
|
|
|
|
|
|
|
|
teardown:
|
|
|
|
await clock.stop()
|
|
|
|
|
|
|
|
test "returns the current time of the EVM":
|
2023-12-18 09:34:04 +00:00
|
|
|
let latestBlock = (!await ethProvider.getBlock(BlockTag.latest))
|
2022-05-16 15:38:52 +02:00
|
|
|
let timestamp = latestBlock.timestamp.truncate(int64)
|
2024-02-17 09:12:16 +11:00
|
|
|
check clock.now() == timestamp
|
2022-05-16 15:38:52 +02:00
|
|
|
|
|
|
|
test "updates time with timestamp of new blocks":
|
|
|
|
let future = (getTime() + 42.years).toUnix
|
2023-12-18 09:34:04 +00:00
|
|
|
discard await ethProvider.send("evm_setNextBlockTimestamp", @[%future])
|
|
|
|
discard await ethProvider.send("evm_mine")
|
2024-03-11 17:57:20 +01:00
|
|
|
check eventually clock.now() == future
|
2022-05-16 15:38:52 +02:00
|
|
|
|
2023-07-13 11:19:45 +02:00
|
|
|
test "can wait until a certain time is reached by the chain":
|
2024-02-17 09:12:16 +11:00
|
|
|
let future = clock.now() + 42 # seconds
|
2023-07-13 11:19:45 +02:00
|
|
|
let waiting = clock.waitUntil(future)
|
2023-12-18 09:34:04 +00:00
|
|
|
discard await ethProvider.send("evm_setNextBlockTimestamp", @[%future])
|
|
|
|
discard await ethProvider.send("evm_mine")
|
2023-07-13 11:19:45 +02:00
|
|
|
check await waiting.withTimeout(chronos.milliseconds(100))
|
|
|
|
|
|
|
|
test "can wait until a certain time is reached by the wall-clock":
|
2024-02-17 09:12:16 +11:00
|
|
|
let future = clock.now() + 1 # seconds
|
2023-07-13 11:19:45 +02:00
|
|
|
let waiting = clock.waitUntil(future)
|
|
|
|
check await waiting.withTimeout(chronos.seconds(2))
|
|
|
|
|
2022-05-16 15:38:52 +02:00
|
|
|
test "handles starting multiple times":
|
|
|
|
await clock.start()
|
|
|
|
await clock.start()
|
|
|
|
|
|
|
|
test "handles stopping multiple times":
|
|
|
|
await clock.stop()
|
|
|
|
await clock.stop()
|