from chia_rs import run_chia_program, Program
def test_raise() -> None:
try:
run_chia_program(
bytes.fromhex("ff08ffff0186666f6f62617280"), bytes.fromhex("80"), 100000, 0
)
assert False
except ValueError as e:
assert f"{e}" == "('clvm raise', '86666f6f626172')"
def test_raise_program() -> None:
try:
prg = Program.fromhex("ff08ffff0186666f6f62617280")
prg.run_with_cost(100000, [])
assert False
except ValueError as e:
assert f"{e}" == "('clvm raise', '86666f6f626172')"
def test_repr() -> None:
temp = Program.to([8, (1, "foo")])
assert f"{temp}" == "Program(ff08ffff0183666f6f80)"
try:
run_chia_program(bytes(temp), bytes.fromhex("00"), 1100000000, 0)
assert False
except ValueError as e:
assert f"{e}" == "('clvm raise', '83666f6f')"