2024-03-19 14:27:51 +00:00
|
|
|
import std/json
|
|
|
|
import pkg/asynctest
|
|
|
|
import pkg/ethers
|
|
|
|
import ./hardhat
|
|
|
|
|
|
|
|
suite "Contract custom errors":
|
|
|
|
|
|
|
|
type
|
|
|
|
TestCustomErrors = ref object of Contract
|
|
|
|
SimpleError = object of SolidityError
|
2024-03-20 10:24:53 +00:00
|
|
|
ErrorWithArguments = object of SolidityError
|
|
|
|
arguments: tuple[one: UInt256, two: bool]
|
2024-03-19 14:27:51 +00:00
|
|
|
|
|
|
|
var contract: TestCustomErrors
|
|
|
|
var provider: JsonRpcProvider
|
|
|
|
var snapshot: JsonNode
|
|
|
|
|
|
|
|
setup:
|
|
|
|
provider = JsonRpcProvider.new()
|
|
|
|
snapshot = await provider.send("evm_snapshot")
|
|
|
|
let deployment = readDeployment()
|
|
|
|
let address = !deployment.address(TestCustomErrors)
|
|
|
|
contract = TestCustomErrors.new(address, provider)
|
|
|
|
|
|
|
|
teardown:
|
|
|
|
discard await provider.send("evm_revert", @[snapshot])
|
|
|
|
await provider.close()
|
|
|
|
|
|
|
|
test "handles simple errors":
|
|
|
|
proc revertsSimpleError(contract: TestCustomErrors)
|
|
|
|
{.contract, pure, errors:[SimpleError].}
|
|
|
|
|
|
|
|
expect SimpleError:
|
|
|
|
await contract.revertsSimpleError()
|
2024-03-20 10:24:53 +00:00
|
|
|
|
|
|
|
test "handles error with arguments":
|
|
|
|
proc revertsErrorWithArguments(contract: TestCustomErrors)
|
|
|
|
{.contract, pure, errors:[ErrorWithArguments].}
|
|
|
|
|
|
|
|
try:
|
|
|
|
await contract.revertsErrorWithArguments()
|
|
|
|
fail()
|
|
|
|
except ErrorWithArguments as error:
|
|
|
|
check error.arguments.one == 1
|
|
|
|
check error.arguments.two == true
|