Skip to content

Commit 7db6ff6

Browse files
committed
Reintroduce snapshots for invalid TXIDs
1 parent b54dd79 commit 7db6ff6

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed

zebra-rpc/src/methods/tests/snapshot.rs

+7
Original file line numberDiff line numberDiff line change
@@ -451,6 +451,13 @@ async fn test_rpc_response_data_for_network(network: &Network) {
451451
settings.bind(|| insta::assert_json_snapshot!(format!("getrawtransaction_unknown_txid"), rsp));
452452
mempool.expect_no_requests().await;
453453

454+
// `getrawtransaction` with an invalid TXID
455+
let rsp = rpc
456+
.get_raw_transaction("aBadC0de".to_owned(), Some(1))
457+
.await;
458+
settings.bind(|| insta::assert_json_snapshot!(format!("getrawtransaction_invalid_txid"), rsp));
459+
mempool.expect_no_requests().await;
460+
454461
// `getaddresstxids`
455462
let get_address_tx_ids = rpc
456463
.get_address_tx_ids(GetAddressTxIdsRequest {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
source: zebra-rpc/src/methods/tests/snapshot.rs
3+
expression: rsp
4+
snapshot_kind: text
5+
---
6+
{
7+
"Err": {
8+
"code": -5,
9+
"message": "Invalid string length"
10+
}
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
source: zebra-rpc/src/methods/tests/snapshot.rs
3+
expression: rsp
4+
snapshot_kind: text
5+
---
6+
{
7+
"Err": {
8+
"code": -5,
9+
"message": "Invalid string length"
10+
}
11+
}

zebra-rpc/src/methods/tests/vectors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ async fn rpc_getrawtransaction() {
728728
let rpc_req = rpc.get_raw_transaction(tx.hash().encode_hex(), Some(0u8));
729729

730730
let (rsp, _) = futures::join!(rpc_req, mempool_req);
731-
let get_tx = rsp.expect("We should have a ");
731+
let get_tx = rsp.expect("we should have a `GetRawTransaction` struct");
732732

733733
if let GetRawTransaction::Raw(raw_tx) = get_tx {
734734
assert_eq!(raw_tx.as_ref(), tx.zcash_serialize_to_vec().unwrap());

0 commit comments

Comments
 (0)