Skip to content

Commit f639978

Browse files
committed
test: Add max_weight_to_satisfy test
1 parent 7c5f3dc commit f639978

File tree

3 files changed

+88
-11
lines changed

3 files changed

+88
-11
lines changed

src/descriptor/bare.rs

+60
Original file line numberDiff line numberDiff line change
@@ -410,3 +410,63 @@ where
410410
}
411411
}
412412
}
413+
414+
#[cfg(test)]
415+
mod tests {
416+
use std::str::FromStr;
417+
418+
use crate::interpreter::inner::{Inner, PubkeyType};
419+
use crate::interpreter::BitcoinKey;
420+
use crate::miniscript::context::ScriptContextError::UncompressedKeysNotAllowed;
421+
use crate::Error::{ContextError, Unexpected};
422+
use crate::Interpreter;
423+
424+
fn build_interpreter<'txin>(pk_type: PubkeyType) -> Interpreter<'txin> {
425+
let pk = bitcoin::PublicKey::from_str("042e58afe51f9ed8ad3cc7897f634d881fdbe49a81564629ded8156bebd2ffd1af191923a2964c177f5b5923ae500fca49e99492d534aa3759d6b25a8bc971b133").unwrap();
426+
let bk = BitcoinKey::Fullkey(pk);
427+
428+
let inner = Inner::PublicKey(bk, pk_type);
429+
let stack = crate::interpreter::stack::Stack::from(vec![]);
430+
let script_code: Option<bitcoin::ScriptBuf> = None; // can get from txin
431+
let sequence = bitcoin::Sequence::ZERO; // can get from txin
432+
let lock_time = bitcoin::absolute::LockTime::ZERO;
433+
434+
Interpreter { inner, stack, script_code, sequence, lock_time }
435+
}
436+
437+
#[test]
438+
fn max_weight_to_satisfy_by_key_type() {
439+
// Pk
440+
let max_weight = build_interpreter(PubkeyType::Pk)
441+
.inferred_descriptor()
442+
.unwrap()
443+
.max_weight_to_satisfy()
444+
.unwrap();
445+
assert_eq!(max_weight.to_wu(), 292);
446+
447+
// Pkh
448+
let max_weight = build_interpreter(PubkeyType::Pkh)
449+
.inferred_descriptor()
450+
.unwrap()
451+
.max_weight_to_satisfy()
452+
.unwrap();
453+
assert_eq!(max_weight.to_wu(), 556);
454+
455+
// Wpkh
456+
let e = build_interpreter(PubkeyType::Wpkh).inferred_descriptor();
457+
assert_eq!(e, Err(ContextError(UncompressedKeysNotAllowed)));
458+
459+
// ShWpkh
460+
let e = build_interpreter(PubkeyType::ShWpkh).inferred_descriptor();
461+
assert_eq!(e, Err(ContextError(UncompressedKeysNotAllowed)));
462+
463+
// Tr
464+
let e = build_interpreter(PubkeyType::Tr).inferred_descriptor();
465+
assert_eq!(
466+
e,
467+
Err(Unexpected(
468+
"rawtr_not_supported_yet(1 args) while parsing Miniscript".to_string()
469+
))
470+
);
471+
}
472+
}

src/interpreter/inner.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -54,26 +54,36 @@ fn script_from_stack_elem<Ctx: ScriptContext>(
5454
/// Helper type to indicate the origin of the bare pubkey that the interpereter uses
5555
#[derive(Copy, Clone, PartialEq, Eq, Debug, Hash)]
5656
pub enum PubkeyType {
57+
/// TODO
5758
Pk,
59+
/// TODO
5860
Pkh,
61+
/// TODO
5962
Wpkh,
63+
/// TODO
6064
ShWpkh,
65+
/// TODO
6166
Tr, // Key Spend
6267
}
6368

6469
/// Helper type to indicate the origin of the bare miniscript that the interpereter uses
6570
#[derive(Copy, Clone, PartialEq, Eq, Debug, Hash)]
6671
pub enum ScriptType {
72+
/// TODO
6773
Bare,
74+
/// TODO
6875
Sh,
76+
/// TODO
6977
Wsh,
78+
/// TODO
7079
ShWsh,
80+
/// TODO
7181
Tr, // Script Spend
7282
}
7383

7484
/// Structure representing a script under evaluation as a Miniscript
7585
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
76-
pub(super) enum Inner {
86+
pub enum Inner {
7787
/// The script being evaluated is a simple public key check (pay-to-pk,
7888
/// pay-to-pkhash or pay-to-witness-pkhash)
7989
// Technically, this allows representing a (XonlyKey, Sh) output but we make sure

src/interpreter/mod.rs

+17-10
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ use crate::prelude::*;
2020
use crate::{hash256, Descriptor, Miniscript, Terminal, ToPublicKey};
2121

2222
mod error;
23-
mod inner;
24-
mod stack;
23+
/// TODO
24+
pub mod inner;
25+
/// TODO
26+
pub mod stack;
2527

2628
pub use self::error::Error;
2729
use self::error::PkEvalErrInner;
@@ -30,13 +32,17 @@ use crate::MiniscriptKey;
3032

3133
/// An iterable Miniscript-structured representation of the spending of a coin
3234
pub struct Interpreter<'txin> {
33-
inner: inner::Inner,
34-
stack: Stack<'txin>,
35+
/// TODO
36+
pub inner: inner::Inner,
37+
/// TODO
38+
pub stack: Stack<'txin>,
3539
/// For non-Taproot spends, the scriptCode; for Taproot script-spends, this
3640
/// is the leaf script; for key-spends it is `None`.
37-
script_code: Option<bitcoin::ScriptBuf>,
38-
sequence: Sequence,
39-
lock_time: absolute::LockTime,
41+
pub script_code: Option<bitcoin::ScriptBuf>,
42+
/// TODO
43+
pub sequence: Sequence,
44+
/// TODO
45+
pub lock_time: absolute::LockTime,
4046
}
4147

4248
// A type representing functions for checking signatures that accept both
@@ -84,10 +90,11 @@ impl KeySigPair {
8490
// require changing Miniscript struct to three generics Miniscript<Pk, Pkh, Ctx> and bound on
8591
// all of the methods of Miniscript to ensure that Pkh = Pk::Hash
8692
#[derive(Hash, Eq, Ord, PartialEq, PartialOrd, Clone, Copy, Debug)]
87-
enum BitcoinKey {
88-
// Full key
93+
/// TODO
94+
pub enum BitcoinKey {
95+
/// Full key
8996
Fullkey(bitcoin::PublicKey),
90-
// Xonly key
97+
/// Xonly key
9198
XOnlyPublicKey(bitcoin::key::XOnlyPublicKey),
9299
}
93100

0 commit comments

Comments
 (0)