2022-09-21 09:57:26 +00:00
|
|
|
const { advanceTimeTo } = require("./evm")
|
|
|
|
const { slotId } = require("./ids")
|
2022-09-07 05:25:01 +00:00
|
|
|
|
2022-09-21 09:57:26 +00:00
|
|
|
async function waitUntilCancelled(expiry) {
|
|
|
|
await advanceTimeTo(expiry + 1)
|
2022-08-04 02:14:36 +00:00
|
|
|
}
|
|
|
|
|
2022-09-21 09:57:26 +00:00
|
|
|
async function waitUntilStarted(contract, numSlots, requestId, proof) {
|
|
|
|
const lastSlot = numSlots - 1
|
|
|
|
for (let i = 0; i <= lastSlot; i++) {
|
2022-09-13 07:20:07 +00:00
|
|
|
await contract.fillSlot(requestId, i, proof)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-21 09:57:26 +00:00
|
|
|
async function waitUntilFinished(contract, slotId) {
|
|
|
|
const end = (await contract.proofEnd(slotId)).toNumber()
|
|
|
|
await advanceTimeTo(end + 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
async function waitUntilFailed(contract, slot, maxSlotLoss) {
|
|
|
|
for (let i = 0; i <= maxSlotLoss; i++) {
|
|
|
|
slot.index = i
|
|
|
|
let id = slotId(slot)
|
|
|
|
await contract.freeSlot(id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-22 02:21:49 +00:00
|
|
|
const RequestState = {
|
|
|
|
New: 0,
|
|
|
|
Started: 1,
|
|
|
|
Cancelled: 2,
|
|
|
|
Finished: 3,
|
|
|
|
Failed: 4,
|
|
|
|
}
|
|
|
|
|
2022-09-21 09:57:26 +00:00
|
|
|
module.exports = {
|
|
|
|
waitUntilCancelled,
|
|
|
|
waitUntilStarted,
|
|
|
|
waitUntilFinished,
|
|
|
|
waitUntilFailed,
|
2022-09-22 02:21:49 +00:00
|
|
|
RequestState,
|
2022-09-21 09:57:26 +00:00
|
|
|
}
|