mirror of https://github.com/waku-org/nwaku.git
34 lines
872 B
Nim
34 lines
872 B
Nim
import
|
|
std/[unittest, options, tables, sets],
|
|
chronos, chronicles,
|
|
../../waku/v2/protocol/waku_swap,
|
|
../../waku/v2/waku_types,
|
|
../test_helpers, ./utils
|
|
|
|
procSuite "Waku SWAP Accounting":
|
|
test "Handshake Encode/Decode":
|
|
let
|
|
beneficiary = @[byte 0, 1, 2]
|
|
handshake = Handshake(beneficiary: beneficiary)
|
|
pb = handshake.encode()
|
|
|
|
let decodedHandshake = Handshake.init(pb.buffer)
|
|
|
|
check:
|
|
decodedHandshake.isErr == false
|
|
decodedHandshake.get().beneficiary == beneficiary
|
|
|
|
test "Cheque Encode/Decode":
|
|
let
|
|
amount = 1'u32
|
|
date = 9000'u32
|
|
beneficiary = @[byte 0, 1, 2]
|
|
cheque = Cheque(beneficiary: beneficiary, amount: amount, date: date)
|
|
pb = cheque.encode()
|
|
|
|
let decodedCheque = Cheque.init(pb.buffer)
|
|
|
|
check:
|
|
decodedCheque.isErr == false
|
|
decodedCheque.get() == cheque
|