Update bitcoin crate to 0.29.0
[rust-lightning] / lightning / src / util / test_utils.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 use chain;
11 use chain::WatchedOutput;
12 use chain::chaininterface;
13 use chain::chaininterface::ConfirmationTarget;
14 use chain::chainmonitor;
15 use chain::chainmonitor::MonitorUpdateId;
16 use chain::channelmonitor;
17 use chain::channelmonitor::MonitorEvent;
18 use chain::transaction::OutPoint;
19 use chain::keysinterface;
20 use ln::features::{ChannelFeatures, InitFeatures};
21 use ln::{msgs, wire};
22 use ln::script::ShutdownScript;
23 use routing::scoring::FixedPenaltyScorer;
24 use util::enforcing_trait_impls::{EnforcingSigner, EnforcementState};
25 use util::events;
26 use util::logger::{Logger, Level, Record};
27 use util::ser::{Readable, ReadableArgs, Writer, Writeable};
28
29 use bitcoin::blockdata::constants::genesis_block;
30 use bitcoin::blockdata::transaction::{Transaction, TxOut};
31 use bitcoin::blockdata::script::{Builder, Script};
32 use bitcoin::blockdata::opcodes;
33 use bitcoin::blockdata::block::Block;
34 use bitcoin::network::constants::Network;
35 use bitcoin::hash_types::{BlockHash, Txid};
36
37 use bitcoin::secp256k1::{SecretKey, PublicKey, Secp256k1, ecdsa::Signature};
38 use bitcoin::secp256k1::ecdh::SharedSecret;
39 use bitcoin::secp256k1::ecdsa::RecoverableSignature;
40
41 use regex;
42
43 use io;
44 use prelude::*;
45 use core::time::Duration;
46 use sync::{Mutex, Arc};
47 use core::sync::atomic::{AtomicBool, AtomicUsize, Ordering};
48 use core::{cmp, mem};
49 use bitcoin::bech32::u5;
50 use chain::keysinterface::{InMemorySigner, Recipient, KeyMaterial};
51
52 #[cfg(feature = "std")]
53 use std::time::{SystemTime, UNIX_EPOCH};
54 use bitcoin::Sequence;
55
56 pub struct TestVecWriter(pub Vec<u8>);
57 impl Writer for TestVecWriter {
58         fn write_all(&mut self, buf: &[u8]) -> Result<(), io::Error> {
59                 self.0.extend_from_slice(buf);
60                 Ok(())
61         }
62 }
63
64 pub struct TestFeeEstimator {
65         pub sat_per_kw: Mutex<u32>,
66 }
67 impl chaininterface::FeeEstimator for TestFeeEstimator {
68         fn get_est_sat_per_1000_weight(&self, _confirmation_target: ConfirmationTarget) -> u32 {
69                 *self.sat_per_kw.lock().unwrap()
70         }
71 }
72
73 pub struct OnlyReadsKeysInterface {}
74 impl keysinterface::KeysInterface for OnlyReadsKeysInterface {
75         type Signer = EnforcingSigner;
76
77         fn get_node_secret(&self, _recipient: Recipient) -> Result<SecretKey, ()> { unreachable!(); }
78         fn ecdh(&self, _recipient: Recipient, _other_key: &PublicKey, _tweak: Option<&[u8; 32]>) -> Result<SharedSecret, ()> { unreachable!(); }
79         fn get_inbound_payment_key_material(&self) -> KeyMaterial { unreachable!(); }
80         fn get_destination_script(&self) -> Script { unreachable!(); }
81         fn get_shutdown_scriptpubkey(&self) -> ShutdownScript { unreachable!(); }
82         fn get_channel_signer(&self, _inbound: bool, _channel_value_satoshis: u64) -> EnforcingSigner { unreachable!(); }
83         fn get_secure_random_bytes(&self) -> [u8; 32] { [0; 32] }
84
85         fn read_chan_signer(&self, mut reader: &[u8]) -> Result<Self::Signer, msgs::DecodeError> {
86                 let dummy_sk = SecretKey::from_slice(&[42; 32]).unwrap();
87                 let inner: InMemorySigner = ReadableArgs::read(&mut reader, dummy_sk)?;
88                 let state = Arc::new(Mutex::new(EnforcementState::new()));
89
90                 Ok(EnforcingSigner::new_with_revoked(
91                         inner,
92                         state,
93                         false
94                 ))
95         }
96         fn sign_invoice(&self, _hrp_bytes: &[u8], _invoice_data: &[u5], _recipient: Recipient) -> Result<RecoverableSignature, ()> { unreachable!(); }
97 }
98
99 pub struct TestChainMonitor<'a> {
100         pub added_monitors: Mutex<Vec<(OutPoint, channelmonitor::ChannelMonitor<EnforcingSigner>)>>,
101         pub monitor_updates: Mutex<HashMap<[u8; 32], Vec<channelmonitor::ChannelMonitorUpdate>>>,
102         pub latest_monitor_update_id: Mutex<HashMap<[u8; 32], (OutPoint, u64, MonitorUpdateId)>>,
103         pub chain_monitor: chainmonitor::ChainMonitor<EnforcingSigner, &'a TestChainSource, &'a chaininterface::BroadcasterInterface, &'a TestFeeEstimator, &'a TestLogger, &'a chainmonitor::Persist<EnforcingSigner>>,
104         pub keys_manager: &'a TestKeysInterface,
105         /// If this is set to Some(), the next update_channel call (not watch_channel) must be a
106         /// ChannelForceClosed event for the given channel_id with should_broadcast set to the given
107         /// boolean.
108         pub expect_channel_force_closed: Mutex<Option<([u8; 32], bool)>>,
109 }
110 impl<'a> TestChainMonitor<'a> {
111         pub fn new(chain_source: Option<&'a TestChainSource>, broadcaster: &'a chaininterface::BroadcasterInterface, logger: &'a TestLogger, fee_estimator: &'a TestFeeEstimator, persister: &'a chainmonitor::Persist<EnforcingSigner>, keys_manager: &'a TestKeysInterface) -> Self {
112                 Self {
113                         added_monitors: Mutex::new(Vec::new()),
114                         monitor_updates: Mutex::new(HashMap::new()),
115                         latest_monitor_update_id: Mutex::new(HashMap::new()),
116                         chain_monitor: chainmonitor::ChainMonitor::new(chain_source, broadcaster, logger, fee_estimator, persister),
117                         keys_manager,
118                         expect_channel_force_closed: Mutex::new(None),
119                 }
120         }
121
122         pub fn complete_sole_pending_chan_update(&self, channel_id: &[u8; 32]) {
123                 let (outpoint, _, latest_update) = self.latest_monitor_update_id.lock().unwrap().get(channel_id).unwrap().clone();
124                 self.chain_monitor.channel_monitor_updated(outpoint, latest_update).unwrap();
125         }
126 }
127 impl<'a> chain::Watch<EnforcingSigner> for TestChainMonitor<'a> {
128         fn watch_channel(&self, funding_txo: OutPoint, monitor: channelmonitor::ChannelMonitor<EnforcingSigner>) -> Result<(), chain::ChannelMonitorUpdateErr> {
129                 // At every point where we get a monitor update, we should be able to send a useful monitor
130                 // to a watchtower and disk...
131                 let mut w = TestVecWriter(Vec::new());
132                 monitor.write(&mut w).unwrap();
133                 let new_monitor = <(BlockHash, channelmonitor::ChannelMonitor<EnforcingSigner>)>::read(
134                         &mut io::Cursor::new(&w.0), self.keys_manager).unwrap().1;
135                 assert!(new_monitor == monitor);
136                 self.latest_monitor_update_id.lock().unwrap().insert(funding_txo.to_channel_id(),
137                         (funding_txo, monitor.get_latest_update_id(), MonitorUpdateId::from_new_monitor(&monitor)));
138                 self.added_monitors.lock().unwrap().push((funding_txo, monitor));
139                 self.chain_monitor.watch_channel(funding_txo, new_monitor)
140         }
141
142         fn update_channel(&self, funding_txo: OutPoint, update: channelmonitor::ChannelMonitorUpdate) -> Result<(), chain::ChannelMonitorUpdateErr> {
143                 // Every monitor update should survive roundtrip
144                 let mut w = TestVecWriter(Vec::new());
145                 update.write(&mut w).unwrap();
146                 assert!(channelmonitor::ChannelMonitorUpdate::read(
147                                 &mut io::Cursor::new(&w.0)).unwrap() == update);
148
149                 self.monitor_updates.lock().unwrap().entry(funding_txo.to_channel_id()).or_insert(Vec::new()).push(update.clone());
150
151                 if let Some(exp) = self.expect_channel_force_closed.lock().unwrap().take() {
152                         assert_eq!(funding_txo.to_channel_id(), exp.0);
153                         assert_eq!(update.updates.len(), 1);
154                         if let channelmonitor::ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
155                                 assert_eq!(should_broadcast, exp.1);
156                         } else { panic!(); }
157                 }
158
159                 self.latest_monitor_update_id.lock().unwrap().insert(funding_txo.to_channel_id(),
160                         (funding_txo, update.update_id, MonitorUpdateId::from_monitor_update(&update)));
161                 let update_res = self.chain_monitor.update_channel(funding_txo, update);
162                 // At every point where we get a monitor update, we should be able to send a useful monitor
163                 // to a watchtower and disk...
164                 let monitor = self.chain_monitor.get_monitor(funding_txo).unwrap();
165                 w.0.clear();
166                 monitor.write(&mut w).unwrap();
167                 let new_monitor = <(BlockHash, channelmonitor::ChannelMonitor<EnforcingSigner>)>::read(
168                         &mut io::Cursor::new(&w.0), self.keys_manager).unwrap().1;
169                 assert!(new_monitor == *monitor);
170                 self.added_monitors.lock().unwrap().push((funding_txo, new_monitor));
171                 update_res
172         }
173
174         fn release_pending_monitor_events(&self) -> Vec<(OutPoint, Vec<MonitorEvent>, Option<PublicKey>)> {
175                 return self.chain_monitor.release_pending_monitor_events();
176         }
177 }
178
179 pub struct TestPersister {
180         pub update_ret: Mutex<Result<(), chain::ChannelMonitorUpdateErr>>,
181         /// If this is set to Some(), after the next return, we'll always return this until update_ret
182         /// is changed:
183         pub next_update_ret: Mutex<Option<Result<(), chain::ChannelMonitorUpdateErr>>>,
184         /// When we get an update_persisted_channel call with no ChannelMonitorUpdate, we insert the
185         /// MonitorUpdateId here.
186         pub chain_sync_monitor_persistences: Mutex<HashMap<OutPoint, HashSet<MonitorUpdateId>>>,
187         /// When we get an update_persisted_channel call *with* a ChannelMonitorUpdate, we insert the
188         /// MonitorUpdateId here.
189         pub offchain_monitor_updates: Mutex<HashMap<OutPoint, HashSet<MonitorUpdateId>>>,
190 }
191 impl TestPersister {
192         pub fn new() -> Self {
193                 Self {
194                         update_ret: Mutex::new(Ok(())),
195                         next_update_ret: Mutex::new(None),
196                         chain_sync_monitor_persistences: Mutex::new(HashMap::new()),
197                         offchain_monitor_updates: Mutex::new(HashMap::new()),
198                 }
199         }
200
201         pub fn set_update_ret(&self, ret: Result<(), chain::ChannelMonitorUpdateErr>) {
202                 *self.update_ret.lock().unwrap() = ret;
203         }
204
205         pub fn set_next_update_ret(&self, next_ret: Option<Result<(), chain::ChannelMonitorUpdateErr>>) {
206                 *self.next_update_ret.lock().unwrap() = next_ret;
207         }
208 }
209 impl<Signer: keysinterface::Sign> chainmonitor::Persist<Signer> for TestPersister {
210         fn persist_new_channel(&self, _funding_txo: OutPoint, _data: &channelmonitor::ChannelMonitor<Signer>, _id: MonitorUpdateId) -> Result<(), chain::ChannelMonitorUpdateErr> {
211                 let ret = self.update_ret.lock().unwrap().clone();
212                 if let Some(next_ret) = self.next_update_ret.lock().unwrap().take() {
213                         *self.update_ret.lock().unwrap() = next_ret;
214                 }
215                 ret
216         }
217
218         fn update_persisted_channel(&self, funding_txo: OutPoint, update: &Option<channelmonitor::ChannelMonitorUpdate>, _data: &channelmonitor::ChannelMonitor<Signer>, update_id: MonitorUpdateId) -> Result<(), chain::ChannelMonitorUpdateErr> {
219                 let ret = self.update_ret.lock().unwrap().clone();
220                 if let Some(next_ret) = self.next_update_ret.lock().unwrap().take() {
221                         *self.update_ret.lock().unwrap() = next_ret;
222                 }
223                 if update.is_none() {
224                         self.chain_sync_monitor_persistences.lock().unwrap().entry(funding_txo).or_insert(HashSet::new()).insert(update_id);
225                 } else {
226                         self.offchain_monitor_updates.lock().unwrap().entry(funding_txo).or_insert(HashSet::new()).insert(update_id);
227                 }
228                 ret
229         }
230 }
231
232 pub struct TestBroadcaster {
233         pub txn_broadcasted: Mutex<Vec<Transaction>>,
234         pub blocks: Arc<Mutex<Vec<(Block, u32)>>>,
235 }
236
237 impl TestBroadcaster {
238         pub fn new(blocks: Arc<Mutex<Vec<(Block, u32)>>>) -> TestBroadcaster {
239                 TestBroadcaster { txn_broadcasted: Mutex::new(Vec::new()), blocks }
240         }
241 }
242
243 impl chaininterface::BroadcasterInterface for TestBroadcaster {
244         fn broadcast_transaction(&self, tx: &Transaction) {
245                 let lock_time = tx.lock_time.0;
246                 assert!(lock_time < 1_500_000_000);
247                 if lock_time > self.blocks.lock().unwrap().len() as u32 + 1 && lock_time < 500_000_000 {
248                         for inp in tx.input.iter() {
249                                 if inp.sequence != Sequence::MAX {
250                                         panic!("We should never broadcast a transaction before its locktime ({})!", tx.lock_time);
251                                 }
252                         }
253                 }
254                 self.txn_broadcasted.lock().unwrap().push(tx.clone());
255         }
256 }
257
258 pub struct TestChannelMessageHandler {
259         pub pending_events: Mutex<Vec<events::MessageSendEvent>>,
260         expected_recv_msgs: Mutex<Option<Vec<wire::Message<()>>>>,
261 }
262
263 impl TestChannelMessageHandler {
264         pub fn new() -> Self {
265                 TestChannelMessageHandler {
266                         pending_events: Mutex::new(Vec::new()),
267                         expected_recv_msgs: Mutex::new(None),
268                 }
269         }
270
271         #[cfg(test)]
272         pub(crate) fn expect_receive_msg(&self, ev: wire::Message<()>) {
273                 let mut expected_msgs = self.expected_recv_msgs.lock().unwrap();
274                 if expected_msgs.is_none() { *expected_msgs = Some(Vec::new()); }
275                 expected_msgs.as_mut().unwrap().push(ev);
276         }
277
278         fn received_msg(&self, _ev: wire::Message<()>) {
279                 let mut msgs = self.expected_recv_msgs.lock().unwrap();
280                 if msgs.is_none() { return; }
281                 assert!(!msgs.as_ref().unwrap().is_empty(), "Received message when we weren't expecting one");
282                 #[cfg(test)]
283                 assert_eq!(msgs.as_ref().unwrap()[0], _ev);
284                 msgs.as_mut().unwrap().remove(0);
285         }
286 }
287
288 impl Drop for TestChannelMessageHandler {
289         fn drop(&mut self) {
290                 let l = self.expected_recv_msgs.lock().unwrap();
291                 #[cfg(feature = "std")]
292                 {
293                         if !std::thread::panicking() {
294                                 assert!(l.is_none() || l.as_ref().unwrap().is_empty());
295                         }
296                 }
297         }
298 }
299
300 impl msgs::ChannelMessageHandler for TestChannelMessageHandler {
301         fn handle_open_channel(&self, _their_node_id: &PublicKey, _their_features: InitFeatures, msg: &msgs::OpenChannel) {
302                 self.received_msg(wire::Message::OpenChannel(msg.clone()));
303         }
304         fn handle_accept_channel(&self, _their_node_id: &PublicKey, _their_features: InitFeatures, msg: &msgs::AcceptChannel) {
305                 self.received_msg(wire::Message::AcceptChannel(msg.clone()));
306         }
307         fn handle_funding_created(&self, _their_node_id: &PublicKey, msg: &msgs::FundingCreated) {
308                 self.received_msg(wire::Message::FundingCreated(msg.clone()));
309         }
310         fn handle_funding_signed(&self, _their_node_id: &PublicKey, msg: &msgs::FundingSigned) {
311                 self.received_msg(wire::Message::FundingSigned(msg.clone()));
312         }
313         fn handle_channel_ready(&self, _their_node_id: &PublicKey, msg: &msgs::ChannelReady) {
314                 self.received_msg(wire::Message::ChannelReady(msg.clone()));
315         }
316         fn handle_shutdown(&self, _their_node_id: &PublicKey, _their_features: &InitFeatures, msg: &msgs::Shutdown) {
317                 self.received_msg(wire::Message::Shutdown(msg.clone()));
318         }
319         fn handle_closing_signed(&self, _their_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
320                 self.received_msg(wire::Message::ClosingSigned(msg.clone()));
321         }
322         fn handle_update_add_htlc(&self, _their_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
323                 self.received_msg(wire::Message::UpdateAddHTLC(msg.clone()));
324         }
325         fn handle_update_fulfill_htlc(&self, _their_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
326                 self.received_msg(wire::Message::UpdateFulfillHTLC(msg.clone()));
327         }
328         fn handle_update_fail_htlc(&self, _their_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
329                 self.received_msg(wire::Message::UpdateFailHTLC(msg.clone()));
330         }
331         fn handle_update_fail_malformed_htlc(&self, _their_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
332                 self.received_msg(wire::Message::UpdateFailMalformedHTLC(msg.clone()));
333         }
334         fn handle_commitment_signed(&self, _their_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
335                 self.received_msg(wire::Message::CommitmentSigned(msg.clone()));
336         }
337         fn handle_revoke_and_ack(&self, _their_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
338                 self.received_msg(wire::Message::RevokeAndACK(msg.clone()));
339         }
340         fn handle_update_fee(&self, _their_node_id: &PublicKey, msg: &msgs::UpdateFee) {
341                 self.received_msg(wire::Message::UpdateFee(msg.clone()));
342         }
343         fn handle_channel_update(&self, _their_node_id: &PublicKey, _msg: &msgs::ChannelUpdate) {
344                 // Don't call `received_msg` here as `TestRoutingMessageHandler` generates these sometimes
345         }
346         fn handle_announcement_signatures(&self, _their_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
347                 self.received_msg(wire::Message::AnnouncementSignatures(msg.clone()));
348         }
349         fn handle_channel_reestablish(&self, _their_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
350                 self.received_msg(wire::Message::ChannelReestablish(msg.clone()));
351         }
352         fn peer_disconnected(&self, _their_node_id: &PublicKey, _no_connection_possible: bool) {}
353         fn peer_connected(&self, _their_node_id: &PublicKey, _msg: &msgs::Init) {
354                 // Don't bother with `received_msg` for Init as its auto-generated and we don't want to
355                 // bother re-generating the expected Init message in all tests.
356         }
357         fn handle_error(&self, _their_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
358                 self.received_msg(wire::Message::Error(msg.clone()));
359         }
360 }
361
362 impl events::MessageSendEventsProvider for TestChannelMessageHandler {
363         fn get_and_clear_pending_msg_events(&self) -> Vec<events::MessageSendEvent> {
364                 let mut pending_events = self.pending_events.lock().unwrap();
365                 let mut ret = Vec::new();
366                 mem::swap(&mut ret, &mut *pending_events);
367                 ret
368         }
369 }
370
371 fn get_dummy_channel_announcement(short_chan_id: u64) -> msgs::ChannelAnnouncement {
372         use bitcoin::secp256k1::ffi::Signature as FFISignature;
373         let secp_ctx = Secp256k1::new();
374         let network = Network::Testnet;
375         let node_1_privkey = SecretKey::from_slice(&[42; 32]).unwrap();
376         let node_2_privkey = SecretKey::from_slice(&[41; 32]).unwrap();
377         let node_1_btckey = SecretKey::from_slice(&[40; 32]).unwrap();
378         let node_2_btckey = SecretKey::from_slice(&[39; 32]).unwrap();
379         let unsigned_ann = msgs::UnsignedChannelAnnouncement {
380                 features: ChannelFeatures::known(),
381                 chain_hash: genesis_block(network).header.block_hash(),
382                 short_channel_id: short_chan_id,
383                 node_id_1: PublicKey::from_secret_key(&secp_ctx, &node_1_privkey),
384                 node_id_2: PublicKey::from_secret_key(&secp_ctx, &node_2_privkey),
385                 bitcoin_key_1: PublicKey::from_secret_key(&secp_ctx, &node_1_btckey),
386                 bitcoin_key_2: PublicKey::from_secret_key(&secp_ctx, &node_2_btckey),
387                 excess_data: Vec::new(),
388         };
389
390         unsafe {
391                 msgs::ChannelAnnouncement {
392                         node_signature_1: Signature::from(FFISignature::new()),
393                         node_signature_2: Signature::from(FFISignature::new()),
394                         bitcoin_signature_1: Signature::from(FFISignature::new()),
395                         bitcoin_signature_2: Signature::from(FFISignature::new()),
396                         contents: unsigned_ann,
397                 }
398         }
399 }
400
401 fn get_dummy_channel_update(short_chan_id: u64) -> msgs::ChannelUpdate {
402         use bitcoin::secp256k1::ffi::Signature as FFISignature;
403         let network = Network::Testnet;
404         msgs::ChannelUpdate {
405                 signature: Signature::from(unsafe { FFISignature::new() }),
406                 contents: msgs::UnsignedChannelUpdate {
407                         chain_hash: genesis_block(network).header.block_hash(),
408                         short_channel_id: short_chan_id,
409                         timestamp: 0,
410                         flags: 0,
411                         cltv_expiry_delta: 0,
412                         htlc_minimum_msat: 0,
413                         htlc_maximum_msat: msgs::MAX_VALUE_MSAT,
414                         fee_base_msat: 0,
415                         fee_proportional_millionths: 0,
416                         excess_data: vec![],
417                 }
418         }
419 }
420
421 pub struct TestRoutingMessageHandler {
422         pub chan_upds_recvd: AtomicUsize,
423         pub chan_anns_recvd: AtomicUsize,
424         pub pending_events: Mutex<Vec<events::MessageSendEvent>>,
425         pub request_full_sync: AtomicBool,
426 }
427
428 impl TestRoutingMessageHandler {
429         pub fn new() -> Self {
430                 TestRoutingMessageHandler {
431                         chan_upds_recvd: AtomicUsize::new(0),
432                         chan_anns_recvd: AtomicUsize::new(0),
433                         pending_events: Mutex::new(vec![]),
434                         request_full_sync: AtomicBool::new(false),
435                 }
436         }
437 }
438 impl msgs::RoutingMessageHandler for TestRoutingMessageHandler {
439         fn handle_node_announcement(&self, _msg: &msgs::NodeAnnouncement) -> Result<bool, msgs::LightningError> {
440                 Err(msgs::LightningError { err: "".to_owned(), action: msgs::ErrorAction::IgnoreError })
441         }
442         fn handle_channel_announcement(&self, _msg: &msgs::ChannelAnnouncement) -> Result<bool, msgs::LightningError> {
443                 self.chan_anns_recvd.fetch_add(1, Ordering::AcqRel);
444                 Err(msgs::LightningError { err: "".to_owned(), action: msgs::ErrorAction::IgnoreError })
445         }
446         fn handle_channel_update(&self, _msg: &msgs::ChannelUpdate) -> Result<bool, msgs::LightningError> {
447                 self.chan_upds_recvd.fetch_add(1, Ordering::AcqRel);
448                 Err(msgs::LightningError { err: "".to_owned(), action: msgs::ErrorAction::IgnoreError })
449         }
450         fn get_next_channel_announcements(&self, starting_point: u64, batch_amount: u8) -> Vec<(msgs::ChannelAnnouncement, Option<msgs::ChannelUpdate>, Option<msgs::ChannelUpdate>)> {
451                 let mut chan_anns = Vec::new();
452                 const TOTAL_UPDS: u64 = 50;
453                 let end: u64 = cmp::min(starting_point + batch_amount as u64, TOTAL_UPDS);
454                 for i in starting_point..end {
455                         let chan_upd_1 = get_dummy_channel_update(i);
456                         let chan_upd_2 = get_dummy_channel_update(i);
457                         let chan_ann = get_dummy_channel_announcement(i);
458
459                         chan_anns.push((chan_ann, Some(chan_upd_1), Some(chan_upd_2)));
460                 }
461
462                 chan_anns
463         }
464
465         fn get_next_node_announcements(&self, _starting_point: Option<&PublicKey>, _batch_amount: u8) -> Vec<msgs::NodeAnnouncement> {
466                 Vec::new()
467         }
468
469         fn peer_connected(&self, their_node_id: &PublicKey, init_msg: &msgs::Init) {
470                 if !init_msg.features.supports_gossip_queries() {
471                         return ();
472                 }
473
474                 let should_request_full_sync = self.request_full_sync.load(Ordering::Acquire);
475
476                 #[allow(unused_mut, unused_assignments)]
477                 let mut gossip_start_time = 0;
478                 #[cfg(feature = "std")]
479                 {
480                         gossip_start_time = SystemTime::now().duration_since(UNIX_EPOCH).expect("Time must be > 1970").as_secs();
481                         if should_request_full_sync {
482                                 gossip_start_time -= 60 * 60 * 24 * 7 * 2; // 2 weeks ago
483                         } else {
484                                 gossip_start_time -= 60 * 60; // an hour ago
485                         }
486                 }
487
488                 let mut pending_events = self.pending_events.lock().unwrap();
489                 pending_events.push(events::MessageSendEvent::SendGossipTimestampFilter {
490                         node_id: their_node_id.clone(),
491                         msg: msgs::GossipTimestampFilter {
492                                 chain_hash: genesis_block(Network::Testnet).header.block_hash(),
493                                 first_timestamp: gossip_start_time as u32,
494                                 timestamp_range: u32::max_value(),
495                         },
496                 });
497         }
498
499         fn handle_reply_channel_range(&self, _their_node_id: &PublicKey, _msg: msgs::ReplyChannelRange) -> Result<(), msgs::LightningError> {
500                 Ok(())
501         }
502
503         fn handle_reply_short_channel_ids_end(&self, _their_node_id: &PublicKey, _msg: msgs::ReplyShortChannelIdsEnd) -> Result<(), msgs::LightningError> {
504                 Ok(())
505         }
506
507         fn handle_query_channel_range(&self, _their_node_id: &PublicKey, _msg: msgs::QueryChannelRange) -> Result<(), msgs::LightningError> {
508                 Ok(())
509         }
510
511         fn handle_query_short_channel_ids(&self, _their_node_id: &PublicKey, _msg: msgs::QueryShortChannelIds) -> Result<(), msgs::LightningError> {
512                 Ok(())
513         }
514 }
515
516 impl events::MessageSendEventsProvider for TestRoutingMessageHandler {
517         fn get_and_clear_pending_msg_events(&self) -> Vec<events::MessageSendEvent> {
518                 let mut ret = Vec::new();
519                 let mut pending_events = self.pending_events.lock().unwrap();
520                 core::mem::swap(&mut ret, &mut pending_events);
521                 ret
522         }
523 }
524
525 pub struct TestLogger {
526         level: Level,
527         #[cfg(feature = "std")]
528         id: String,
529         #[cfg(not(feature = "std"))]
530         _id: String,
531         pub lines: Mutex<HashMap<(String, String), usize>>,
532 }
533
534 impl TestLogger {
535         pub fn new() -> TestLogger {
536                 Self::with_id("".to_owned())
537         }
538         pub fn with_id(id: String) -> TestLogger {
539                 TestLogger {
540                         level: Level::Trace,
541                         #[cfg(feature = "std")]
542                         id,
543                         #[cfg(not(feature = "std"))]
544                         _id: id,
545                         lines: Mutex::new(HashMap::new())
546                 }
547         }
548         pub fn enable(&mut self, level: Level) {
549                 self.level = level;
550         }
551         pub fn assert_log(&self, module: String, line: String, count: usize) {
552                 let log_entries = self.lines.lock().unwrap();
553                 assert_eq!(log_entries.get(&(module, line)), Some(&count));
554         }
555
556         /// Search for the number of occurrence of the logged lines which
557         /// 1. belongs to the specified module and
558         /// 2. contains `line` in it.
559         /// And asserts if the number of occurrences is the same with the given `count`
560         pub fn assert_log_contains(&self, module: String, line: String, count: usize) {
561                 let log_entries = self.lines.lock().unwrap();
562                 let l: usize = log_entries.iter().filter(|&(&(ref m, ref l), _c)| {
563                         m == &module && l.contains(line.as_str())
564                 }).map(|(_, c) | { c }).sum();
565                 assert_eq!(l, count)
566         }
567
568     /// Search for the number of occurrences of logged lines which
569     /// 1. belong to the specified module and
570     /// 2. match the given regex pattern.
571     /// Assert that the number of occurrences equals the given `count`
572         pub fn assert_log_regex(&self, module: String, pattern: regex::Regex, count: usize) {
573                 let log_entries = self.lines.lock().unwrap();
574                 let l: usize = log_entries.iter().filter(|&(&(ref m, ref l), _c)| {
575                         m == &module && pattern.is_match(&l)
576                 }).map(|(_, c) | { c }).sum();
577                 assert_eq!(l, count)
578         }
579 }
580
581 impl Logger for TestLogger {
582         fn log(&self, record: &Record) {
583                 *self.lines.lock().unwrap().entry((record.module_path.to_string(), format!("{}", record.args))).or_insert(0) += 1;
584                 if record.level >= self.level {
585                         #[cfg(feature = "std")]
586                         println!("{:<5} {} [{} : {}, {}] {}", record.level.to_string(), self.id, record.module_path, record.file, record.line, record.args);
587                 }
588         }
589 }
590
591 pub struct TestKeysInterface {
592         pub backing: keysinterface::PhantomKeysManager,
593         pub override_random_bytes: Mutex<Option<[u8; 32]>>,
594         pub disable_revocation_policy_check: bool,
595         enforcement_states: Mutex<HashMap<[u8;32], Arc<Mutex<EnforcementState>>>>,
596         expectations: Mutex<Option<VecDeque<OnGetShutdownScriptpubkey>>>,
597 }
598
599 impl keysinterface::KeysInterface for TestKeysInterface {
600         type Signer = EnforcingSigner;
601
602         fn get_node_secret(&self, recipient: Recipient) -> Result<SecretKey, ()> {
603                 self.backing.get_node_secret(recipient)
604         }
605         fn ecdh(&self, recipient: Recipient, other_key: &PublicKey, tweak: Option<&[u8; 32]>) -> Result<SharedSecret, ()> {
606                 self.backing.ecdh(recipient, other_key, tweak)
607         }
608         fn get_inbound_payment_key_material(&self) -> keysinterface::KeyMaterial {
609                 self.backing.get_inbound_payment_key_material()
610         }
611         fn get_destination_script(&self) -> Script { self.backing.get_destination_script() }
612
613         fn get_shutdown_scriptpubkey(&self) -> ShutdownScript {
614                 match &mut *self.expectations.lock().unwrap() {
615                         None => self.backing.get_shutdown_scriptpubkey(),
616                         Some(expectations) => match expectations.pop_front() {
617                                 None => panic!("Unexpected get_shutdown_scriptpubkey"),
618                                 Some(expectation) => expectation.returns,
619                         },
620                 }
621         }
622
623         fn get_channel_signer(&self, inbound: bool, channel_value_satoshis: u64) -> EnforcingSigner {
624                 let keys = self.backing.get_channel_signer(inbound, channel_value_satoshis);
625                 let state = self.make_enforcement_state_cell(keys.commitment_seed);
626                 EnforcingSigner::new_with_revoked(keys, state, self.disable_revocation_policy_check)
627         }
628
629         fn get_secure_random_bytes(&self) -> [u8; 32] {
630                 let override_random_bytes = self.override_random_bytes.lock().unwrap();
631                 if let Some(bytes) = &*override_random_bytes {
632                         return *bytes;
633                 }
634                 self.backing.get_secure_random_bytes()
635         }
636
637         fn read_chan_signer(&self, buffer: &[u8]) -> Result<Self::Signer, msgs::DecodeError> {
638                 let mut reader = io::Cursor::new(buffer);
639
640                 let inner: InMemorySigner = ReadableArgs::read(&mut reader, self.get_node_secret(Recipient::Node).unwrap())?;
641                 let state = self.make_enforcement_state_cell(inner.commitment_seed);
642
643                 Ok(EnforcingSigner::new_with_revoked(
644                         inner,
645                         state,
646                         self.disable_revocation_policy_check
647                 ))
648         }
649
650         fn sign_invoice(&self, hrp_bytes: &[u8], invoice_data: &[u5], recipient: Recipient) -> Result<RecoverableSignature, ()> {
651                 self.backing.sign_invoice(hrp_bytes, invoice_data, recipient)
652         }
653 }
654
655 impl TestKeysInterface {
656         pub fn new(seed: &[u8; 32], network: Network) -> Self {
657                 let now = Duration::from_secs(genesis_block(network).header.time as u64);
658                 Self {
659                         backing: keysinterface::PhantomKeysManager::new(seed, now.as_secs(), now.subsec_nanos(), seed),
660                         override_random_bytes: Mutex::new(None),
661                         disable_revocation_policy_check: false,
662                         enforcement_states: Mutex::new(HashMap::new()),
663                         expectations: Mutex::new(None),
664                 }
665         }
666
667         /// Sets an expectation that [`keysinterface::KeysInterface::get_shutdown_scriptpubkey`] is
668         /// called.
669         pub fn expect(&self, expectation: OnGetShutdownScriptpubkey) -> &Self {
670                 self.expectations.lock().unwrap()
671                         .get_or_insert_with(|| VecDeque::new())
672                         .push_back(expectation);
673                 self
674         }
675
676         pub fn derive_channel_keys(&self, channel_value_satoshis: u64, id: &[u8; 32]) -> EnforcingSigner {
677                 let keys = self.backing.derive_channel_keys(channel_value_satoshis, id);
678                 let state = self.make_enforcement_state_cell(keys.commitment_seed);
679                 EnforcingSigner::new_with_revoked(keys, state, self.disable_revocation_policy_check)
680         }
681
682         fn make_enforcement_state_cell(&self, commitment_seed: [u8; 32]) -> Arc<Mutex<EnforcementState>> {
683                 let mut states = self.enforcement_states.lock().unwrap();
684                 if !states.contains_key(&commitment_seed) {
685                         let state = EnforcementState::new();
686                         states.insert(commitment_seed, Arc::new(Mutex::new(state)));
687                 }
688                 let cell = states.get(&commitment_seed).unwrap();
689                 Arc::clone(cell)
690         }
691 }
692
693 pub(crate) fn panicking() -> bool {
694         #[cfg(feature = "std")]
695         let panicking = ::std::thread::panicking();
696         #[cfg(not(feature = "std"))]
697         let panicking = false;
698         return panicking;
699 }
700
701 impl Drop for TestKeysInterface {
702         fn drop(&mut self) {
703                 if panicking() {
704                         return;
705                 }
706
707                 if let Some(expectations) = &*self.expectations.lock().unwrap() {
708                         if !expectations.is_empty() {
709                                 panic!("Unsatisfied expectations: {:?}", expectations);
710                         }
711                 }
712         }
713 }
714
715 /// An expectation that [`keysinterface::KeysInterface::get_shutdown_scriptpubkey`] was called and
716 /// returns a [`ShutdownScript`].
717 pub struct OnGetShutdownScriptpubkey {
718         /// A shutdown script used to close a channel.
719         pub returns: ShutdownScript,
720 }
721
722 impl core::fmt::Debug for OnGetShutdownScriptpubkey {
723         fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
724                 f.debug_struct("OnGetShutdownScriptpubkey").finish()
725         }
726 }
727
728 pub struct TestChainSource {
729         pub genesis_hash: BlockHash,
730         pub utxo_ret: Mutex<Result<TxOut, chain::AccessError>>,
731         pub watched_txn: Mutex<HashSet<(Txid, Script)>>,
732         pub watched_outputs: Mutex<HashSet<(OutPoint, Script)>>,
733         expectations: Mutex<Option<VecDeque<OnRegisterOutput>>>,
734 }
735
736 impl TestChainSource {
737         pub fn new(network: Network) -> Self {
738                 let script_pubkey = Builder::new().push_opcode(opcodes::OP_TRUE).into_script();
739                 Self {
740                         genesis_hash: genesis_block(network).block_hash(),
741                         utxo_ret: Mutex::new(Ok(TxOut { value: u64::max_value(), script_pubkey })),
742                         watched_txn: Mutex::new(HashSet::new()),
743                         watched_outputs: Mutex::new(HashSet::new()),
744                         expectations: Mutex::new(None),
745                 }
746         }
747
748         /// Sets an expectation that [`chain::Filter::register_output`] is called.
749         pub fn expect(&self, expectation: OnRegisterOutput) -> &Self {
750                 self.expectations.lock().unwrap()
751                         .get_or_insert_with(|| VecDeque::new())
752                         .push_back(expectation);
753                 self
754         }
755 }
756
757 impl chain::Access for TestChainSource {
758         fn get_utxo(&self, genesis_hash: &BlockHash, _short_channel_id: u64) -> Result<TxOut, chain::AccessError> {
759                 if self.genesis_hash != *genesis_hash {
760                         return Err(chain::AccessError::UnknownChain);
761                 }
762
763                 self.utxo_ret.lock().unwrap().clone()
764         }
765 }
766
767 impl chain::Filter for TestChainSource {
768         fn register_tx(&self, txid: &Txid, script_pubkey: &Script) {
769                 self.watched_txn.lock().unwrap().insert((*txid, script_pubkey.clone()));
770         }
771
772         fn register_output(&self, output: WatchedOutput) -> Option<(usize, Transaction)> {
773                 let dependent_tx = match &mut *self.expectations.lock().unwrap() {
774                         None => None,
775                         Some(expectations) => match expectations.pop_front() {
776                                 None => {
777                                         panic!("Unexpected register_output: {:?}",
778                                                 (output.outpoint, output.script_pubkey));
779                                 },
780                                 Some(expectation) => {
781                                         assert_eq!(output.outpoint, expectation.outpoint());
782                                         assert_eq!(&output.script_pubkey, expectation.script_pubkey());
783                                         expectation.returns
784                                 },
785                         },
786                 };
787
788                 self.watched_outputs.lock().unwrap().insert((output.outpoint, output.script_pubkey));
789                 dependent_tx
790         }
791 }
792
793 impl Drop for TestChainSource {
794         fn drop(&mut self) {
795                 if panicking() {
796                         return;
797                 }
798
799                 if let Some(expectations) = &*self.expectations.lock().unwrap() {
800                         if !expectations.is_empty() {
801                                 panic!("Unsatisfied expectations: {:?}", expectations);
802                         }
803                 }
804         }
805 }
806
807 /// An expectation that [`chain::Filter::register_output`] was called with a transaction output and
808 /// returns an optional dependent transaction that spends the output in the same block.
809 pub struct OnRegisterOutput {
810         /// The transaction output to register.
811         pub with: TxOutReference,
812
813         /// A dependent transaction spending the output along with its position in the block.
814         pub returns: Option<(usize, Transaction)>,
815 }
816
817 /// A transaction output as identified by an index into a transaction's output list.
818 pub struct TxOutReference(pub Transaction, pub usize);
819
820 impl OnRegisterOutput {
821         fn outpoint(&self) -> OutPoint {
822                 let txid = self.with.0.txid();
823                 let index = self.with.1 as u16;
824                 OutPoint { txid, index }
825         }
826
827         fn script_pubkey(&self) -> &Script {
828                 let index = self.with.1;
829                 &self.with.0.output[index].script_pubkey
830         }
831 }
832
833 impl core::fmt::Debug for OnRegisterOutput {
834         fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
835                 f.debug_struct("OnRegisterOutput")
836                         .field("outpoint", &self.outpoint())
837                         .field("script_pubkey", self.script_pubkey())
838                         .finish()
839         }
840 }
841
842 /// A scorer useful in testing, when the passage of time isn't a concern.
843 pub type TestScorer = FixedPenaltyScorer;