// This file is auto-generated by gen_target.sh based on msg_target_template.txt // To modify it, modify msg_target_template.txt and run gen_target.sh instead. extern crate lightning; use lightning::ln::channelmonitor; use lightning::util::reset_rng_state; use lightning::util::ser::{Readable, Writer}; use std::io::Cursor; struct VecWriter(Vec); impl Writer for VecWriter { fn write_all(&mut self, buf: &[u8]) -> Result<(), ::std::io::Error> { self.0.extend_from_slice(buf); Ok(()) } fn size_hint(&mut self, size: usize) { self.0.reserve_exact(size); } } #[inline] pub fn do_test(data: &[u8]) { reset_rng_state(); if let Ok(monitor) = channelmonitor::ChannelMonitor::read(&mut Cursor::new(data)) { let mut w = VecWriter(Vec::new()); monitor.write_for_disk(&mut w).unwrap(); assert!(channelmonitor::ChannelMonitor::read(&mut Cursor::new(&w.0)).unwrap() == monitor); w.0.clear(); monitor.write_for_watchtower(&mut w).unwrap(); } } #[cfg(feature = "afl")] #[macro_use] extern crate afl; #[cfg(feature = "afl")] fn main() { fuzz!(|data| { do_test(data); }); } #[cfg(feature = "honggfuzz")] #[macro_use] extern crate honggfuzz; #[cfg(feature = "honggfuzz")] fn main() { loop { fuzz!(|data| { do_test(data); }); } } extern crate hex; #[cfg(test)] mod tests { #[test] fn duplicate_crash() { super::do_test(&::hex::decode("00").unwrap()); } }