Skip to content

Commit e0650ab

Browse files
committed
Merge #417: Add support for writing integration tests that fail
ab79593 Use DescError instead of miniscript::Error (kanishk779) b446ced Add support for writing integration tests that fail (kanishk779) Pull request description: - Earlier we did not have the ability to write integration tests that fail. - The default behaviour was to panic and stop the execution of the program. - But in addition to verifying that the code works in the correct cases, we must also ensure that it should generate an appropriate error in incorrect cases. - Some functions are modified to return Result<T, E> to support this feature. - Four failing tests have also been added (tests 10-13) to demonstrate this. ACKs for top commit: sanket1729: ACK ab79593 Tree-SHA512: 2f0800194c06325cd32fc81988f88989d412c4d0164d8d3f2105068a16db22a3e25fcdefe9f1c7736739faf765fb1e8adc850f9c524e7dec7c89af4dcca22e47
2 parents 0662d2e + ab79593 commit e0650ab

File tree

2 files changed

+82
-46
lines changed

2 files changed

+82
-46
lines changed

tests/setup/test_util.rs

+7-6
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,9 @@ use bitcoin::hashes::{hash160, ripemd160, sha256, sha256d, Hash};
2525
use bitcoin::secp256k1;
2626
use miniscript::descriptor::{SinglePub, SinglePubKey};
2727
use miniscript::{
28-
Descriptor, DescriptorPublicKey, Miniscript, ScriptContext, TranslatePk, Translator,
28+
Descriptor, DescriptorPublicKey, Error, Miniscript, ScriptContext, TranslatePk, Translator,
2929
};
3030
use rand::RngCore;
31-
3231
#[derive(Clone, Debug)]
3332
pub struct PubData {
3433
pub pks: Vec<bitcoin::PublicKey>,
@@ -248,13 +247,15 @@ impl<'a> Translator<String, DescriptorPublicKey, ()> for StrTranslatorLoose<'a>
248247

249248
#[allow(dead_code)]
250249
// https://github.com/rust-lang/rust/issues/46379. The code is pub fn and integration test, but still shows warnings
251-
pub fn parse_test_desc(desc: &str, pubdata: &PubData) -> Descriptor<DescriptorPublicKey> {
250+
pub fn parse_test_desc(
251+
desc: &str,
252+
pubdata: &PubData,
253+
) -> Result<Descriptor<DescriptorPublicKey>, Error> {
252254
let desc = subs_hash_frag(desc, pubdata);
253-
let desc =
254-
Descriptor::<String>::from_str(&desc).expect("only parsing valid and sane descriptors");
255+
let desc = Descriptor::<String>::from_str(&desc)?;
255256
let mut translator = StrDescPubKeyTranslator(0, pubdata);
256257
let desc: Result<_, ()> = desc.translate_pk(&mut translator);
257-
desc.expect("Translate must succeed")
258+
Ok(desc.expect("Translate must succeed"))
258259
}
259260

260261
// substitute hash fragments in the string as the per rules

0 commit comments

Comments
 (0)