diff options
author | Fabian Jahr <fjahr@protonmail.com> | 2024-05-24 12:18:02 +0200 |
---|---|---|
committer | Fabian Jahr <fjahr@protonmail.com> | 2024-05-24 18:44:05 +0200 |
commit | efc1b5be8a4696c0db19ba18316b2d4ed09e10f2 (patch) | |
tree | 09094d9b1f2613f130ba6343186c13706b5a6db2 /test | |
parent | 6b6084850b8c2ebcdbeecdb406e8732adaa6d23c (diff) |
test: Add coverage for txid coins count check when loading snapshot
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/feature_assumeutxo.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/feature_assumeutxo.py b/test/functional/feature_assumeutxo.py index 0b064aa32b..bc3b2d208d 100755 --- a/test/functional/feature_assumeutxo.py +++ b/test/functional/feature_assumeutxo.py @@ -130,7 +130,8 @@ class AssumeutxoTest(BitcoinTestFramework): cases = [ # (content, offset, wrong_hash, custom_message) [b"\xff" * 32, 0, "7d52155c9a9fdc4525b637ef6170568e5dad6fabd0b1fdbb9432010b8453095b", None], # wrong outpoint hash - [(2).to_bytes(1, "little"), 32, None, "[snapshot] bad snapshot data after deserializing 1 coins"], # wrong outpoint hash + [(2).to_bytes(1, "little"), 32, None, "[snapshot] bad snapshot data after deserializing 1 coins"], # wrong txid coins count + [b"\xfd\xff\xff", 32, None, "[snapshot] mismatch in coins count in snapshot metadata and actual snapshot data"], # txid coins count exceeds coins left [b"\x01", 33, "9f4d897031ab8547665b4153317ae2fdbf0130c7840b66427ebc48b881cb80ad", None], # wrong outpoint index [b"\x81", 34, "3da966ba9826fb6d2604260e01607b55ba44e1a5de298606b08704bc62570ea8", None], # wrong coin code VARINT [b"\x80", 34, "091e893b3ccb4334378709578025356c8bcb0a623f37c7c4e493133c988648e5", None], # another wrong coin code |