-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fuzz: clean up all fuzz targets, remove
honggfuzz
feature
- Loading branch information
Showing
9 changed files
with
77 additions
and
222 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
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 |
---|---|---|
@@ -1,60 +1,32 @@ | ||
extern crate elements_miniscript as miniscript; | ||
|
||
use miniscript::DescriptorPublicKey; | ||
use std::str::FromStr; | ||
|
||
use miniscript::DescriptorPublicKey; | ||
|
||
fn do_test(data: &[u8]) { | ||
let data_str = String::from_utf8_lossy(data); | ||
if let Ok(dpk) = DescriptorPublicKey::from_str(&data_str) { | ||
let output = dpk.to_string(); | ||
let _output = dpk.to_string(); | ||
// assert_eq!(data_str.to_lowercase(), output.to_lowercase()); | ||
} | ||
} | ||
|
||
#[cfg(feature = "afl")] | ||
extern crate afl; | ||
#[cfg(feature = "afl")] | ||
fn main() { | ||
afl::read_stdio_bytes(|data| { | ||
do_test(&data); | ||
}); | ||
} | ||
|
||
#[cfg(feature = "honggfuzz")] | ||
#[macro_use] | ||
extern crate honggfuzz; | ||
#[cfg(feature = "honggfuzz")] | ||
fn main() { | ||
loop { | ||
fuzz!(|data| { | ||
honggfuzz::fuzz!(|data| { | ||
do_test(data); | ||
}); | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
fn extend_vec_from_hex(hex: &str, out: &mut Vec<u8>) { | ||
let mut b = 0; | ||
for (idx, c) in hex.as_bytes().iter().enumerate() { | ||
b <<= 4; | ||
match *c { | ||
b'A'...b'F' => b |= c - b'A' + 10, | ||
b'a'...b'f' => b |= c - b'a' + 10, | ||
b'0'...b'9' => b |= c - b'0', | ||
_ => panic!("Bad hex"), | ||
} | ||
if (idx & 1) == 1 { | ||
out.push(b); | ||
b = 0; | ||
} | ||
} | ||
} | ||
use miniscript::elements::hex::FromHex; | ||
|
||
#[test] | ||
fn duplicate_crash() { | ||
let mut a = Vec::new(); | ||
extend_vec_from_hex("6d75736967", &mut a); | ||
super::do_test(&a); | ||
let hex = Vec::<u8>::from_hex("00").unwrap(); | ||
super::do_test(&hex); | ||
} | ||
} |
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
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
Oops, something went wrong.