forked from rust-bitcoin/rust-miniscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for running integration tests via cargo test
Future commits will remove the hacky integration test setup. There are still some annoying warnings present for ununsed functions when they are really used. rust-lang/rust#46379 Disambiguiate rand feature with dev dependancy https://users.rust-lang.org/t/features-and-dependencies-cannot-have-the-same-name/47746
- Loading branch information
1 parent
31b063f
commit 88bf2c7
Showing
5 changed files
with
991 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
extern crate miniscript; | ||
|
||
use bitcoind::bitcoincore_rpc::RpcApi; | ||
use bitcoind::BitcoinD; | ||
use miniscript::bitcoin; | ||
|
||
pub mod test_util; | ||
|
||
// Launch an instance of bitcoind with | ||
pub fn setup() -> BitcoinD { | ||
let exe_path = bitcoind::exe_path().unwrap(); | ||
let bitcoind = bitcoind::BitcoinD::new(exe_path).unwrap(); | ||
let cl = &bitcoind.client; | ||
// generate to an address by the wallet. And wait for funds to mature | ||
let addr = cl.get_new_address(None, None).unwrap(); | ||
let blks = cl.generate_to_address(101, &addr).unwrap(); | ||
assert_eq!(blks.len(), 101); | ||
|
||
assert_eq!( | ||
cl.get_balance(Some(1) /*min conf*/, None).unwrap(), | ||
bitcoin::Amount::from_sat(100_000_000 * 50) | ||
); | ||
bitcoind | ||
} | ||
|
||
#[test] | ||
fn test_setup() { | ||
setup(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,308 @@ | ||
//! # Miniscript integration test file format | ||
//! | ||
//! This file has custom parsing for miniscripts that enables satisfier to spend transaction | ||
//! | ||
//! K : Compressed key available | ||
//! K!: Compressed key with corresponding secret key unknown | ||
//! X: X-only key available | ||
//! X!: X-only key with corresponding secret key unknown | ||
//! | ||
//! Example: | ||
//! pk(K1)/pkh(X1)/multi(n,...K3,...) represents a compressed key 'K1'/(X-only key 'X1') whose private key in known by the wallet | ||
//! pk(K2!)/pkh(K3!)/multi(n,...K5!,...) represents a key 'K' whose private key is NOT known to the test wallet | ||
//! sha256(H)/hash256(H)/ripemd160(H)/hash160(H) is hash node whose preimage is known to wallet | ||
//! sha256(H!)/hash256(H!)/ripemd160(H!)/hash160(H!) is hash node whose preimage is *NOT* known to wallet | ||
//! timelocks are taken from the transaction value. | ||
//! | ||
//! The keys/hashes are automatically translated so that the tests knows how to satisfy things that don't end with ! | ||
//! | ||
use std::str::FromStr; | ||
|
||
use actual_rand as rand; | ||
use bitcoin::hashes::hex::ToHex; | ||
use bitcoin::hashes::{hash160, ripemd160, sha256, sha256d, Hash}; | ||
use bitcoin::secp256k1; | ||
use miniscript::descriptor::{SinglePub, SinglePubKey}; | ||
use miniscript::{Descriptor, DescriptorPublicKey, Miniscript, ScriptContext, TranslatePk}; | ||
use rand::RngCore; | ||
|
||
#[derive(Clone, Debug)] | ||
pub struct PubData { | ||
pub pks: Vec<bitcoin::PublicKey>, | ||
pub x_only_pks: Vec<bitcoin::XOnlyPublicKey>, | ||
pub sha256: sha256::Hash, | ||
pub hash256: sha256d::Hash, | ||
pub ripemd160: ripemd160::Hash, | ||
pub hash160: hash160::Hash, | ||
} | ||
|
||
#[derive(Debug, Clone)] | ||
pub struct SecretData { | ||
pub sks: Vec<bitcoin::secp256k1::SecretKey>, | ||
pub x_only_keypairs: Vec<bitcoin::KeyPair>, | ||
pub sha256_pre: [u8; 32], | ||
pub hash256_pre: [u8; 32], | ||
pub ripemd160_pre: [u8; 32], | ||
pub hash160_pre: [u8; 32], | ||
} | ||
#[derive(Debug, Clone)] | ||
pub struct TestData { | ||
pub pubdata: PubData, | ||
pub secretdata: SecretData, | ||
} | ||
|
||
// Setup (sk, pk) pairs | ||
fn setup_keys( | ||
n: usize, | ||
) -> ( | ||
Vec<bitcoin::secp256k1::SecretKey>, | ||
Vec<miniscript::bitcoin::PublicKey>, | ||
Vec<bitcoin::KeyPair>, | ||
Vec<bitcoin::XOnlyPublicKey>, | ||
) { | ||
let secp_sign = secp256k1::Secp256k1::signing_only(); | ||
let mut sk = [0; 32]; | ||
let mut sks = vec![]; | ||
let mut pks = vec![]; | ||
for i in 1..n + 1 { | ||
sk[0] = i as u8; | ||
sk[1] = (i >> 8) as u8; | ||
sk[2] = (i >> 16) as u8; | ||
|
||
let sk = secp256k1::SecretKey::from_slice(&sk[..]).expect("secret key"); | ||
let pk = miniscript::bitcoin::PublicKey { | ||
inner: secp256k1::PublicKey::from_secret_key(&secp_sign, &sk), | ||
compressed: true, | ||
}; | ||
pks.push(pk); | ||
sks.push(sk); | ||
} | ||
|
||
let mut x_only_keypairs = vec![]; | ||
let mut x_only_pks = vec![]; | ||
|
||
for i in 0..n { | ||
let keypair = bitcoin::KeyPair::from_secret_key(&secp_sign, sks[i]); | ||
let xpk = bitcoin::XOnlyPublicKey::from_keypair(&keypair); | ||
x_only_keypairs.push(keypair); | ||
x_only_pks.push(xpk); | ||
} | ||
(sks, pks, x_only_keypairs, x_only_pks) | ||
} | ||
|
||
impl TestData { | ||
// generate a fixed data for n keys | ||
pub(crate) fn new_fixed_data(n: usize) -> Self { | ||
let (sks, pks, x_only_keypairs, x_only_pks) = setup_keys(n); | ||
let sha256_pre = [0x12 as u8; 32]; | ||
let sha256 = sha256::Hash::hash(&sha256_pre); | ||
let hash256_pre = [0x34 as u8; 32]; | ||
let hash256 = sha256d::Hash::hash(&hash256_pre); | ||
let hash160_pre = [0x56 as u8; 32]; | ||
let hash160 = hash160::Hash::hash(&hash160_pre); | ||
let ripemd160_pre = [0x78 as u8; 32]; | ||
let ripemd160 = ripemd160::Hash::hash(&ripemd160_pre); | ||
|
||
let pubdata = PubData { | ||
pks, | ||
sha256, | ||
hash256, | ||
ripemd160, | ||
hash160, | ||
x_only_pks, | ||
}; | ||
let secretdata = SecretData { | ||
sks, | ||
sha256_pre, | ||
hash256_pre, | ||
ripemd160_pre, | ||
hash160_pre, | ||
x_only_keypairs, | ||
}; | ||
Self { | ||
pubdata, | ||
secretdata, | ||
} | ||
} | ||
} | ||
|
||
/// Obtain an insecure random public key with unknown secret key for testing | ||
pub fn random_pk(mut seed: u8) -> bitcoin::PublicKey { | ||
loop { | ||
let mut data = [0; 33]; | ||
for byte in &mut data[..] { | ||
*byte = seed; | ||
// totally a rng | ||
seed = seed.wrapping_mul(41).wrapping_add(53); | ||
} | ||
data[0] = 2 + (data[0] >> 7); | ||
if let Ok(key) = bitcoin::PublicKey::from_slice(&data[..33]) { | ||
return key; | ||
} | ||
} | ||
} | ||
|
||
/// Parse an insane miniscript into a miniscript with the format described above at file header | ||
pub fn parse_insane_ms<Ctx: ScriptContext>( | ||
ms: &str, | ||
pubdata: &PubData, | ||
) -> Miniscript<DescriptorPublicKey, Ctx> { | ||
let ms = subs_hash_frag(ms, pubdata); | ||
let ms = | ||
Miniscript::<String, Ctx>::from_str_insane(&ms).expect("only parsing valid minsicripts"); | ||
let mut i = 0; | ||
let mut j = pubdata.pks.len(); | ||
let ms = ms.translate_pk_infallible( | ||
&mut |pk_str: &String| { | ||
let avail = !pk_str.ends_with("!"); | ||
if avail { | ||
i = i + 1; | ||
if pk_str.starts_with("K") { | ||
DescriptorPublicKey::Single(SinglePub { | ||
origin: None, | ||
key: SinglePubKey::FullKey(pubdata.pks[i]), | ||
}) | ||
} else if pk_str.starts_with("X") { | ||
DescriptorPublicKey::Single(SinglePub { | ||
origin: None, | ||
key: SinglePubKey::XOnly(pubdata.x_only_pks[i]), | ||
}) | ||
} else { | ||
// Parse any other keys as known to allow compatibility with existing tests | ||
DescriptorPublicKey::Single(SinglePub { | ||
origin: None, | ||
key: SinglePubKey::FullKey(pubdata.pks[i]), | ||
}) | ||
} | ||
} else { | ||
DescriptorPublicKey::Single(SinglePub { | ||
origin: None, | ||
key: SinglePubKey::FullKey(random_pk(59)), | ||
}) | ||
} | ||
}, | ||
&mut |pk_str: &String| { | ||
let avail = !pk_str.ends_with("!"); | ||
if avail { | ||
j = j - 1; | ||
if pk_str.starts_with("K") { | ||
DescriptorPublicKey::Single(SinglePub { | ||
origin: None, | ||
key: SinglePubKey::FullKey(pubdata.pks[j]), | ||
}) | ||
} else if pk_str.starts_with("X") { | ||
DescriptorPublicKey::Single(SinglePub { | ||
origin: None, | ||
key: SinglePubKey::XOnly(pubdata.x_only_pks[j]), | ||
}) | ||
} else { | ||
// Parse any other keys as known to allow compatibility with existing tests | ||
DescriptorPublicKey::Single(SinglePub { | ||
origin: None, | ||
key: SinglePubKey::FullKey(pubdata.pks[j]), | ||
}) | ||
} | ||
} else { | ||
DescriptorPublicKey::Single(SinglePub { | ||
origin: None, | ||
key: SinglePubKey::FullKey(random_pk(59)), | ||
}) | ||
} | ||
}, | ||
); | ||
ms | ||
} | ||
|
||
pub fn parse_test_desc(desc: &str, pubdata: &PubData) -> Descriptor<DescriptorPublicKey> { | ||
let desc = subs_hash_frag(desc, pubdata); | ||
let desc = | ||
Descriptor::<String>::from_str(&desc).expect("only parsing valid and sane descriptors"); | ||
let mut i = 0; | ||
let mut j = pubdata.pks.len(); | ||
let desc: Result<_, ()> = desc.translate_pk( | ||
&mut |pk_str: &'_ String| { | ||
let avail = !pk_str.ends_with("!"); | ||
if avail { | ||
i = i + 1; | ||
if pk_str.starts_with("K") { | ||
Ok(DescriptorPublicKey::Single(SinglePub { | ||
origin: None, | ||
key: SinglePubKey::FullKey(pubdata.pks[i]), | ||
})) | ||
} else if pk_str.starts_with("X") { | ||
Ok(DescriptorPublicKey::Single(SinglePub { | ||
origin: None, | ||
key: SinglePubKey::XOnly(pubdata.x_only_pks[i]), | ||
})) | ||
} else { | ||
panic!("Key must start with either K or X") | ||
} | ||
} else { | ||
Ok(DescriptorPublicKey::Single(SinglePub { | ||
origin: None, | ||
key: SinglePubKey::FullKey(random_pk(59)), | ||
})) | ||
} | ||
}, | ||
&mut |pkh_str: &'_ String| { | ||
let avail = !pkh_str.ends_with("!"); | ||
if avail { | ||
j = j - 1; | ||
if pkh_str.starts_with("K") { | ||
Ok(DescriptorPublicKey::Single(SinglePub { | ||
origin: None, | ||
key: SinglePubKey::FullKey(pubdata.pks[j]), | ||
})) | ||
} else if pkh_str.starts_with("X") { | ||
Ok(DescriptorPublicKey::Single(SinglePub { | ||
origin: None, | ||
key: SinglePubKey::XOnly(pubdata.x_only_pks[j]), | ||
})) | ||
} else { | ||
panic!("Key must start with either K or X") | ||
} | ||
} else { | ||
Ok(DescriptorPublicKey::Single(SinglePub { | ||
origin: None, | ||
key: SinglePubKey::FullKey(random_pk(61)), | ||
})) | ||
} | ||
}, | ||
); | ||
desc.expect("Translate must succeed") | ||
} | ||
|
||
// substitute hash fragments in the string as the per rules | ||
fn subs_hash_frag(ms: &str, pubdata: &PubData) -> String { | ||
let ms = ms.replace( | ||
"sha256(H)", | ||
&format!("sha256({})", &pubdata.sha256.to_hex()), | ||
); | ||
let ms = ms.replace( | ||
"hash256(H)", | ||
&format!("hash256({})", &pubdata.hash256.into_inner().to_hex()), | ||
); | ||
let ms = ms.replace( | ||
"ripemd160(H)", | ||
&format!("ripemd160({})", &pubdata.ripemd160.to_hex()), | ||
); | ||
let ms = ms.replace( | ||
"hash160(H)", | ||
&format!("hash160({})", &pubdata.hash160.to_hex()), | ||
); | ||
|
||
let mut rand_hash32 = [0u8; 32]; | ||
rand::thread_rng().fill_bytes(&mut rand_hash32); | ||
|
||
let mut rand_hash20 = [0u8; 20]; | ||
rand::thread_rng().fill_bytes(&mut rand_hash20); | ||
let ms = ms.replace("sha256(H!)", &format!("sha256({})", rand_hash32.to_hex())); | ||
let ms = ms.replace("hash256(H!)", &format!("hash256({})", rand_hash32.to_hex())); | ||
let ms = ms.replace( | ||
"ripemd160(H!)", | ||
&format!("ripemd160({})", rand_hash20.to_hex()), | ||
); | ||
let ms = ms.replace("hash160(H!)", &format!("hash160({})", rand_hash20.to_hex())); | ||
ms | ||
} |
Oops, something went wrong.