nim-eth/tests/rlp/test_common.nim

125 lines
2.9 KiB
Nim
Raw Normal View History

{.used.}
import
std/[os, json],
unittest2,
stew/byteutils,
../../eth/[common, rlp]
2019-02-05 10:10:36 +00:00
2021-05-17 03:07:05 +00:00
type
EthHeader = object
header: BlockHeader
func `==`(a, b: ChainId): bool =
a.uint64 == b.uint64
2019-02-05 10:10:36 +00:00
proc loadFile(x: int) =
let fileName = "tests" / "rlp" / "eip2718" / "acl_block_" & $x & ".json"
test fileName:
let n = json.parseFile(fileName)
let data = n["rlp"].getStr()
2021-05-17 03:07:05 +00:00
var bytes1 = hexToSeqByte(data)
var blk1 = rlp.decode(bytes1, EthBlock)
let bytes2 = rlp.encode(blk1)
var blk2 = rlp.decode(bytes2, EthBlock)
check blk1 == blk2
check bytes1 == bytes2
var r = rlpFromBytes(bytes1)
let header = r.read(EthHeader).header
let body = r.readRecordType(BlockBody, false)
2021-05-17 03:07:05 +00:00
let blk3 = EthBlock(header: header, txs: body.transactions, uncles: body.uncles)
let bytes3 = rlp.encode(blk3)
check blk1 == blk3
check bytes1 == bytes3
proc suite1() =
suite "rlp encoding":
test "receipt roundtrip":
let a = Receipt(
receiptType: LegacyReceipt,
isHash: false,
status: false,
cumulativeGasUsed: 51000
)
let hash = rlpHash(a)
let b = Receipt(
receiptType: LegacyReceipt,
isHash: true,
hash: hash,
cumulativeGasUsed: 21000
)
let abytes = rlp.encode(a)
let bbytes = rlp.encode(b)
let aa = rlp.decode(abytes, Receipt)
let bb = rlp.decode(bbytes, Receipt)
check aa == a
check bb == b
2019-02-05 10:10:36 +00:00
test "EIP 2930 receipt":
let a = Receipt(
receiptType: Eip2930Receipt,
status: true
)
2019-02-05 10:10:36 +00:00
let b = Receipt(
receiptType: Eip2930Receipt,
status: false,
cumulativeGasUsed: 21000
)
2019-02-05 10:10:36 +00:00
let abytes = rlp.encode(a)
let bbytes = rlp.encode(b)
let aa = rlp.decode(abytes, Receipt)
let bb = rlp.decode(bbytes, Receipt)
check aa == a
check bb == b
2019-02-05 10:10:36 +00:00
test "EIP 4895 roundtrip":
let a = Withdrawal(
index: 1,
validatorIndex: 2,
address: EthAddress [
0.byte, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19],
amount: 4)
let abytes = rlp.encode(a)
let aa = rlp.decode(abytes, Withdrawal)
check aa == a
proc suite2() =
suite "eip 2718 transaction":
for i in 0..<10:
loadFile(i)
2019-02-05 10:10:36 +00:00
test "rlp roundtrip EIP1559 / EIP4895 / EIP4844":
proc doTest(h: BlockHeader) =
let xy = rlp.encode(h)
let hh = rlp.decode(xy, BlockHeader)
check h == hh
var h: BlockHeader
doTest h
# EIP-1559
h.fee = some 1234.u256
doTest h
# EIP-4895
h.withdrawalsRoot = some Hash256.fromHex(
"0x7a64245f7f95164f6176d90bd4903dbdd3e5433d555dd1385e81787f9672c588")
doTest h
# EIP-4844
2023-07-28 03:19:00 +00:00
h.blobGasUsed = some 1234'u64
h.excessBlobGas = some 1234'u64
doTest h
suite1()
suite2()