Merge pull request #1180 from valentinewallace/2021-11-remove-user-pmt-id
[rust-lightning] / lightning / src / ln / functional_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 //! A bunch of useful utilities for building networks of nodes and exchanging messages between
11 //! nodes for functional tests.
12
13 use chain::{BestBlock, Confirm, Listen, Watch};
14 use chain::channelmonitor::ChannelMonitor;
15 use chain::transaction::OutPoint;
16 use ln::{PaymentPreimage, PaymentHash, PaymentSecret};
17 use ln::channelmanager::{ChainParameters, ChannelManager, ChannelManagerReadArgs, RAACommitmentOrder, PaymentSendFailure, PaymentId};
18 use routing::network_graph::{NetGraphMsgHandler, NetworkGraph};
19 use routing::router::{Payee, Route, get_route};
20 use ln::features::{InitFeatures, InvoiceFeatures};
21 use ln::msgs;
22 use ln::msgs::{ChannelMessageHandler,RoutingMessageHandler};
23 use util::enforcing_trait_impls::EnforcingSigner;
24 use util::test_utils;
25 use util::test_utils::TestChainMonitor;
26 use util::events::{Event, MessageSendEvent, MessageSendEventsProvider, PaymentPurpose};
27 use util::errors::APIError;
28 use util::config::UserConfig;
29 use util::ser::{ReadableArgs, Writeable, Readable};
30
31 use bitcoin::blockdata::block::{Block, BlockHeader};
32 use bitcoin::blockdata::constants::genesis_block;
33 use bitcoin::blockdata::transaction::{Transaction, TxOut};
34 use bitcoin::network::constants::Network;
35
36 use bitcoin::hashes::sha256::Hash as Sha256;
37 use bitcoin::hashes::Hash;
38 use bitcoin::hash_types::BlockHash;
39
40 use bitcoin::secp256k1::key::PublicKey;
41
42 use io;
43 use prelude::*;
44 use core::cell::RefCell;
45 use std::rc::Rc;
46 use sync::{Arc, Mutex};
47 use core::mem;
48
49 pub const CHAN_CONFIRM_DEPTH: u32 = 10;
50
51 /// Mine the given transaction in the next block and then mine CHAN_CONFIRM_DEPTH - 1 blocks on
52 /// top, giving the given transaction CHAN_CONFIRM_DEPTH confirmations.
53 pub fn confirm_transaction<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, tx: &Transaction) {
54         confirm_transaction_at(node, tx, node.best_block_info().1 + 1);
55         connect_blocks(node, CHAN_CONFIRM_DEPTH - 1);
56 }
57 /// Mine a signle block containing the given transaction
58 pub fn mine_transaction<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, tx: &Transaction) {
59         let height = node.best_block_info().1 + 1;
60         confirm_transaction_at(node, tx, height);
61 }
62 /// Mine the given transaction at the given height, mining blocks as required to build to that
63 /// height
64 pub fn confirm_transaction_at<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, tx: &Transaction, conf_height: u32) {
65         let first_connect_height = node.best_block_info().1 + 1;
66         assert!(first_connect_height <= conf_height);
67         if conf_height > first_connect_height {
68                 connect_blocks(node, conf_height - first_connect_height);
69         }
70         let mut block = Block {
71                 header: BlockHeader { version: 0x20000000, prev_blockhash: node.best_block_hash(), merkle_root: Default::default(), time: conf_height, bits: 42, nonce: 42 },
72                 txdata: Vec::new(),
73         };
74         for _ in 0..*node.network_chan_count.borrow() { // Make sure we don't end up with channels at the same short id by offsetting by chan_count
75                 block.txdata.push(Transaction { version: 0, lock_time: 0, input: Vec::new(), output: Vec::new() });
76         }
77         block.txdata.push(tx.clone());
78         connect_block(node, &block);
79 }
80
81 /// The possible ways we may notify a ChannelManager of a new block
82 #[derive(Clone, Copy, PartialEq)]
83 pub enum ConnectStyle {
84         /// Calls best_block_updated first, detecting transactions in the block only after receiving the
85         /// header and height information.
86         BestBlockFirst,
87         /// The same as BestBlockFirst, however when we have multiple blocks to connect, we only
88         /// make a single best_block_updated call.
89         BestBlockFirstSkippingBlocks,
90         /// Calls transactions_confirmed first, detecting transactions in the block before updating the
91         /// header and height information.
92         TransactionsFirst,
93         /// The same as TransactionsFirst, however when we have multiple blocks to connect, we only
94         /// make a single best_block_updated call.
95         TransactionsFirstSkippingBlocks,
96         /// Provides the full block via the chain::Listen interface. In the current code this is
97         /// equivalent to TransactionsFirst with some additional assertions.
98         FullBlockViaListen,
99 }
100
101 pub fn connect_blocks<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, depth: u32) -> BlockHash {
102         let skip_intermediaries = match *node.connect_style.borrow() {
103                 ConnectStyle::BestBlockFirstSkippingBlocks|ConnectStyle::TransactionsFirstSkippingBlocks => true,
104                 _ => false,
105         };
106
107         let height = node.best_block_info().1 + 1;
108         let mut block = Block {
109                 header: BlockHeader { version: 0x2000000, prev_blockhash: node.best_block_hash(), merkle_root: Default::default(), time: height, bits: 42, nonce: 42 },
110                 txdata: vec![],
111         };
112         assert!(depth >= 1);
113         for i in 1..depth {
114                 do_connect_block(node, &block, skip_intermediaries);
115                 block = Block {
116                         header: BlockHeader { version: 0x20000000, prev_blockhash: block.header.block_hash(), merkle_root: Default::default(), time: height + i, bits: 42, nonce: 42 },
117                         txdata: vec![],
118                 };
119         }
120         connect_block(node, &block);
121         block.header.block_hash()
122 }
123
124 pub fn connect_block<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, block: &Block) {
125         do_connect_block(node, block, false);
126 }
127
128 fn do_connect_block<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, block: &Block, skip_intermediaries: bool) {
129         let height = node.best_block_info().1 + 1;
130         if !skip_intermediaries {
131                 let txdata: Vec<_> = block.txdata.iter().enumerate().collect();
132                 match *node.connect_style.borrow() {
133                         ConnectStyle::BestBlockFirst|ConnectStyle::BestBlockFirstSkippingBlocks => {
134                                 node.chain_monitor.chain_monitor.best_block_updated(&block.header, height);
135                                 node.chain_monitor.chain_monitor.transactions_confirmed(&block.header, &txdata, height);
136                                 node.node.best_block_updated(&block.header, height);
137                                 node.node.transactions_confirmed(&block.header, &txdata, height);
138                         },
139                         ConnectStyle::TransactionsFirst|ConnectStyle::TransactionsFirstSkippingBlocks => {
140                                 node.chain_monitor.chain_monitor.transactions_confirmed(&block.header, &txdata, height);
141                                 node.chain_monitor.chain_monitor.best_block_updated(&block.header, height);
142                                 node.node.transactions_confirmed(&block.header, &txdata, height);
143                                 node.node.best_block_updated(&block.header, height);
144                         },
145                         ConnectStyle::FullBlockViaListen => {
146                                 node.chain_monitor.chain_monitor.block_connected(&block, height);
147                                 node.node.block_connected(&block, height);
148                         }
149                 }
150         }
151         node.node.test_process_background_events();
152         node.blocks.lock().unwrap().push((block.header, height));
153 }
154
155 pub fn disconnect_blocks<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, count: u32) {
156         for i in 0..count {
157                 let orig_header = node.blocks.lock().unwrap().pop().unwrap();
158                 assert!(orig_header.1 > 0); // Cannot disconnect genesis
159                 let prev_header = node.blocks.lock().unwrap().last().unwrap().clone();
160
161                 match *node.connect_style.borrow() {
162                         ConnectStyle::FullBlockViaListen => {
163                                 node.chain_monitor.chain_monitor.block_disconnected(&orig_header.0, orig_header.1);
164                                 Listen::block_disconnected(node.node, &orig_header.0, orig_header.1);
165                         },
166                         ConnectStyle::BestBlockFirstSkippingBlocks|ConnectStyle::TransactionsFirstSkippingBlocks => {
167                                 if i == count - 1 {
168                                         node.chain_monitor.chain_monitor.best_block_updated(&prev_header.0, prev_header.1);
169                                         node.node.best_block_updated(&prev_header.0, prev_header.1);
170                                 }
171                         },
172                         _ => {
173                                 node.chain_monitor.chain_monitor.best_block_updated(&prev_header.0, prev_header.1);
174                                 node.node.best_block_updated(&prev_header.0, prev_header.1);
175                         },
176                 }
177         }
178 }
179
180 pub fn disconnect_all_blocks<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>) {
181         let count = node.blocks.lock().unwrap().len() as u32 - 1;
182         disconnect_blocks(node, count);
183 }
184
185 pub struct TestChanMonCfg {
186         pub tx_broadcaster: test_utils::TestBroadcaster,
187         pub fee_estimator: test_utils::TestFeeEstimator,
188         pub chain_source: test_utils::TestChainSource,
189         pub persister: test_utils::TestPersister,
190         pub logger: test_utils::TestLogger,
191         pub keys_manager: test_utils::TestKeysInterface,
192         pub network_graph: NetworkGraph,
193 }
194
195 pub struct NodeCfg<'a> {
196         pub chain_source: &'a test_utils::TestChainSource,
197         pub tx_broadcaster: &'a test_utils::TestBroadcaster,
198         pub fee_estimator: &'a test_utils::TestFeeEstimator,
199         pub chain_monitor: test_utils::TestChainMonitor<'a>,
200         pub keys_manager: &'a test_utils::TestKeysInterface,
201         pub logger: &'a test_utils::TestLogger,
202         pub network_graph: &'a NetworkGraph,
203         pub node_seed: [u8; 32],
204         pub features: InitFeatures,
205 }
206
207 pub struct Node<'a, 'b: 'a, 'c: 'b> {
208         pub chain_source: &'c test_utils::TestChainSource,
209         pub tx_broadcaster: &'c test_utils::TestBroadcaster,
210         pub chain_monitor: &'b test_utils::TestChainMonitor<'c>,
211         pub keys_manager: &'b test_utils::TestKeysInterface,
212         pub node: &'a ChannelManager<EnforcingSigner, &'b TestChainMonitor<'c>, &'c test_utils::TestBroadcaster, &'b test_utils::TestKeysInterface, &'c test_utils::TestFeeEstimator, &'c test_utils::TestLogger>,
213         pub network_graph: &'c NetworkGraph,
214         pub net_graph_msg_handler: NetGraphMsgHandler<&'c NetworkGraph, &'c test_utils::TestChainSource, &'c test_utils::TestLogger>,
215         pub node_seed: [u8; 32],
216         pub network_payment_count: Rc<RefCell<u8>>,
217         pub network_chan_count: Rc<RefCell<u32>>,
218         pub logger: &'c test_utils::TestLogger,
219         pub blocks: Arc<Mutex<Vec<(BlockHeader, u32)>>>,
220         pub connect_style: Rc<RefCell<ConnectStyle>>,
221 }
222 impl<'a, 'b, 'c> Node<'a, 'b, 'c> {
223         pub fn best_block_hash(&self) -> BlockHash {
224                 self.blocks.lock().unwrap().last().unwrap().0.block_hash()
225         }
226         pub fn best_block_info(&self) -> (BlockHash, u32) {
227                 self.blocks.lock().unwrap().last().map(|(a, b)| (a.block_hash(), *b)).unwrap()
228         }
229         pub fn get_block_header(&self, height: u32) -> BlockHeader {
230                 self.blocks.lock().unwrap()[height as usize].0
231         }
232 }
233
234 impl<'a, 'b, 'c> Drop for Node<'a, 'b, 'c> {
235         fn drop(&mut self) {
236                 if !::std::thread::panicking() {
237                         // Check that we processed all pending events
238                         assert!(self.node.get_and_clear_pending_msg_events().is_empty());
239                         assert!(self.node.get_and_clear_pending_events().is_empty());
240                         assert!(self.chain_monitor.added_monitors.lock().unwrap().is_empty());
241
242                         // Check that if we serialize the Router, we can deserialize it again.
243                         {
244                                 let mut w = test_utils::TestVecWriter(Vec::new());
245                                 self.network_graph.write(&mut w).unwrap();
246                                 let network_graph_deser = <NetworkGraph>::read(&mut io::Cursor::new(&w.0)).unwrap();
247                                 assert!(network_graph_deser == *self.network_graph);
248                                 let net_graph_msg_handler = NetGraphMsgHandler::new(
249                                         &network_graph_deser, Some(self.chain_source), self.logger
250                                 );
251                                 let mut chan_progress = 0;
252                                 loop {
253                                         let orig_announcements = self.net_graph_msg_handler.get_next_channel_announcements(chan_progress, 255);
254                                         let deserialized_announcements = net_graph_msg_handler.get_next_channel_announcements(chan_progress, 255);
255                                         assert!(orig_announcements == deserialized_announcements);
256                                         chan_progress = match orig_announcements.last() {
257                                                 Some(announcement) => announcement.0.contents.short_channel_id + 1,
258                                                 None => break,
259                                         };
260                                 }
261                                 let mut node_progress = None;
262                                 loop {
263                                         let orig_announcements = self.net_graph_msg_handler.get_next_node_announcements(node_progress.as_ref(), 255);
264                                         let deserialized_announcements = net_graph_msg_handler.get_next_node_announcements(node_progress.as_ref(), 255);
265                                         assert!(orig_announcements == deserialized_announcements);
266                                         node_progress = match orig_announcements.last() {
267                                                 Some(announcement) => Some(announcement.contents.node_id),
268                                                 None => break,
269                                         };
270                                 }
271                         }
272
273                         // Check that if we serialize and then deserialize all our channel monitors we get the
274                         // same set of outputs to watch for on chain as we have now. Note that if we write
275                         // tests that fully close channels and remove the monitors at some point this may break.
276                         let feeest = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
277                         let mut deserialized_monitors = Vec::new();
278                         {
279                                 for outpoint in self.chain_monitor.chain_monitor.list_monitors() {
280                                         let mut w = test_utils::TestVecWriter(Vec::new());
281                                         self.chain_monitor.chain_monitor.get_monitor(outpoint).unwrap().write(&mut w).unwrap();
282                                         let (_, deserialized_monitor) = <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(
283                                                 &mut io::Cursor::new(&w.0), self.keys_manager).unwrap();
284                                         deserialized_monitors.push(deserialized_monitor);
285                                 }
286                         }
287
288                         // Before using all the new monitors to check the watch outpoints, use the full set of
289                         // them to ensure we can write and reload our ChannelManager.
290                         {
291                                 let mut channel_monitors = HashMap::new();
292                                 for monitor in deserialized_monitors.iter_mut() {
293                                         channel_monitors.insert(monitor.get_funding_txo().0, monitor);
294                                 }
295
296                                 let mut w = test_utils::TestVecWriter(Vec::new());
297                                 self.node.write(&mut w).unwrap();
298                                 <(BlockHash, ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>)>::read(&mut io::Cursor::new(w.0), ChannelManagerReadArgs {
299                                         default_config: *self.node.get_current_default_configuration(),
300                                         keys_manager: self.keys_manager,
301                                         fee_estimator: &test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) },
302                                         chain_monitor: self.chain_monitor,
303                                         tx_broadcaster: &test_utils::TestBroadcaster {
304                                                 txn_broadcasted: Mutex::new(self.tx_broadcaster.txn_broadcasted.lock().unwrap().clone()),
305                                                 blocks: Arc::new(Mutex::new(self.tx_broadcaster.blocks.lock().unwrap().clone())),
306                                         },
307                                         logger: &self.logger,
308                                         channel_monitors,
309                                 }).unwrap();
310                         }
311
312                         let persister = test_utils::TestPersister::new();
313                         let broadcaster = test_utils::TestBroadcaster {
314                                 txn_broadcasted: Mutex::new(self.tx_broadcaster.txn_broadcasted.lock().unwrap().clone()),
315                                 blocks: Arc::new(Mutex::new(self.tx_broadcaster.blocks.lock().unwrap().clone())),
316                         };
317                         let chain_source = test_utils::TestChainSource::new(Network::Testnet);
318                         let chain_monitor = test_utils::TestChainMonitor::new(Some(&chain_source), &broadcaster, &self.logger, &feeest, &persister, &self.keys_manager);
319                         for deserialized_monitor in deserialized_monitors.drain(..) {
320                                 if let Err(_) = chain_monitor.watch_channel(deserialized_monitor.get_funding_txo().0, deserialized_monitor) {
321                                         panic!();
322                                 }
323                         }
324                         assert_eq!(*chain_source.watched_txn.lock().unwrap(), *self.chain_source.watched_txn.lock().unwrap());
325                         assert_eq!(*chain_source.watched_outputs.lock().unwrap(), *self.chain_source.watched_outputs.lock().unwrap());
326                 }
327         }
328 }
329
330 pub fn create_chan_between_nodes<'a, 'b, 'c, 'd>(node_a: &'a Node<'b, 'c, 'd>, node_b: &'a Node<'b, 'c, 'd>, a_flags: InitFeatures, b_flags: InitFeatures) -> (msgs::ChannelAnnouncement, msgs::ChannelUpdate, msgs::ChannelUpdate, [u8; 32], Transaction) {
331         create_chan_between_nodes_with_value(node_a, node_b, 100000, 10001, a_flags, b_flags)
332 }
333
334 pub fn create_chan_between_nodes_with_value<'a, 'b, 'c, 'd>(node_a: &'a Node<'b, 'c, 'd>, node_b: &'a Node<'b, 'c, 'd>, channel_value: u64, push_msat: u64, a_flags: InitFeatures, b_flags: InitFeatures) -> (msgs::ChannelAnnouncement, msgs::ChannelUpdate, msgs::ChannelUpdate, [u8; 32], Transaction) {
335         let (funding_locked, channel_id, tx) = create_chan_between_nodes_with_value_a(node_a, node_b, channel_value, push_msat, a_flags, b_flags);
336         let (announcement, as_update, bs_update) = create_chan_between_nodes_with_value_b(node_a, node_b, &funding_locked);
337         (announcement, as_update, bs_update, channel_id, tx)
338 }
339
340 macro_rules! get_revoke_commit_msgs {
341         ($node: expr, $node_id: expr) => {
342                 {
343                         let events = $node.node.get_and_clear_pending_msg_events();
344                         assert_eq!(events.len(), 2);
345                         (match events[0] {
346                                 MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
347                                         assert_eq!(*node_id, $node_id);
348                                         (*msg).clone()
349                                 },
350                                 _ => panic!("Unexpected event"),
351                         }, match events[1] {
352                                 MessageSendEvent::UpdateHTLCs { ref node_id, ref updates } => {
353                                         assert_eq!(*node_id, $node_id);
354                                         assert!(updates.update_add_htlcs.is_empty());
355                                         assert!(updates.update_fulfill_htlcs.is_empty());
356                                         assert!(updates.update_fail_htlcs.is_empty());
357                                         assert!(updates.update_fail_malformed_htlcs.is_empty());
358                                         assert!(updates.update_fee.is_none());
359                                         updates.commitment_signed.clone()
360                                 },
361                                 _ => panic!("Unexpected event"),
362                         })
363                 }
364         }
365 }
366
367 /// Get an specific event message from the pending events queue.
368 #[macro_export]
369 macro_rules! get_event_msg {
370         ($node: expr, $event_type: path, $node_id: expr) => {
371                 {
372                         let events = $node.node.get_and_clear_pending_msg_events();
373                         assert_eq!(events.len(), 1);
374                         match events[0] {
375                                 $event_type { ref node_id, ref msg } => {
376                                         assert_eq!(*node_id, $node_id);
377                                         (*msg).clone()
378                                 },
379                                 _ => panic!("Unexpected event"),
380                         }
381                 }
382         }
383 }
384
385 /// Get a specific event from the pending events queue.
386 #[macro_export]
387 macro_rules! get_event {
388         ($node: expr, $event_type: path) => {
389                 {
390                         let mut events = $node.node.get_and_clear_pending_events();
391                         assert_eq!(events.len(), 1);
392                         let ev = events.pop().unwrap();
393                         match ev {
394                                 $event_type { .. } => {
395                                         ev
396                                 },
397                                 _ => panic!("Unexpected event"),
398                         }
399                 }
400         }
401 }
402
403 #[cfg(test)]
404 macro_rules! get_htlc_update_msgs {
405         ($node: expr, $node_id: expr) => {
406                 {
407                         let events = $node.node.get_and_clear_pending_msg_events();
408                         assert_eq!(events.len(), 1);
409                         match events[0] {
410                                 MessageSendEvent::UpdateHTLCs { ref node_id, ref updates } => {
411                                         assert_eq!(*node_id, $node_id);
412                                         (*updates).clone()
413                                 },
414                                 _ => panic!("Unexpected event"),
415                         }
416                 }
417         }
418 }
419
420 #[cfg(test)]
421 macro_rules! get_channel_ref {
422         ($node: expr, $lock: ident, $channel_id: expr) => {
423                 {
424                         $lock = $node.node.channel_state.lock().unwrap();
425                         $lock.by_id.get_mut(&$channel_id).unwrap()
426                 }
427         }
428 }
429
430 #[cfg(test)]
431 macro_rules! get_feerate {
432         ($node: expr, $channel_id: expr) => {
433                 {
434                         let mut lock;
435                         let chan = get_channel_ref!($node, lock, $channel_id);
436                         chan.get_feerate()
437                 }
438         }
439 }
440
441 /// Returns a channel monitor given a channel id, making some naive assumptions
442 #[macro_export]
443 macro_rules! get_monitor {
444         ($node: expr, $channel_id: expr) => {
445                 {
446                         use bitcoin::hashes::Hash;
447                         let mut monitor = None;
448                         // Assume funding vout is either 0 or 1 blindly
449                         for index in 0..2 {
450                                 if let Ok(mon) = $node.chain_monitor.chain_monitor.get_monitor(
451                                         $crate::chain::transaction::OutPoint {
452                                                 txid: bitcoin::Txid::from_slice(&$channel_id[..]).unwrap(), index
453                                         })
454                                 {
455                                         monitor = Some(mon);
456                                         break;
457                                 }
458                         }
459                         monitor.unwrap()
460                 }
461         }
462 }
463
464 /// Returns any local commitment transactions for the channel.
465 #[macro_export]
466 macro_rules! get_local_commitment_txn {
467         ($node: expr, $channel_id: expr) => {
468                 {
469                         $crate::get_monitor!($node, $channel_id).unsafe_get_latest_holder_commitment_txn(&$node.logger)
470                 }
471         }
472 }
473
474 /// Check the error from attempting a payment.
475 #[macro_export]
476 macro_rules! unwrap_send_err {
477         ($res: expr, $all_failed: expr, $type: pat, $check: expr) => {
478                 match &$res {
479                         &Err(PaymentSendFailure::AllFailedRetrySafe(ref fails)) if $all_failed => {
480                                 assert_eq!(fails.len(), 1);
481                                 match fails[0] {
482                                         $type => { $check },
483                                         _ => panic!(),
484                                 }
485                         },
486                         &Err(PaymentSendFailure::PartialFailure { ref results, .. }) if !$all_failed => {
487                                 assert_eq!(results.len(), 1);
488                                 match results[0] {
489                                         Err($type) => { $check },
490                                         _ => panic!(),
491                                 }
492                         },
493                         _ => panic!(),
494                 }
495         }
496 }
497
498 /// Check whether N channel monitor(s) have been added.
499 #[macro_export]
500 macro_rules! check_added_monitors {
501         ($node: expr, $count: expr) => {
502                 {
503                         let mut added_monitors = $node.chain_monitor.added_monitors.lock().unwrap();
504                         assert_eq!(added_monitors.len(), $count);
505                         added_monitors.clear();
506                 }
507         }
508 }
509
510 pub fn create_funding_transaction<'a, 'b, 'c>(node: &Node<'a, 'b, 'c>, expected_chan_value: u64, expected_user_chan_id: u64) -> ([u8; 32], Transaction, OutPoint) {
511         let chan_id = *node.network_chan_count.borrow();
512
513         let events = node.node.get_and_clear_pending_events();
514         assert_eq!(events.len(), 1);
515         match events[0] {
516                 Event::FundingGenerationReady { ref temporary_channel_id, ref channel_value_satoshis, ref output_script, user_channel_id } => {
517                         assert_eq!(*channel_value_satoshis, expected_chan_value);
518                         assert_eq!(user_channel_id, expected_user_chan_id);
519
520                         let tx = Transaction { version: chan_id as i32, lock_time: 0, input: Vec::new(), output: vec![TxOut {
521                                 value: *channel_value_satoshis, script_pubkey: output_script.clone(),
522                         }]};
523                         let funding_outpoint = OutPoint { txid: tx.txid(), index: 0 };
524                         (*temporary_channel_id, tx, funding_outpoint)
525                 },
526                 _ => panic!("Unexpected event"),
527         }
528 }
529
530 pub fn create_chan_between_nodes_with_value_init<'a, 'b, 'c>(node_a: &Node<'a, 'b, 'c>, node_b: &Node<'a, 'b, 'c>, channel_value: u64, push_msat: u64, a_flags: InitFeatures, b_flags: InitFeatures) -> Transaction {
531         let create_chan_id = node_a.node.create_channel(node_b.node.get_our_node_id(), channel_value, push_msat, 42, None).unwrap();
532         node_b.node.handle_open_channel(&node_a.node.get_our_node_id(), a_flags, &get_event_msg!(node_a, MessageSendEvent::SendOpenChannel, node_b.node.get_our_node_id()));
533         node_a.node.handle_accept_channel(&node_b.node.get_our_node_id(), b_flags, &get_event_msg!(node_b, MessageSendEvent::SendAcceptChannel, node_a.node.get_our_node_id()));
534
535         let (temporary_channel_id, tx, funding_output) = create_funding_transaction(node_a, channel_value, 42);
536         assert_eq!(temporary_channel_id, create_chan_id);
537
538         node_a.node.funding_transaction_generated(&temporary_channel_id, tx.clone()).unwrap();
539         check_added_monitors!(node_a, 0);
540
541         node_b.node.handle_funding_created(&node_a.node.get_our_node_id(), &get_event_msg!(node_a, MessageSendEvent::SendFundingCreated, node_b.node.get_our_node_id()));
542         {
543                 let mut added_monitors = node_b.chain_monitor.added_monitors.lock().unwrap();
544                 assert_eq!(added_monitors.len(), 1);
545                 assert_eq!(added_monitors[0].0, funding_output);
546                 added_monitors.clear();
547         }
548
549         node_a.node.handle_funding_signed(&node_b.node.get_our_node_id(), &get_event_msg!(node_b, MessageSendEvent::SendFundingSigned, node_a.node.get_our_node_id()));
550         {
551                 let mut added_monitors = node_a.chain_monitor.added_monitors.lock().unwrap();
552                 assert_eq!(added_monitors.len(), 1);
553                 assert_eq!(added_monitors[0].0, funding_output);
554                 added_monitors.clear();
555         }
556
557         let events_4 = node_a.node.get_and_clear_pending_events();
558         assert_eq!(events_4.len(), 0);
559
560         assert_eq!(node_a.tx_broadcaster.txn_broadcasted.lock().unwrap().len(), 1);
561         assert_eq!(node_a.tx_broadcaster.txn_broadcasted.lock().unwrap()[0], tx);
562         node_a.tx_broadcaster.txn_broadcasted.lock().unwrap().clear();
563
564         tx
565 }
566
567 pub fn create_chan_between_nodes_with_value_confirm_first<'a, 'b, 'c, 'd>(node_recv: &'a Node<'b, 'c, 'c>, node_conf: &'a Node<'b, 'c, 'd>, tx: &Transaction, conf_height: u32) {
568         confirm_transaction_at(node_conf, tx, conf_height);
569         connect_blocks(node_conf, CHAN_CONFIRM_DEPTH - 1);
570         node_recv.node.handle_funding_locked(&node_conf.node.get_our_node_id(), &get_event_msg!(node_conf, MessageSendEvent::SendFundingLocked, node_recv.node.get_our_node_id()));
571 }
572
573 pub fn create_chan_between_nodes_with_value_confirm_second<'a, 'b, 'c>(node_recv: &Node<'a, 'b, 'c>, node_conf: &Node<'a, 'b, 'c>) -> ((msgs::FundingLocked, msgs::AnnouncementSignatures), [u8; 32]) {
574         let channel_id;
575         let events_6 = node_conf.node.get_and_clear_pending_msg_events();
576         assert_eq!(events_6.len(), 2);
577         ((match events_6[0] {
578                 MessageSendEvent::SendFundingLocked { ref node_id, ref msg } => {
579                         channel_id = msg.channel_id.clone();
580                         assert_eq!(*node_id, node_recv.node.get_our_node_id());
581                         msg.clone()
582                 },
583                 _ => panic!("Unexpected event"),
584         }, match events_6[1] {
585                 MessageSendEvent::SendAnnouncementSignatures { ref node_id, ref msg } => {
586                         assert_eq!(*node_id, node_recv.node.get_our_node_id());
587                         msg.clone()
588                 },
589                 _ => panic!("Unexpected event"),
590         }), channel_id)
591 }
592
593 pub fn create_chan_between_nodes_with_value_confirm<'a, 'b, 'c, 'd>(node_a: &'a Node<'b, 'c, 'd>, node_b: &'a Node<'b, 'c, 'd>, tx: &Transaction) -> ((msgs::FundingLocked, msgs::AnnouncementSignatures), [u8; 32]) {
594         let conf_height = core::cmp::max(node_a.best_block_info().1 + 1, node_b.best_block_info().1 + 1);
595         create_chan_between_nodes_with_value_confirm_first(node_a, node_b, tx, conf_height);
596         confirm_transaction_at(node_a, tx, conf_height);
597         connect_blocks(node_a, CHAN_CONFIRM_DEPTH - 1);
598         create_chan_between_nodes_with_value_confirm_second(node_b, node_a)
599 }
600
601 pub fn create_chan_between_nodes_with_value_a<'a, 'b, 'c, 'd>(node_a: &'a Node<'b, 'c, 'd>, node_b: &'a Node<'b, 'c, 'd>, channel_value: u64, push_msat: u64, a_flags: InitFeatures, b_flags: InitFeatures) -> ((msgs::FundingLocked, msgs::AnnouncementSignatures), [u8; 32], Transaction) {
602         let tx = create_chan_between_nodes_with_value_init(node_a, node_b, channel_value, push_msat, a_flags, b_flags);
603         let (msgs, chan_id) = create_chan_between_nodes_with_value_confirm(node_a, node_b, &tx);
604         (msgs, chan_id, tx)
605 }
606
607 pub fn create_chan_between_nodes_with_value_b<'a, 'b, 'c>(node_a: &Node<'a, 'b, 'c>, node_b: &Node<'a, 'b, 'c>, as_funding_msgs: &(msgs::FundingLocked, msgs::AnnouncementSignatures)) -> (msgs::ChannelAnnouncement, msgs::ChannelUpdate, msgs::ChannelUpdate) {
608         node_b.node.handle_funding_locked(&node_a.node.get_our_node_id(), &as_funding_msgs.0);
609         let bs_announcement_sigs = get_event_msg!(node_b, MessageSendEvent::SendAnnouncementSignatures, node_a.node.get_our_node_id());
610         node_b.node.handle_announcement_signatures(&node_a.node.get_our_node_id(), &as_funding_msgs.1);
611
612         let events_7 = node_b.node.get_and_clear_pending_msg_events();
613         assert_eq!(events_7.len(), 1);
614         let (announcement, bs_update) = match events_7[0] {
615                 MessageSendEvent::BroadcastChannelAnnouncement { ref msg, ref update_msg } => {
616                         (msg, update_msg)
617                 },
618                 _ => panic!("Unexpected event"),
619         };
620
621         node_a.node.handle_announcement_signatures(&node_b.node.get_our_node_id(), &bs_announcement_sigs);
622         let events_8 = node_a.node.get_and_clear_pending_msg_events();
623         assert_eq!(events_8.len(), 1);
624         let as_update = match events_8[0] {
625                 MessageSendEvent::BroadcastChannelAnnouncement { ref msg, ref update_msg } => {
626                         assert!(*announcement == *msg);
627                         assert_eq!(update_msg.contents.short_channel_id, announcement.contents.short_channel_id);
628                         assert_eq!(update_msg.contents.short_channel_id, bs_update.contents.short_channel_id);
629                         update_msg
630                 },
631                 _ => panic!("Unexpected event"),
632         };
633
634         *node_a.network_chan_count.borrow_mut() += 1;
635
636         ((*announcement).clone(), (*as_update).clone(), (*bs_update).clone())
637 }
638
639 pub fn create_announced_chan_between_nodes<'a, 'b, 'c, 'd>(nodes: &'a Vec<Node<'b, 'c, 'd>>, a: usize, b: usize, a_flags: InitFeatures, b_flags: InitFeatures) -> (msgs::ChannelUpdate, msgs::ChannelUpdate, [u8; 32], Transaction) {
640         create_announced_chan_between_nodes_with_value(nodes, a, b, 100000, 10001, a_flags, b_flags)
641 }
642
643 pub fn create_announced_chan_between_nodes_with_value<'a, 'b, 'c, 'd>(nodes: &'a Vec<Node<'b, 'c, 'd>>, a: usize, b: usize, channel_value: u64, push_msat: u64, a_flags: InitFeatures, b_flags: InitFeatures) -> (msgs::ChannelUpdate, msgs::ChannelUpdate, [u8; 32], Transaction) {
644         let chan_announcement = create_chan_between_nodes_with_value(&nodes[a], &nodes[b], channel_value, push_msat, a_flags, b_flags);
645         update_nodes_with_chan_announce(nodes, a, b, &chan_announcement.0, &chan_announcement.1, &chan_announcement.2);
646         (chan_announcement.1, chan_announcement.2, chan_announcement.3, chan_announcement.4)
647 }
648
649 pub fn update_nodes_with_chan_announce<'a, 'b, 'c, 'd>(nodes: &'a Vec<Node<'b, 'c, 'd>>, a: usize, b: usize, ann: &msgs::ChannelAnnouncement, upd_1: &msgs::ChannelUpdate, upd_2: &msgs::ChannelUpdate) {
650         nodes[a].node.broadcast_node_announcement([0, 0, 0], [0; 32], Vec::new());
651         let a_events = nodes[a].node.get_and_clear_pending_msg_events();
652         assert!(a_events.len() >= 2);
653
654         // ann should be re-generated by broadcast_node_announcement - check that we have it.
655         let mut found_ann_1 = false;
656         for event in a_events.iter() {
657                 match event {
658                         MessageSendEvent::BroadcastChannelAnnouncement { ref msg, .. } => {
659                                 if msg == ann { found_ann_1 = true; }
660                         },
661                         MessageSendEvent::BroadcastNodeAnnouncement { .. } => {},
662                         _ => panic!("Unexpected event {:?}", event),
663                 }
664         }
665         assert!(found_ann_1);
666
667         let a_node_announcement = match a_events.last().unwrap() {
668                 MessageSendEvent::BroadcastNodeAnnouncement { ref msg } => {
669                         (*msg).clone()
670                 },
671                 _ => panic!("Unexpected event"),
672         };
673
674         nodes[b].node.broadcast_node_announcement([1, 1, 1], [1; 32], Vec::new());
675         let b_events = nodes[b].node.get_and_clear_pending_msg_events();
676         assert!(b_events.len() >= 2);
677
678         // ann should be re-generated by broadcast_node_announcement - check that we have it.
679         let mut found_ann_2 = false;
680         for event in b_events.iter() {
681                 match event {
682                         MessageSendEvent::BroadcastChannelAnnouncement { ref msg, .. } => {
683                                 if msg == ann { found_ann_2 = true; }
684                         },
685                         MessageSendEvent::BroadcastNodeAnnouncement { .. } => {},
686                         _ => panic!("Unexpected event"),
687                 }
688         }
689         assert!(found_ann_2);
690
691         let b_node_announcement = match b_events.last().unwrap() {
692                 MessageSendEvent::BroadcastNodeAnnouncement { ref msg } => {
693                         (*msg).clone()
694                 },
695                 _ => panic!("Unexpected event"),
696         };
697
698         for node in nodes {
699                 assert!(node.net_graph_msg_handler.handle_channel_announcement(ann).unwrap());
700                 node.net_graph_msg_handler.handle_channel_update(upd_1).unwrap();
701                 node.net_graph_msg_handler.handle_channel_update(upd_2).unwrap();
702                 node.net_graph_msg_handler.handle_node_announcement(&a_node_announcement).unwrap();
703                 node.net_graph_msg_handler.handle_node_announcement(&b_node_announcement).unwrap();
704         }
705 }
706
707 macro_rules! check_spends {
708         ($tx: expr, $($spends_txn: expr),*) => {
709                 {
710                         $(
711                         for outp in $spends_txn.output.iter() {
712                                 assert!(outp.value >= outp.script_pubkey.dust_value().as_sat(), "Input tx output didn't meet dust limit");
713                         }
714                         )*
715                         for outp in $tx.output.iter() {
716                                 assert!(outp.value >= outp.script_pubkey.dust_value().as_sat(), "Spending tx output didn't meet dust limit");
717                         }
718                         let get_output = |out_point: &bitcoin::blockdata::transaction::OutPoint| {
719                                 $(
720                                         if out_point.txid == $spends_txn.txid() {
721                                                 return $spends_txn.output.get(out_point.vout as usize).cloned()
722                                         }
723                                 )*
724                                 None
725                         };
726                         let mut total_value_in = 0;
727                         for input in $tx.input.iter() {
728                                 total_value_in += get_output(&input.previous_output).unwrap().value;
729                         }
730                         let mut total_value_out = 0;
731                         for output in $tx.output.iter() {
732                                 total_value_out += output.value;
733                         }
734                         let min_fee = ($tx.get_weight() as u64 + 3) / 4; // One sat per vbyte (ie per weight/4, rounded up)
735                         // Input amount - output amount = fee, so check that out + min_fee is smaller than input
736                         assert!(total_value_out + min_fee <= total_value_in);
737                         $tx.verify(get_output).unwrap();
738                 }
739         }
740 }
741
742 macro_rules! get_closing_signed_broadcast {
743         ($node: expr, $dest_pubkey: expr) => {
744                 {
745                         let events = $node.get_and_clear_pending_msg_events();
746                         assert!(events.len() == 1 || events.len() == 2);
747                         (match events[events.len() - 1] {
748                                 MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
749                                         assert_eq!(msg.contents.flags & 2, 2);
750                                         msg.clone()
751                                 },
752                                 _ => panic!("Unexpected event"),
753                         }, if events.len() == 2 {
754                                 match events[0] {
755                                         MessageSendEvent::SendClosingSigned { ref node_id, ref msg } => {
756                                                 assert_eq!(*node_id, $dest_pubkey);
757                                                 Some(msg.clone())
758                                         },
759                                         _ => panic!("Unexpected event"),
760                                 }
761                         } else { None })
762                 }
763         }
764 }
765
766 /// Check that a channel's closing channel update has been broadcasted, and optionally
767 /// check whether an error message event has occurred.
768 #[macro_export]
769 macro_rules! check_closed_broadcast {
770         ($node: expr, $with_error_msg: expr) => {{
771                 let msg_events = $node.node.get_and_clear_pending_msg_events();
772                 assert_eq!(msg_events.len(), if $with_error_msg { 2 } else { 1 });
773                 match msg_events[0] {
774                         MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
775                                 assert_eq!(msg.contents.flags & 2, 2);
776                         },
777                         _ => panic!("Unexpected event"),
778                 }
779                 if $with_error_msg {
780                         match msg_events[1] {
781                                 MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { ref msg }, node_id: _ } => {
782                                         // TODO: Check node_id
783                                         Some(msg.clone())
784                                 },
785                                 _ => panic!("Unexpected event"),
786                         }
787                 } else { None }
788         }}
789 }
790
791 /// Check that a channel's closing channel events has been issued
792 #[macro_export]
793 macro_rules! check_closed_event {
794         ($node: expr, $events: expr, $reason: expr) => {
795                 check_closed_event!($node, $events, $reason, false);
796         };
797         ($node: expr, $events: expr, $reason: expr, $is_check_discard_funding: expr) => {{
798                 let events = $node.node.get_and_clear_pending_events();
799                 assert_eq!(events.len(), $events);
800                 let expected_reason = $reason;
801                 let mut issues_discard_funding = false;
802                 for event in events {
803                         match event {
804                                 Event::ChannelClosed { ref reason, .. } => {
805                                         assert_eq!(*reason, expected_reason);
806                                 },
807                                 Event::DiscardFunding { .. } => {
808                                         issues_discard_funding = true;
809                                 }
810                                 _ => panic!("Unexpected event"),
811                         }
812                 }
813                 assert_eq!($is_check_discard_funding, issues_discard_funding);
814         }}
815 }
816
817 pub fn close_channel<'a, 'b, 'c>(outbound_node: &Node<'a, 'b, 'c>, inbound_node: &Node<'a, 'b, 'c>, channel_id: &[u8; 32], funding_tx: Transaction, close_inbound_first: bool) -> (msgs::ChannelUpdate, msgs::ChannelUpdate, Transaction) {
818         let (node_a, broadcaster_a, struct_a) = if close_inbound_first { (&inbound_node.node, &inbound_node.tx_broadcaster, inbound_node) } else { (&outbound_node.node, &outbound_node.tx_broadcaster, outbound_node) };
819         let (node_b, broadcaster_b, struct_b) = if close_inbound_first { (&outbound_node.node, &outbound_node.tx_broadcaster, outbound_node) } else { (&inbound_node.node, &inbound_node.tx_broadcaster, inbound_node) };
820         let (tx_a, tx_b);
821
822         node_a.close_channel(channel_id).unwrap();
823         node_b.handle_shutdown(&node_a.get_our_node_id(), &InitFeatures::known(), &get_event_msg!(struct_a, MessageSendEvent::SendShutdown, node_b.get_our_node_id()));
824
825         let events_1 = node_b.get_and_clear_pending_msg_events();
826         assert!(events_1.len() >= 1);
827         let shutdown_b = match events_1[0] {
828                 MessageSendEvent::SendShutdown { ref node_id, ref msg } => {
829                         assert_eq!(node_id, &node_a.get_our_node_id());
830                         msg.clone()
831                 },
832                 _ => panic!("Unexpected event"),
833         };
834
835         let closing_signed_b = if !close_inbound_first {
836                 assert_eq!(events_1.len(), 1);
837                 None
838         } else {
839                 Some(match events_1[1] {
840                         MessageSendEvent::SendClosingSigned { ref node_id, ref msg } => {
841                                 assert_eq!(node_id, &node_a.get_our_node_id());
842                                 msg.clone()
843                         },
844                         _ => panic!("Unexpected event"),
845                 })
846         };
847
848         node_a.handle_shutdown(&node_b.get_our_node_id(), &InitFeatures::known(), &shutdown_b);
849         let (as_update, bs_update) = if close_inbound_first {
850                 assert!(node_a.get_and_clear_pending_msg_events().is_empty());
851                 node_a.handle_closing_signed(&node_b.get_our_node_id(), &closing_signed_b.unwrap());
852
853                 node_b.handle_closing_signed(&node_a.get_our_node_id(), &get_event_msg!(struct_a, MessageSendEvent::SendClosingSigned, node_b.get_our_node_id()));
854                 assert_eq!(broadcaster_b.txn_broadcasted.lock().unwrap().len(), 1);
855                 tx_b = broadcaster_b.txn_broadcasted.lock().unwrap().remove(0);
856                 let (bs_update, closing_signed_b) = get_closing_signed_broadcast!(node_b, node_a.get_our_node_id());
857
858                 node_a.handle_closing_signed(&node_b.get_our_node_id(), &closing_signed_b.unwrap());
859                 let (as_update, none_a) = get_closing_signed_broadcast!(node_a, node_b.get_our_node_id());
860                 assert!(none_a.is_none());
861                 assert_eq!(broadcaster_a.txn_broadcasted.lock().unwrap().len(), 1);
862                 tx_a = broadcaster_a.txn_broadcasted.lock().unwrap().remove(0);
863                 (as_update, bs_update)
864         } else {
865                 let closing_signed_a = get_event_msg!(struct_a, MessageSendEvent::SendClosingSigned, node_b.get_our_node_id());
866
867                 node_b.handle_closing_signed(&node_a.get_our_node_id(), &closing_signed_a);
868                 node_a.handle_closing_signed(&node_b.get_our_node_id(), &get_event_msg!(struct_b, MessageSendEvent::SendClosingSigned, node_a.get_our_node_id()));
869
870                 assert_eq!(broadcaster_a.txn_broadcasted.lock().unwrap().len(), 1);
871                 tx_a = broadcaster_a.txn_broadcasted.lock().unwrap().remove(0);
872                 let (as_update, closing_signed_a) = get_closing_signed_broadcast!(node_a, node_b.get_our_node_id());
873
874                 node_b.handle_closing_signed(&node_a.get_our_node_id(), &closing_signed_a.unwrap());
875                 let (bs_update, none_b) = get_closing_signed_broadcast!(node_b, node_a.get_our_node_id());
876                 assert!(none_b.is_none());
877                 assert_eq!(broadcaster_b.txn_broadcasted.lock().unwrap().len(), 1);
878                 tx_b = broadcaster_b.txn_broadcasted.lock().unwrap().remove(0);
879                 (as_update, bs_update)
880         };
881         assert_eq!(tx_a, tx_b);
882         check_spends!(tx_a, funding_tx);
883
884         (as_update, bs_update, tx_a)
885 }
886
887 pub struct SendEvent {
888         pub node_id: PublicKey,
889         pub msgs: Vec<msgs::UpdateAddHTLC>,
890         pub commitment_msg: msgs::CommitmentSigned,
891 }
892 impl SendEvent {
893         pub fn from_commitment_update(node_id: PublicKey, updates: msgs::CommitmentUpdate) -> SendEvent {
894                 assert!(updates.update_fulfill_htlcs.is_empty());
895                 assert!(updates.update_fail_htlcs.is_empty());
896                 assert!(updates.update_fail_malformed_htlcs.is_empty());
897                 assert!(updates.update_fee.is_none());
898                 SendEvent { node_id: node_id, msgs: updates.update_add_htlcs, commitment_msg: updates.commitment_signed }
899         }
900
901         pub fn from_event(event: MessageSendEvent) -> SendEvent {
902                 match event {
903                         MessageSendEvent::UpdateHTLCs { node_id, updates } => SendEvent::from_commitment_update(node_id, updates),
904                         _ => panic!("Unexpected event type!"),
905                 }
906         }
907
908         pub fn from_node<'a, 'b, 'c>(node: &Node<'a, 'b, 'c>) -> SendEvent {
909                 let mut events = node.node.get_and_clear_pending_msg_events();
910                 assert_eq!(events.len(), 1);
911                 SendEvent::from_event(events.pop().unwrap())
912         }
913 }
914
915 macro_rules! commitment_signed_dance {
916         ($node_a: expr, $node_b: expr, $commitment_signed: expr, $fail_backwards: expr, true /* skip last step */) => {
917                 {
918                         check_added_monitors!($node_a, 0);
919                         assert!($node_a.node.get_and_clear_pending_msg_events().is_empty());
920                         $node_a.node.handle_commitment_signed(&$node_b.node.get_our_node_id(), &$commitment_signed);
921                         check_added_monitors!($node_a, 1);
922                         commitment_signed_dance!($node_a, $node_b, (), $fail_backwards, true, false);
923                 }
924         };
925         ($node_a: expr, $node_b: expr, (), $fail_backwards: expr, true /* skip last step */, true /* return extra message */, true /* return last RAA */) => {
926                 {
927                         let (as_revoke_and_ack, as_commitment_signed) = get_revoke_commit_msgs!($node_a, $node_b.node.get_our_node_id());
928                         check_added_monitors!($node_b, 0);
929                         assert!($node_b.node.get_and_clear_pending_msg_events().is_empty());
930                         $node_b.node.handle_revoke_and_ack(&$node_a.node.get_our_node_id(), &as_revoke_and_ack);
931                         assert!($node_b.node.get_and_clear_pending_msg_events().is_empty());
932                         check_added_monitors!($node_b, 1);
933                         $node_b.node.handle_commitment_signed(&$node_a.node.get_our_node_id(), &as_commitment_signed);
934                         let (bs_revoke_and_ack, extra_msg_option) = {
935                                 let events = $node_b.node.get_and_clear_pending_msg_events();
936                                 assert!(events.len() <= 2);
937                                 (match events[0] {
938                                         MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
939                                                 assert_eq!(*node_id, $node_a.node.get_our_node_id());
940                                                 (*msg).clone()
941                                         },
942                                         _ => panic!("Unexpected event"),
943                                 }, events.get(1).map(|e| e.clone()))
944                         };
945                         check_added_monitors!($node_b, 1);
946                         if $fail_backwards {
947                                 assert!($node_a.node.get_and_clear_pending_events().is_empty());
948                                 assert!($node_a.node.get_and_clear_pending_msg_events().is_empty());
949                         }
950                         (extra_msg_option, bs_revoke_and_ack)
951                 }
952         };
953         ($node_a: expr, $node_b: expr, $commitment_signed: expr, $fail_backwards: expr, true /* skip last step */, false /* return extra message */, true /* return last RAA */) => {
954                 {
955                         check_added_monitors!($node_a, 0);
956                         assert!($node_a.node.get_and_clear_pending_msg_events().is_empty());
957                         $node_a.node.handle_commitment_signed(&$node_b.node.get_our_node_id(), &$commitment_signed);
958                         check_added_monitors!($node_a, 1);
959                         let (extra_msg_option, bs_revoke_and_ack) = commitment_signed_dance!($node_a, $node_b, (), $fail_backwards, true, true, true);
960                         assert!(extra_msg_option.is_none());
961                         bs_revoke_and_ack
962                 }
963         };
964         ($node_a: expr, $node_b: expr, (), $fail_backwards: expr, true /* skip last step */, true /* return extra message */) => {
965                 {
966                         let (extra_msg_option, bs_revoke_and_ack) = commitment_signed_dance!($node_a, $node_b, (), $fail_backwards, true, true, true);
967                         $node_a.node.handle_revoke_and_ack(&$node_b.node.get_our_node_id(), &bs_revoke_and_ack);
968                         check_added_monitors!($node_a, 1);
969                         extra_msg_option
970                 }
971         };
972         ($node_a: expr, $node_b: expr, (), $fail_backwards: expr, true /* skip last step */, false /* no extra message */) => {
973                 {
974                         assert!(commitment_signed_dance!($node_a, $node_b, (), $fail_backwards, true, true).is_none());
975                 }
976         };
977         ($node_a: expr, $node_b: expr, $commitment_signed: expr, $fail_backwards: expr) => {
978                 {
979                         commitment_signed_dance!($node_a, $node_b, $commitment_signed, $fail_backwards, true);
980                         if $fail_backwards {
981                                 expect_pending_htlcs_forwardable!($node_a);
982                                 check_added_monitors!($node_a, 1);
983
984                                 let channel_state = $node_a.node.channel_state.lock().unwrap();
985                                 assert_eq!(channel_state.pending_msg_events.len(), 1);
986                                 if let MessageSendEvent::UpdateHTLCs { ref node_id, .. } = channel_state.pending_msg_events[0] {
987                                         assert_ne!(*node_id, $node_b.node.get_our_node_id());
988                                 } else { panic!("Unexpected event"); }
989                         } else {
990                                 assert!($node_a.node.get_and_clear_pending_msg_events().is_empty());
991                         }
992                 }
993         }
994 }
995
996 /// Get a payment preimage and hash.
997 #[macro_export]
998 macro_rules! get_payment_preimage_hash {
999         ($dest_node: expr) => {
1000                 {
1001                         get_payment_preimage_hash!($dest_node, None)
1002                 }
1003         };
1004         ($dest_node: expr, $min_value_msat: expr) => {
1005                 {
1006                         let mut payment_count = $dest_node.network_payment_count.borrow_mut();
1007                         let payment_preimage = PaymentPreimage([*payment_count; 32]);
1008                         *payment_count += 1;
1009                         let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
1010                         let payment_secret = $dest_node.node.create_inbound_payment_for_hash(payment_hash, $min_value_msat, 7200).unwrap();
1011                         (payment_preimage, payment_hash, payment_secret)
1012                 }
1013         }
1014 }
1015
1016 #[cfg(test)]
1017 macro_rules! get_route_and_payment_hash {
1018         ($send_node: expr, $recv_node: expr, $recv_value: expr) => {{
1019                 get_route_and_payment_hash!($send_node, $recv_node, vec![], $recv_value, TEST_FINAL_CLTV)
1020         }};
1021         ($send_node: expr, $recv_node: expr, $last_hops: expr, $recv_value: expr, $cltv: expr) => {{
1022                 let (payment_preimage, payment_hash, payment_secret) = get_payment_preimage_hash!($recv_node, Some($recv_value));
1023                 let payee = $crate::routing::router::Payee::from_node_id($recv_node.node.get_our_node_id())
1024                         .with_features($crate::ln::features::InvoiceFeatures::known())
1025                         .with_route_hints($last_hops);
1026                 let scorer = ::util::test_utils::TestScorer::with_fixed_penalty(0);
1027                 let route = ::routing::router::get_route(
1028                         &$send_node.node.get_our_node_id(), &payee, $send_node.network_graph,
1029                         Some(&$send_node.node.list_usable_channels().iter().collect::<Vec<_>>()),
1030                         $recv_value, $cltv, $send_node.logger, &scorer
1031                 ).unwrap();
1032                 (route, payment_hash, payment_preimage, payment_secret)
1033         }}
1034 }
1035
1036 macro_rules! expect_pending_htlcs_forwardable_ignore {
1037         ($node: expr) => {{
1038                 let events = $node.node.get_and_clear_pending_events();
1039                 assert_eq!(events.len(), 1);
1040                 match events[0] {
1041                         Event::PendingHTLCsForwardable { .. } => { },
1042                         _ => panic!("Unexpected event"),
1043                 };
1044         }}
1045 }
1046
1047 macro_rules! expect_pending_htlcs_forwardable {
1048         ($node: expr) => {{
1049                 expect_pending_htlcs_forwardable_ignore!($node);
1050                 $node.node.process_pending_htlc_forwards();
1051         }}
1052 }
1053
1054 #[cfg(test)]
1055 macro_rules! expect_pending_htlcs_forwardable_from_events {
1056         ($node: expr, $events: expr, $ignore: expr) => {{
1057                 assert_eq!($events.len(), 1);
1058                 match $events[0] {
1059                         Event::PendingHTLCsForwardable { .. } => { },
1060                         _ => panic!("Unexpected event"),
1061                 };
1062                 if $ignore {
1063                         $node.node.process_pending_htlc_forwards();
1064                 }
1065         }}
1066 }
1067
1068 #[cfg(any(test, feature = "unstable"))]
1069 macro_rules! expect_payment_received {
1070         ($node: expr, $expected_payment_hash: expr, $expected_payment_secret: expr, $expected_recv_value: expr) => {
1071                 let events = $node.node.get_and_clear_pending_events();
1072                 assert_eq!(events.len(), 1);
1073                 match events[0] {
1074                         Event::PaymentReceived { ref payment_hash, ref purpose, amt } => {
1075                                 assert_eq!($expected_payment_hash, *payment_hash);
1076                                 assert_eq!($expected_recv_value, amt);
1077                                 match purpose {
1078                                         PaymentPurpose::InvoicePayment { payment_preimage, payment_secret, .. } => {
1079                                                 assert!(payment_preimage.is_none());
1080                                                 assert_eq!($expected_payment_secret, *payment_secret);
1081                                         },
1082                                         _ => {},
1083                                 }
1084                         },
1085                         _ => panic!("Unexpected event"),
1086                 }
1087         }
1088 }
1089
1090 macro_rules! expect_payment_sent {
1091         ($node: expr, $expected_payment_preimage: expr) => {
1092                 expect_payment_sent!($node, $expected_payment_preimage, None::<u64>);
1093         };
1094         ($node: expr, $expected_payment_preimage: expr, $expected_fee_msat_opt: expr) => {
1095                 let events = $node.node.get_and_clear_pending_events();
1096                 let expected_payment_hash = PaymentHash(Sha256::hash(&$expected_payment_preimage.0).into_inner());
1097                 assert_eq!(events.len(), 1);
1098                 match events[0] {
1099                         Event::PaymentSent { payment_id: _, ref payment_preimage, ref payment_hash, ref fee_paid_msat } => {
1100                                 assert_eq!($expected_payment_preimage, *payment_preimage);
1101                                 assert_eq!(expected_payment_hash, *payment_hash);
1102                                 assert!(fee_paid_msat.is_some());
1103                                 if $expected_fee_msat_opt.is_some() {
1104                                         assert_eq!(*fee_paid_msat, $expected_fee_msat_opt);
1105                                 }
1106                         },
1107                         _ => panic!("Unexpected event"),
1108                 }
1109         }
1110 }
1111
1112 macro_rules! expect_payment_forwarded {
1113         ($node: expr, $expected_fee: expr, $upstream_force_closed: expr) => {
1114                 let events = $node.node.get_and_clear_pending_events();
1115                 assert_eq!(events.len(), 1);
1116                 match events[0] {
1117                         Event::PaymentForwarded { fee_earned_msat, claim_from_onchain_tx } => {
1118                                 assert_eq!(fee_earned_msat, $expected_fee);
1119                                 assert_eq!(claim_from_onchain_tx, $upstream_force_closed);
1120                         },
1121                         _ => panic!("Unexpected event"),
1122                 }
1123         }
1124 }
1125
1126 #[cfg(test)]
1127 macro_rules! expect_payment_failed_with_update {
1128         ($node: expr, $expected_payment_hash: expr, $rejected_by_dest: expr, $scid: expr, $chan_closed: expr) => {
1129                 let events = $node.node.get_and_clear_pending_events();
1130                 assert_eq!(events.len(), 1);
1131                 match events[0] {
1132                         Event::PaymentPathFailed { ref payment_hash, rejected_by_dest, ref network_update, ref error_code, ref error_data, ref path, ref retry, .. } => {
1133                                 assert_eq!(*payment_hash, $expected_payment_hash, "unexpected payment_hash");
1134                                 assert_eq!(rejected_by_dest, $rejected_by_dest, "unexpected rejected_by_dest value");
1135                                 assert!(retry.is_some(), "expected retry.is_some()");
1136                                 assert_eq!(retry.as_ref().unwrap().final_value_msat, path.last().unwrap().fee_msat, "Retry amount should match last hop in path");
1137                                 assert_eq!(retry.as_ref().unwrap().payee.pubkey, path.last().unwrap().pubkey, "Retry payee node_id should match last hop in path");
1138                                 assert!(error_code.is_some(), "expected error_code.is_some() = true");
1139                                 assert!(error_data.is_some(), "expected error_data.is_some() = true");
1140                                 match network_update {
1141                                         &Some(NetworkUpdate::ChannelUpdateMessage { ref msg }) if !$chan_closed => {
1142                                                 assert_eq!(msg.contents.short_channel_id, $scid);
1143                                                 assert_eq!(msg.contents.flags & 2, 0);
1144                                         },
1145                                         &Some(NetworkUpdate::ChannelClosed { short_channel_id, is_permanent }) if $chan_closed => {
1146                                                 assert_eq!(short_channel_id, $scid);
1147                                                 assert!(is_permanent);
1148                                         },
1149                                         Some(_) => panic!("Unexpected update type"),
1150                                         None => panic!("Expected update"),
1151                                 }
1152                         },
1153                         _ => panic!("Unexpected event"),
1154                 }
1155         }
1156 }
1157
1158 #[cfg(test)]
1159 macro_rules! expect_payment_failed {
1160         ($node: expr, $expected_payment_hash: expr, $rejected_by_dest: expr $(, $expected_error_code: expr, $expected_error_data: expr)*) => {
1161                 let events = $node.node.get_and_clear_pending_events();
1162                 assert_eq!(events.len(), 1);
1163                 match events[0] {
1164                         Event::PaymentPathFailed { ref payment_hash, rejected_by_dest, network_update: _, ref error_code, ref error_data, ref path, ref retry, .. } => {
1165                                 assert_eq!(*payment_hash, $expected_payment_hash, "unexpected payment_hash");
1166                                 assert_eq!(rejected_by_dest, $rejected_by_dest, "unexpected rejected_by_dest value");
1167                                 assert!(retry.is_some(), "expected retry.is_some()");
1168                                 assert_eq!(retry.as_ref().unwrap().final_value_msat, path.last().unwrap().fee_msat, "Retry amount should match last hop in path");
1169                                 assert_eq!(retry.as_ref().unwrap().payee.pubkey, path.last().unwrap().pubkey, "Retry payee node_id should match last hop in path");
1170                                 assert!(error_code.is_some(), "expected error_code.is_some() = true");
1171                                 assert!(error_data.is_some(), "expected error_data.is_some() = true");
1172                                 $(
1173                                         assert_eq!(error_code.unwrap(), $expected_error_code, "unexpected error code");
1174                                         assert_eq!(&error_data.as_ref().unwrap()[..], $expected_error_data, "unexpected error data");
1175                                 )*
1176                         },
1177                         _ => panic!("Unexpected event"),
1178                 }
1179         }
1180 }
1181
1182 pub fn send_along_route_with_secret<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, route: Route, expected_paths: &[&[&Node<'a, 'b, 'c>]], recv_value: u64, our_payment_hash: PaymentHash, our_payment_secret: PaymentSecret) -> PaymentId {
1183         let payment_id = origin_node.node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
1184         check_added_monitors!(origin_node, expected_paths.len());
1185         pass_along_route(origin_node, expected_paths, recv_value, our_payment_hash, our_payment_secret);
1186         payment_id
1187 }
1188
1189 pub fn pass_along_path<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_path: &[&Node<'a, 'b, 'c>], recv_value: u64, our_payment_hash: PaymentHash, our_payment_secret: Option<PaymentSecret>, ev: MessageSendEvent, payment_received_expected: bool, expected_preimage: Option<PaymentPreimage>) {
1190         let mut payment_event = SendEvent::from_event(ev);
1191         let mut prev_node = origin_node;
1192
1193         for (idx, &node) in expected_path.iter().enumerate() {
1194                 assert_eq!(node.node.get_our_node_id(), payment_event.node_id);
1195
1196                 node.node.handle_update_add_htlc(&prev_node.node.get_our_node_id(), &payment_event.msgs[0]);
1197                 check_added_monitors!(node, 0);
1198                 commitment_signed_dance!(node, prev_node, payment_event.commitment_msg, false);
1199
1200                 expect_pending_htlcs_forwardable!(node);
1201
1202                 if idx == expected_path.len() - 1 {
1203                         let events_2 = node.node.get_and_clear_pending_events();
1204                         if payment_received_expected {
1205                                 assert_eq!(events_2.len(), 1);
1206                                 match events_2[0] {
1207                                         Event::PaymentReceived { ref payment_hash, ref purpose, amt} => {
1208                                                 assert_eq!(our_payment_hash, *payment_hash);
1209                                                 match &purpose {
1210                                                         PaymentPurpose::InvoicePayment { payment_preimage, payment_secret, .. } => {
1211                                                                 assert_eq!(expected_preimage, *payment_preimage);
1212                                                                 assert_eq!(our_payment_secret.unwrap(), *payment_secret);
1213                                                         },
1214                                                         PaymentPurpose::SpontaneousPayment(payment_preimage) => {
1215                                                                 assert_eq!(expected_preimage.unwrap(), *payment_preimage);
1216                                                                 assert!(our_payment_secret.is_none());
1217                                                         },
1218                                                 }
1219                                                 assert_eq!(amt, recv_value);
1220                                         },
1221                                         _ => panic!("Unexpected event"),
1222                                 }
1223                         } else {
1224                                 assert!(events_2.is_empty());
1225                         }
1226                 } else {
1227                         let mut events_2 = node.node.get_and_clear_pending_msg_events();
1228                         assert_eq!(events_2.len(), 1);
1229                         check_added_monitors!(node, 1);
1230                         payment_event = SendEvent::from_event(events_2.remove(0));
1231                         assert_eq!(payment_event.msgs.len(), 1);
1232                 }
1233
1234                 prev_node = node;
1235         }
1236 }
1237
1238 pub fn pass_along_route<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_route: &[&[&Node<'a, 'b, 'c>]], recv_value: u64, our_payment_hash: PaymentHash, our_payment_secret: PaymentSecret) {
1239         let mut events = origin_node.node.get_and_clear_pending_msg_events();
1240         assert_eq!(events.len(), expected_route.len());
1241         for (path_idx, (ev, expected_path)) in events.drain(..).zip(expected_route.iter()).enumerate() {
1242                 // Once we've gotten through all the HTLCs, the last one should result in a
1243                 // PaymentReceived (but each previous one should not!), .
1244                 let expect_payment = path_idx == expected_route.len() - 1;
1245                 pass_along_path(origin_node, expected_path, recv_value, our_payment_hash.clone(), Some(our_payment_secret), ev, expect_payment, None);
1246         }
1247 }
1248
1249 pub fn send_along_route<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, route: Route, expected_route: &[&Node<'a, 'b, 'c>], recv_value: u64) -> (PaymentPreimage, PaymentHash, PaymentSecret, PaymentId) {
1250         let (our_payment_preimage, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(expected_route.last().unwrap());
1251         let payment_id = send_along_route_with_secret(origin_node, route, &[expected_route], recv_value, our_payment_hash, our_payment_secret);
1252         (our_payment_preimage, our_payment_hash, our_payment_secret, payment_id)
1253 }
1254
1255 pub fn do_claim_payment_along_route<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_paths: &[&[&Node<'a, 'b, 'c>]], skip_last: bool, our_payment_preimage: PaymentPreimage) -> u64 {
1256         for path in expected_paths.iter() {
1257                 assert_eq!(path.last().unwrap().node.get_our_node_id(), expected_paths[0].last().unwrap().node.get_our_node_id());
1258         }
1259         assert!(expected_paths[0].last().unwrap().node.claim_funds(our_payment_preimage));
1260         check_added_monitors!(expected_paths[0].last().unwrap(), expected_paths.len());
1261
1262         let mut expected_total_fee_msat = 0;
1263
1264         macro_rules! msgs_from_ev {
1265                 ($ev: expr) => {
1266                         match $ev {
1267                                 &MessageSendEvent::UpdateHTLCs { ref node_id, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, ref update_fee, ref commitment_signed } } => {
1268                                         assert!(update_add_htlcs.is_empty());
1269                                         assert_eq!(update_fulfill_htlcs.len(), 1);
1270                                         assert!(update_fail_htlcs.is_empty());
1271                                         assert!(update_fail_malformed_htlcs.is_empty());
1272                                         assert!(update_fee.is_none());
1273                                         ((update_fulfill_htlcs[0].clone(), commitment_signed.clone()), node_id.clone())
1274                                 },
1275                                 _ => panic!("Unexpected event"),
1276                         }
1277                 }
1278         }
1279         let mut per_path_msgs: Vec<((msgs::UpdateFulfillHTLC, msgs::CommitmentSigned), PublicKey)> = Vec::with_capacity(expected_paths.len());
1280         let events = expected_paths[0].last().unwrap().node.get_and_clear_pending_msg_events();
1281         assert_eq!(events.len(), expected_paths.len());
1282         for ev in events.iter() {
1283                 per_path_msgs.push(msgs_from_ev!(ev));
1284         }
1285
1286         for (expected_route, (path_msgs, next_hop)) in expected_paths.iter().zip(per_path_msgs.drain(..)) {
1287                 let mut next_msgs = Some(path_msgs);
1288                 let mut expected_next_node = next_hop;
1289
1290                 macro_rules! last_update_fulfill_dance {
1291                         ($node: expr, $prev_node: expr) => {
1292                                 {
1293                                         $node.node.handle_update_fulfill_htlc(&$prev_node.node.get_our_node_id(), &next_msgs.as_ref().unwrap().0);
1294                                         check_added_monitors!($node, 0);
1295                                         assert!($node.node.get_and_clear_pending_msg_events().is_empty());
1296                                         commitment_signed_dance!($node, $prev_node, next_msgs.as_ref().unwrap().1, false);
1297                                 }
1298                         }
1299                 }
1300                 macro_rules! mid_update_fulfill_dance {
1301                         ($node: expr, $prev_node: expr, $new_msgs: expr) => {
1302                                 {
1303                                         $node.node.handle_update_fulfill_htlc(&$prev_node.node.get_our_node_id(), &next_msgs.as_ref().unwrap().0);
1304                                         let fee = $node.node.channel_state.lock().unwrap().by_id.get(&next_msgs.as_ref().unwrap().0.channel_id).unwrap().config.forwarding_fee_base_msat;
1305                                         expect_payment_forwarded!($node, Some(fee as u64), false);
1306                                         expected_total_fee_msat += fee as u64;
1307                                         check_added_monitors!($node, 1);
1308                                         let new_next_msgs = if $new_msgs {
1309                                                 let events = $node.node.get_and_clear_pending_msg_events();
1310                                                 assert_eq!(events.len(), 1);
1311                                                 let (res, nexthop) = msgs_from_ev!(&events[0]);
1312                                                 expected_next_node = nexthop;
1313                                                 Some(res)
1314                                         } else {
1315                                                 assert!($node.node.get_and_clear_pending_msg_events().is_empty());
1316                                                 None
1317                                         };
1318                                         commitment_signed_dance!($node, $prev_node, next_msgs.as_ref().unwrap().1, false);
1319                                         next_msgs = new_next_msgs;
1320                                 }
1321                         }
1322                 }
1323
1324                 let mut prev_node = expected_route.last().unwrap();
1325                 for (idx, node) in expected_route.iter().rev().enumerate().skip(1) {
1326                         assert_eq!(expected_next_node, node.node.get_our_node_id());
1327                         let update_next_msgs = !skip_last || idx != expected_route.len() - 1;
1328                         if next_msgs.is_some() {
1329                                 mid_update_fulfill_dance!(node, prev_node, update_next_msgs);
1330                         } else {
1331                                 assert!(!update_next_msgs);
1332                                 assert!(node.node.get_and_clear_pending_msg_events().is_empty());
1333                         }
1334                         if !skip_last && idx == expected_route.len() - 1 {
1335                                 assert_eq!(expected_next_node, origin_node.node.get_our_node_id());
1336                         }
1337
1338                         prev_node = node;
1339                 }
1340
1341                 if !skip_last {
1342                         last_update_fulfill_dance!(origin_node, expected_route.first().unwrap());
1343                 }
1344         }
1345         expected_total_fee_msat
1346 }
1347 pub fn claim_payment_along_route<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_paths: &[&[&Node<'a, 'b, 'c>]], skip_last: bool, our_payment_preimage: PaymentPreimage) {
1348         let expected_total_fee_msat = do_claim_payment_along_route(origin_node, expected_paths, skip_last, our_payment_preimage);
1349         if !skip_last {
1350                 expect_payment_sent!(origin_node, our_payment_preimage, Some(expected_total_fee_msat));
1351         }
1352 }
1353
1354 pub fn claim_payment<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_route: &[&Node<'a, 'b, 'c>], our_payment_preimage: PaymentPreimage) {
1355         claim_payment_along_route(origin_node, &[expected_route], false, our_payment_preimage);
1356 }
1357
1358 pub const TEST_FINAL_CLTV: u32 = 70;
1359
1360 pub fn route_payment<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_route: &[&Node<'a, 'b, 'c>], recv_value: u64) -> (PaymentPreimage, PaymentHash, PaymentSecret) {
1361         let payee = Payee::from_node_id(expected_route.last().unwrap().node.get_our_node_id())
1362                 .with_features(InvoiceFeatures::known());
1363         let scorer = test_utils::TestScorer::with_fixed_penalty(0);
1364         let route = get_route(
1365                 &origin_node.node.get_our_node_id(), &payee, &origin_node.network_graph,
1366                 Some(&origin_node.node.list_usable_channels().iter().collect::<Vec<_>>()),
1367                 recv_value, TEST_FINAL_CLTV, origin_node.logger, &scorer).unwrap();
1368         assert_eq!(route.paths.len(), 1);
1369         assert_eq!(route.paths[0].len(), expected_route.len());
1370         for (node, hop) in expected_route.iter().zip(route.paths[0].iter()) {
1371                 assert_eq!(hop.pubkey, node.node.get_our_node_id());
1372         }
1373
1374         let res = send_along_route(origin_node, route, expected_route, recv_value);
1375         (res.0, res.1, res.2)
1376 }
1377
1378 pub fn route_over_limit<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_route: &[&Node<'a, 'b, 'c>], recv_value: u64)  {
1379         let payee = Payee::from_node_id(expected_route.last().unwrap().node.get_our_node_id())
1380                 .with_features(InvoiceFeatures::known());
1381         let scorer = test_utils::TestScorer::with_fixed_penalty(0);
1382         let route = get_route(&origin_node.node.get_our_node_id(), &payee, origin_node.network_graph, None, recv_value, TEST_FINAL_CLTV, origin_node.logger, &scorer).unwrap();
1383         assert_eq!(route.paths.len(), 1);
1384         assert_eq!(route.paths[0].len(), expected_route.len());
1385         for (node, hop) in expected_route.iter().zip(route.paths[0].iter()) {
1386                 assert_eq!(hop.pubkey, node.node.get_our_node_id());
1387         }
1388
1389         let (_, our_payment_hash, our_payment_preimage) = get_payment_preimage_hash!(expected_route.last().unwrap());
1390         unwrap_send_err!(origin_node.node.send_payment(&route, our_payment_hash, &Some(our_payment_preimage)), true, APIError::ChannelUnavailable { ref err },
1391                 assert!(err.contains("Cannot send value that would put us over the max HTLC value in flight our peer will accept")));
1392 }
1393
1394 pub fn send_payment<'a, 'b, 'c>(origin: &Node<'a, 'b, 'c>, expected_route: &[&Node<'a, 'b, 'c>], recv_value: u64)  {
1395         let our_payment_preimage = route_payment(&origin, expected_route, recv_value).0;
1396         claim_payment(&origin, expected_route, our_payment_preimage);
1397 }
1398
1399 pub fn fail_payment_along_route<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_paths_slice: &[&[&Node<'a, 'b, 'c>]], skip_last: bool, our_payment_hash: PaymentHash)  {
1400         let mut expected_paths: Vec<_> = expected_paths_slice.iter().collect();
1401         for path in expected_paths.iter() {
1402                 assert_eq!(path.last().unwrap().node.get_our_node_id(), expected_paths[0].last().unwrap().node.get_our_node_id());
1403         }
1404         assert!(expected_paths[0].last().unwrap().node.fail_htlc_backwards(&our_payment_hash));
1405         expect_pending_htlcs_forwardable!(expected_paths[0].last().unwrap());
1406         check_added_monitors!(expected_paths[0].last().unwrap(), expected_paths.len());
1407
1408         let mut per_path_msgs: Vec<((msgs::UpdateFailHTLC, msgs::CommitmentSigned), PublicKey)> = Vec::with_capacity(expected_paths.len());
1409         let events = expected_paths[0].last().unwrap().node.get_and_clear_pending_msg_events();
1410         assert_eq!(events.len(), expected_paths.len());
1411         for ev in events.iter() {
1412                 let (update_fail, commitment_signed, node_id) = match ev {
1413                         &MessageSendEvent::UpdateHTLCs { ref node_id, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, ref update_fee, ref commitment_signed } } => {
1414                                 assert!(update_add_htlcs.is_empty());
1415                                 assert!(update_fulfill_htlcs.is_empty());
1416                                 assert_eq!(update_fail_htlcs.len(), 1);
1417                                 assert!(update_fail_malformed_htlcs.is_empty());
1418                                 assert!(update_fee.is_none());
1419                                 (update_fail_htlcs[0].clone(), commitment_signed.clone(), node_id.clone())
1420                         },
1421                         _ => panic!("Unexpected event"),
1422                 };
1423                 per_path_msgs.push(((update_fail, commitment_signed), node_id));
1424         }
1425         per_path_msgs.sort_unstable_by(|(_, node_id_a), (_, node_id_b)| node_id_a.cmp(node_id_b));
1426         expected_paths.sort_unstable_by(|path_a, path_b| path_a[path_a.len() - 2].node.get_our_node_id().cmp(&path_b[path_b.len() - 2].node.get_our_node_id()));
1427
1428         for (i, (expected_route, (path_msgs, next_hop))) in expected_paths.iter().zip(per_path_msgs.drain(..)).enumerate() {
1429                 let mut next_msgs = Some(path_msgs);
1430                 let mut expected_next_node = next_hop;
1431                 let mut prev_node = expected_route.last().unwrap();
1432
1433                 for (idx, node) in expected_route.iter().rev().enumerate().skip(1) {
1434                         assert_eq!(expected_next_node, node.node.get_our_node_id());
1435                         let update_next_node = !skip_last || idx != expected_route.len() - 1;
1436                         if next_msgs.is_some() {
1437                                 node.node.handle_update_fail_htlc(&prev_node.node.get_our_node_id(), &next_msgs.as_ref().unwrap().0);
1438                                 commitment_signed_dance!(node, prev_node, next_msgs.as_ref().unwrap().1, update_next_node);
1439                                 if !update_next_node {
1440                                         expect_pending_htlcs_forwardable!(node);
1441                                 }
1442                         }
1443                         let events = node.node.get_and_clear_pending_msg_events();
1444                         if update_next_node {
1445                                 assert_eq!(events.len(), 1);
1446                                 match events[0] {
1447                                         MessageSendEvent::UpdateHTLCs { ref node_id, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, ref update_fee, ref commitment_signed } } => {
1448                                                 assert!(update_add_htlcs.is_empty());
1449                                                 assert!(update_fulfill_htlcs.is_empty());
1450                                                 assert_eq!(update_fail_htlcs.len(), 1);
1451                                                 assert!(update_fail_malformed_htlcs.is_empty());
1452                                                 assert!(update_fee.is_none());
1453                                                 expected_next_node = node_id.clone();
1454                                                 next_msgs = Some((update_fail_htlcs[0].clone(), commitment_signed.clone()));
1455                                         },
1456                                         _ => panic!("Unexpected event"),
1457                                 }
1458                         } else {
1459                                 assert!(events.is_empty());
1460                         }
1461                         if !skip_last && idx == expected_route.len() - 1 {
1462                                 assert_eq!(expected_next_node, origin_node.node.get_our_node_id());
1463                         }
1464
1465                         prev_node = node;
1466                 }
1467
1468                 if !skip_last {
1469                         let prev_node = expected_route.first().unwrap();
1470                         origin_node.node.handle_update_fail_htlc(&prev_node.node.get_our_node_id(), &next_msgs.as_ref().unwrap().0);
1471                         check_added_monitors!(origin_node, 0);
1472                         assert!(origin_node.node.get_and_clear_pending_msg_events().is_empty());
1473                         commitment_signed_dance!(origin_node, prev_node, next_msgs.as_ref().unwrap().1, false);
1474                         let events = origin_node.node.get_and_clear_pending_events();
1475                         assert_eq!(events.len(), 1);
1476                         match events[0] {
1477                                 Event::PaymentPathFailed { payment_hash, rejected_by_dest, all_paths_failed, ref path, .. } => {
1478                                         assert_eq!(payment_hash, our_payment_hash);
1479                                         assert!(rejected_by_dest);
1480                                         assert_eq!(all_paths_failed, i == expected_paths.len() - 1);
1481                                         for (idx, hop) in expected_route.iter().enumerate() {
1482                                                 assert_eq!(hop.node.get_our_node_id(), path[idx].pubkey);
1483                                         }
1484                                 },
1485                                 _ => panic!("Unexpected event"),
1486                         }
1487                 }
1488         }
1489 }
1490
1491 pub fn fail_payment<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_path: &[&Node<'a, 'b, 'c>], our_payment_hash: PaymentHash)  {
1492         fail_payment_along_route(origin_node, &[&expected_path[..]], false, our_payment_hash);
1493 }
1494
1495 pub fn create_chanmon_cfgs(node_count: usize) -> Vec<TestChanMonCfg> {
1496         let mut chan_mon_cfgs = Vec::new();
1497         for i in 0..node_count {
1498                 let tx_broadcaster = test_utils::TestBroadcaster {
1499                         txn_broadcasted: Mutex::new(Vec::new()),
1500                         blocks: Arc::new(Mutex::new(vec![(genesis_block(Network::Testnet).header, 0)])),
1501                 };
1502                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
1503                 let chain_source = test_utils::TestChainSource::new(Network::Testnet);
1504                 let logger = test_utils::TestLogger::with_id(format!("node {}", i));
1505                 let persister = test_utils::TestPersister::new();
1506                 let seed = [i as u8; 32];
1507                 let keys_manager = test_utils::TestKeysInterface::new(&seed, Network::Testnet);
1508                 let network_graph = NetworkGraph::new(chain_source.genesis_hash);
1509
1510                 chan_mon_cfgs.push(TestChanMonCfg{ tx_broadcaster, fee_estimator, chain_source, logger, persister, keys_manager, network_graph });
1511         }
1512
1513         chan_mon_cfgs
1514 }
1515
1516 pub fn create_node_cfgs<'a>(node_count: usize, chanmon_cfgs: &'a Vec<TestChanMonCfg>) -> Vec<NodeCfg<'a>> {
1517         let mut nodes = Vec::new();
1518
1519         for i in 0..node_count {
1520                 let chain_monitor = test_utils::TestChainMonitor::new(Some(&chanmon_cfgs[i].chain_source), &chanmon_cfgs[i].tx_broadcaster, &chanmon_cfgs[i].logger, &chanmon_cfgs[i].fee_estimator, &chanmon_cfgs[i].persister, &chanmon_cfgs[i].keys_manager);
1521                 let seed = [i as u8; 32];
1522                 nodes.push(NodeCfg {
1523                         chain_source: &chanmon_cfgs[i].chain_source,
1524                         logger: &chanmon_cfgs[i].logger,
1525                         tx_broadcaster: &chanmon_cfgs[i].tx_broadcaster,
1526                         fee_estimator: &chanmon_cfgs[i].fee_estimator,
1527                         chain_monitor,
1528                         keys_manager: &chanmon_cfgs[i].keys_manager,
1529                         node_seed: seed,
1530                         features: InitFeatures::known(),
1531                         network_graph: &chanmon_cfgs[i].network_graph,
1532                 });
1533         }
1534
1535         nodes
1536 }
1537
1538 pub fn test_default_channel_config() -> UserConfig {
1539         let mut default_config = UserConfig::default();
1540         // Set cltv_expiry_delta slightly lower to keep the final CLTV values inside one byte in our
1541         // tests so that our script-length checks don't fail (see ACCEPTED_HTLC_SCRIPT_WEIGHT).
1542         default_config.channel_options.cltv_expiry_delta = 6*6;
1543         default_config.channel_options.announced_channel = true;
1544         default_config.peer_channel_config_limits.force_announced_channel_preference = false;
1545         // When most of our tests were written, the default HTLC minimum was fixed at 1000.
1546         // It now defaults to 1, so we simply set it to the expected value here.
1547         default_config.own_channel_config.our_htlc_minimum_msat = 1000;
1548         // When most of our tests were written, we didn't have the notion of a `max_dust_htlc_exposure_msat`,
1549         // It now defaults to 5_000_000 msat; to avoid interfering with tests we bump it to 50_000_000 msat.
1550         default_config.channel_options.max_dust_htlc_exposure_msat = 50_000_000;
1551         default_config
1552 }
1553
1554 pub fn create_node_chanmgrs<'a, 'b>(node_count: usize, cfgs: &'a Vec<NodeCfg<'b>>, node_config: &[Option<UserConfig>]) -> Vec<ChannelManager<EnforcingSigner, &'a TestChainMonitor<'b>, &'b test_utils::TestBroadcaster, &'a test_utils::TestKeysInterface, &'b test_utils::TestFeeEstimator, &'b test_utils::TestLogger>> {
1555         let mut chanmgrs = Vec::new();
1556         for i in 0..node_count {
1557                 let network = Network::Testnet;
1558                 let params = ChainParameters {
1559                         network,
1560                         best_block: BestBlock::from_genesis(network),
1561                 };
1562                 let node = ChannelManager::new(cfgs[i].fee_estimator, &cfgs[i].chain_monitor, cfgs[i].tx_broadcaster, cfgs[i].logger, cfgs[i].keys_manager,
1563                         if node_config[i].is_some() { node_config[i].clone().unwrap() } else { test_default_channel_config() }, params);
1564                 chanmgrs.push(node);
1565         }
1566
1567         chanmgrs
1568 }
1569
1570 pub fn create_network<'a, 'b: 'a, 'c: 'b>(node_count: usize, cfgs: &'b Vec<NodeCfg<'c>>, chan_mgrs: &'a Vec<ChannelManager<EnforcingSigner, &'b TestChainMonitor<'c>, &'c test_utils::TestBroadcaster, &'b test_utils::TestKeysInterface, &'c test_utils::TestFeeEstimator, &'c test_utils::TestLogger>>) -> Vec<Node<'a, 'b, 'c>> {
1571         let mut nodes = Vec::new();
1572         let chan_count = Rc::new(RefCell::new(0));
1573         let payment_count = Rc::new(RefCell::new(0));
1574         let connect_style = Rc::new(RefCell::new(ConnectStyle::FullBlockViaListen));
1575
1576         for i in 0..node_count {
1577                 let net_graph_msg_handler = NetGraphMsgHandler::new(cfgs[i].network_graph, None, cfgs[i].logger);
1578                 nodes.push(Node{
1579                         chain_source: cfgs[i].chain_source, tx_broadcaster: cfgs[i].tx_broadcaster,
1580                         chain_monitor: &cfgs[i].chain_monitor, keys_manager: &cfgs[i].keys_manager,
1581                         node: &chan_mgrs[i], network_graph: &cfgs[i].network_graph, net_graph_msg_handler,
1582                         node_seed: cfgs[i].node_seed, network_chan_count: chan_count.clone(),
1583                         network_payment_count: payment_count.clone(), logger: cfgs[i].logger,
1584                         blocks: Arc::clone(&cfgs[i].tx_broadcaster.blocks),
1585                         connect_style: Rc::clone(&connect_style),
1586                 })
1587         }
1588
1589         for i in 0..node_count {
1590                 for j in (i+1)..node_count {
1591                         nodes[i].node.peer_connected(&nodes[j].node.get_our_node_id(), &msgs::Init { features: cfgs[j].features.clone() });
1592                         nodes[j].node.peer_connected(&nodes[i].node.get_our_node_id(), &msgs::Init { features: cfgs[i].features.clone() });
1593                 }
1594         }
1595
1596         nodes
1597 }
1598
1599 // Note that the following only works for CLTV values up to 128
1600 pub const ACCEPTED_HTLC_SCRIPT_WEIGHT: usize = 137; //Here we have a diff due to HTLC CLTV expiry being < 2^15 in test
1601 pub const OFFERED_HTLC_SCRIPT_WEIGHT: usize = 133;
1602
1603 #[derive(PartialEq)]
1604 pub enum HTLCType { NONE, TIMEOUT, SUCCESS }
1605 /// Tests that the given node has broadcast transactions for the given Channel
1606 ///
1607 /// First checks that the latest holder commitment tx has been broadcast, unless an explicit
1608 /// commitment_tx is provided, which may be used to test that a remote commitment tx was
1609 /// broadcast and the revoked outputs were claimed.
1610 ///
1611 /// Next tests that there is (or is not) a transaction that spends the commitment transaction
1612 /// that appears to be the type of HTLC transaction specified in has_htlc_tx.
1613 ///
1614 /// All broadcast transactions must be accounted for in one of the above three types of we'll
1615 /// also fail.
1616 pub fn test_txn_broadcast<'a, 'b, 'c>(node: &Node<'a, 'b, 'c>, chan: &(msgs::ChannelUpdate, msgs::ChannelUpdate, [u8; 32], Transaction), commitment_tx: Option<Transaction>, has_htlc_tx: HTLCType) -> Vec<Transaction>  {
1617         let mut node_txn = node.tx_broadcaster.txn_broadcasted.lock().unwrap();
1618         assert!(node_txn.len() >= if commitment_tx.is_some() { 0 } else { 1 } + if has_htlc_tx == HTLCType::NONE { 0 } else { 1 });
1619
1620         let mut res = Vec::with_capacity(2);
1621         node_txn.retain(|tx| {
1622                 if tx.input.len() == 1 && tx.input[0].previous_output.txid == chan.3.txid() {
1623                         check_spends!(tx, chan.3);
1624                         if commitment_tx.is_none() {
1625                                 res.push(tx.clone());
1626                         }
1627                         false
1628                 } else { true }
1629         });
1630         if let Some(explicit_tx) = commitment_tx {
1631                 res.push(explicit_tx.clone());
1632         }
1633
1634         assert_eq!(res.len(), 1);
1635
1636         if has_htlc_tx != HTLCType::NONE {
1637                 node_txn.retain(|tx| {
1638                         if tx.input.len() == 1 && tx.input[0].previous_output.txid == res[0].txid() {
1639                                 check_spends!(tx, res[0]);
1640                                 if has_htlc_tx == HTLCType::TIMEOUT {
1641                                         assert!(tx.lock_time != 0);
1642                                 } else {
1643                                         assert!(tx.lock_time == 0);
1644                                 }
1645                                 res.push(tx.clone());
1646                                 false
1647                         } else { true }
1648                 });
1649                 assert!(res.len() == 2 || res.len() == 3);
1650                 if res.len() == 3 {
1651                         assert_eq!(res[1], res[2]);
1652                 }
1653         }
1654
1655         assert!(node_txn.is_empty());
1656         res
1657 }
1658
1659 /// Tests that the given node has broadcast a claim transaction against the provided revoked
1660 /// HTLC transaction.
1661 pub fn test_revoked_htlc_claim_txn_broadcast<'a, 'b, 'c>(node: &Node<'a, 'b, 'c>, revoked_tx: Transaction, commitment_revoked_tx: Transaction)  {
1662         let mut node_txn = node.tx_broadcaster.txn_broadcasted.lock().unwrap();
1663         // We may issue multiple claiming transaction on revoked outputs due to block rescan
1664         // for revoked htlc outputs
1665         if node_txn.len() != 1 && node_txn.len() != 2 && node_txn.len() != 3 { assert!(false); }
1666         node_txn.retain(|tx| {
1667                 if tx.input.len() == 1 && tx.input[0].previous_output.txid == revoked_tx.txid() {
1668                         check_spends!(tx, revoked_tx);
1669                         false
1670                 } else { true }
1671         });
1672         node_txn.retain(|tx| {
1673                 check_spends!(tx, commitment_revoked_tx);
1674                 false
1675         });
1676         assert!(node_txn.is_empty());
1677 }
1678
1679 pub fn check_preimage_claim<'a, 'b, 'c>(node: &Node<'a, 'b, 'c>, prev_txn: &Vec<Transaction>) -> Vec<Transaction>  {
1680         let mut node_txn = node.tx_broadcaster.txn_broadcasted.lock().unwrap();
1681
1682         assert!(node_txn.len() >= 1);
1683         assert_eq!(node_txn[0].input.len(), 1);
1684         let mut found_prev = false;
1685
1686         for tx in prev_txn {
1687                 if node_txn[0].input[0].previous_output.txid == tx.txid() {
1688                         check_spends!(node_txn[0], tx);
1689                         assert!(node_txn[0].input[0].witness[2].len() > 106); // must spend an htlc output
1690                         assert_eq!(tx.input.len(), 1); // must spend a commitment tx
1691
1692                         found_prev = true;
1693                         break;
1694                 }
1695         }
1696         assert!(found_prev);
1697
1698         let mut res = Vec::new();
1699         mem::swap(&mut *node_txn, &mut res);
1700         res
1701 }
1702
1703 pub fn handle_announce_close_broadcast_events<'a, 'b, 'c>(nodes: &Vec<Node<'a, 'b, 'c>>, a: usize, b: usize, needs_err_handle: bool, expected_error: &str)  {
1704         let events_1 = nodes[a].node.get_and_clear_pending_msg_events();
1705         assert_eq!(events_1.len(), 2);
1706         let as_update = match events_1[0] {
1707                 MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
1708                         msg.clone()
1709                 },
1710                 _ => panic!("Unexpected event"),
1711         };
1712         match events_1[1] {
1713                 MessageSendEvent::HandleError { node_id, action: msgs::ErrorAction::SendErrorMessage { ref msg } } => {
1714                         assert_eq!(node_id, nodes[b].node.get_our_node_id());
1715                         assert_eq!(msg.data, expected_error);
1716                         if needs_err_handle {
1717                                 nodes[b].node.handle_error(&nodes[a].node.get_our_node_id(), msg);
1718                         }
1719                 },
1720                 _ => panic!("Unexpected event"),
1721         }
1722
1723         let events_2 = nodes[b].node.get_and_clear_pending_msg_events();
1724         assert_eq!(events_2.len(), if needs_err_handle { 1 } else { 2 });
1725         let bs_update = match events_2[0] {
1726                 MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
1727                         msg.clone()
1728                 },
1729                 _ => panic!("Unexpected event"),
1730         };
1731         if !needs_err_handle {
1732                 match events_2[1] {
1733                         MessageSendEvent::HandleError { node_id, action: msgs::ErrorAction::SendErrorMessage { ref msg } } => {
1734                                 assert_eq!(node_id, nodes[a].node.get_our_node_id());
1735                                 assert_eq!(msg.data, expected_error);
1736                         },
1737                         _ => panic!("Unexpected event"),
1738                 }
1739         }
1740
1741         for node in nodes {
1742                 node.net_graph_msg_handler.handle_channel_update(&as_update).unwrap();
1743                 node.net_graph_msg_handler.handle_channel_update(&bs_update).unwrap();
1744         }
1745 }
1746
1747 pub fn get_announce_close_broadcast_events<'a, 'b, 'c>(nodes: &Vec<Node<'a, 'b, 'c>>, a: usize, b: usize)  {
1748         handle_announce_close_broadcast_events(nodes, a, b, false, "Channel closed because commitment or closing transaction was confirmed on chain.");
1749 }
1750
1751 #[cfg(test)]
1752 macro_rules! get_channel_value_stat {
1753         ($node: expr, $channel_id: expr) => {{
1754                 let chan_lock = $node.node.channel_state.lock().unwrap();
1755                 let chan = chan_lock.by_id.get(&$channel_id).unwrap();
1756                 chan.get_value_stat()
1757         }}
1758 }
1759
1760 macro_rules! get_chan_reestablish_msgs {
1761         ($src_node: expr, $dst_node: expr) => {
1762                 {
1763                         let mut res = Vec::with_capacity(1);
1764                         for msg in $src_node.node.get_and_clear_pending_msg_events() {
1765                                 if let MessageSendEvent::SendChannelReestablish { ref node_id, ref msg } = msg {
1766                                         assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1767                                         res.push(msg.clone());
1768                                 } else {
1769                                         panic!("Unexpected event")
1770                                 }
1771                         }
1772                         res
1773                 }
1774         }
1775 }
1776
1777 macro_rules! handle_chan_reestablish_msgs {
1778         ($src_node: expr, $dst_node: expr) => {
1779                 {
1780                         let msg_events = $src_node.node.get_and_clear_pending_msg_events();
1781                         let mut idx = 0;
1782                         let funding_locked = if let Some(&MessageSendEvent::SendFundingLocked { ref node_id, ref msg }) = msg_events.get(0) {
1783                                 idx += 1;
1784                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1785                                 Some(msg.clone())
1786                         } else {
1787                                 None
1788                         };
1789
1790                         if let Some(&MessageSendEvent::SendAnnouncementSignatures { ref node_id, msg: _ }) = msg_events.get(idx) {
1791                                 idx += 1;
1792                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1793                         }
1794
1795                         let mut revoke_and_ack = None;
1796                         let mut commitment_update = None;
1797                         let order = if let Some(ev) = msg_events.get(idx) {
1798                                 match ev {
1799                                         &MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
1800                                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1801                                                 revoke_and_ack = Some(msg.clone());
1802                                                 idx += 1;
1803                                                 RAACommitmentOrder::RevokeAndACKFirst
1804                                         },
1805                                         &MessageSendEvent::UpdateHTLCs { ref node_id, ref updates } => {
1806                                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1807                                                 commitment_update = Some(updates.clone());
1808                                                 idx += 1;
1809                                                 RAACommitmentOrder::CommitmentFirst
1810                                         },
1811                                         &MessageSendEvent::SendChannelUpdate { .. } => RAACommitmentOrder::CommitmentFirst,
1812                                         _ => panic!("Unexpected event"),
1813                                 }
1814                         } else {
1815                                 RAACommitmentOrder::CommitmentFirst
1816                         };
1817
1818                         if let Some(ev) = msg_events.get(idx) {
1819                                 match ev {
1820                                         &MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
1821                                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1822                                                 assert!(revoke_and_ack.is_none());
1823                                                 revoke_and_ack = Some(msg.clone());
1824                                                 idx += 1;
1825                                         },
1826                                         &MessageSendEvent::UpdateHTLCs { ref node_id, ref updates } => {
1827                                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1828                                                 assert!(commitment_update.is_none());
1829                                                 commitment_update = Some(updates.clone());
1830                                                 idx += 1;
1831                                         },
1832                                         &MessageSendEvent::SendChannelUpdate { .. } => {},
1833                                         _ => panic!("Unexpected event"),
1834                                 }
1835                         }
1836
1837                         if let Some(&MessageSendEvent::SendChannelUpdate { ref node_id, ref msg }) = msg_events.get(idx) {
1838                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1839                                 assert_eq!(msg.contents.flags & 2, 0); // "disabled" flag must not be set as we just reconnected.
1840                         }
1841
1842                         (funding_locked, revoke_and_ack, commitment_update, order)
1843                 }
1844         }
1845 }
1846
1847 /// pending_htlc_adds includes both the holding cell and in-flight update_add_htlcs, whereas
1848 /// for claims/fails they are separated out.
1849 pub fn reconnect_nodes<'a, 'b, 'c>(node_a: &Node<'a, 'b, 'c>, node_b: &Node<'a, 'b, 'c>, send_funding_locked: (bool, bool), pending_htlc_adds: (i64, i64), pending_htlc_claims: (usize, usize), pending_htlc_fails: (usize, usize), pending_cell_htlc_claims: (usize, usize), pending_cell_htlc_fails: (usize, usize), pending_raa: (bool, bool))  {
1850         node_a.node.peer_connected(&node_b.node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty() });
1851         let reestablish_1 = get_chan_reestablish_msgs!(node_a, node_b);
1852         node_b.node.peer_connected(&node_a.node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty() });
1853         let reestablish_2 = get_chan_reestablish_msgs!(node_b, node_a);
1854
1855         if send_funding_locked.0 {
1856                 // If a expects a funding_locked, it better not think it has received a revoke_and_ack
1857                 // from b
1858                 for reestablish in reestablish_1.iter() {
1859                         assert_eq!(reestablish.next_remote_commitment_number, 0);
1860                 }
1861         }
1862         if send_funding_locked.1 {
1863                 // If b expects a funding_locked, it better not think it has received a revoke_and_ack
1864                 // from a
1865                 for reestablish in reestablish_2.iter() {
1866                         assert_eq!(reestablish.next_remote_commitment_number, 0);
1867                 }
1868         }
1869         if send_funding_locked.0 || send_funding_locked.1 {
1870                 // If we expect any funding_locked's, both sides better have set
1871                 // next_holder_commitment_number to 1
1872                 for reestablish in reestablish_1.iter() {
1873                         assert_eq!(reestablish.next_local_commitment_number, 1);
1874                 }
1875                 for reestablish in reestablish_2.iter() {
1876                         assert_eq!(reestablish.next_local_commitment_number, 1);
1877                 }
1878         }
1879
1880         let mut resp_1 = Vec::new();
1881         for msg in reestablish_1 {
1882                 node_b.node.handle_channel_reestablish(&node_a.node.get_our_node_id(), &msg);
1883                 resp_1.push(handle_chan_reestablish_msgs!(node_b, node_a));
1884         }
1885         if pending_cell_htlc_claims.0 != 0 || pending_cell_htlc_fails.0 != 0 {
1886                 check_added_monitors!(node_b, 1);
1887         } else {
1888                 check_added_monitors!(node_b, 0);
1889         }
1890
1891         let mut resp_2 = Vec::new();
1892         for msg in reestablish_2 {
1893                 node_a.node.handle_channel_reestablish(&node_b.node.get_our_node_id(), &msg);
1894                 resp_2.push(handle_chan_reestablish_msgs!(node_a, node_b));
1895         }
1896         if pending_cell_htlc_claims.1 != 0 || pending_cell_htlc_fails.1 != 0 {
1897                 check_added_monitors!(node_a, 1);
1898         } else {
1899                 check_added_monitors!(node_a, 0);
1900         }
1901
1902         // We don't yet support both needing updates, as that would require a different commitment dance:
1903         assert!((pending_htlc_adds.0 == 0 && pending_htlc_claims.0 == 0 && pending_htlc_fails.0 == 0 &&
1904                          pending_cell_htlc_claims.0 == 0 && pending_cell_htlc_fails.0 == 0) ||
1905                         (pending_htlc_adds.1 == 0 && pending_htlc_claims.1 == 0 && pending_htlc_fails.1 == 0 &&
1906                          pending_cell_htlc_claims.1 == 0 && pending_cell_htlc_fails.1 == 0));
1907
1908         for chan_msgs in resp_1.drain(..) {
1909                 if send_funding_locked.0 {
1910                         node_a.node.handle_funding_locked(&node_b.node.get_our_node_id(), &chan_msgs.0.unwrap());
1911                         let announcement_event = node_a.node.get_and_clear_pending_msg_events();
1912                         if !announcement_event.is_empty() {
1913                                 assert_eq!(announcement_event.len(), 1);
1914                                 if let MessageSendEvent::SendAnnouncementSignatures { .. } = announcement_event[0] {
1915                                         //TODO: Test announcement_sigs re-sending
1916                                 } else { panic!("Unexpected event!"); }
1917                         }
1918                 } else {
1919                         assert!(chan_msgs.0.is_none());
1920                 }
1921                 if pending_raa.0 {
1922                         assert!(chan_msgs.3 == RAACommitmentOrder::RevokeAndACKFirst);
1923                         node_a.node.handle_revoke_and_ack(&node_b.node.get_our_node_id(), &chan_msgs.1.unwrap());
1924                         assert!(node_a.node.get_and_clear_pending_msg_events().is_empty());
1925                         check_added_monitors!(node_a, 1);
1926                 } else {
1927                         assert!(chan_msgs.1.is_none());
1928                 }
1929                 if pending_htlc_adds.0 != 0 || pending_htlc_claims.0 != 0 || pending_htlc_fails.0 != 0 || pending_cell_htlc_claims.0 != 0 || pending_cell_htlc_fails.0 != 0 {
1930                         let commitment_update = chan_msgs.2.unwrap();
1931                         if pending_htlc_adds.0 != -1 { // We use -1 to denote a response commitment_signed
1932                                 assert_eq!(commitment_update.update_add_htlcs.len(), pending_htlc_adds.0 as usize);
1933                         } else {
1934                                 assert!(commitment_update.update_add_htlcs.is_empty());
1935                         }
1936                         assert_eq!(commitment_update.update_fulfill_htlcs.len(), pending_htlc_claims.0 + pending_cell_htlc_claims.0);
1937                         assert_eq!(commitment_update.update_fail_htlcs.len(), pending_htlc_fails.0 + pending_cell_htlc_fails.0);
1938                         assert!(commitment_update.update_fail_malformed_htlcs.is_empty());
1939                         for update_add in commitment_update.update_add_htlcs {
1940                                 node_a.node.handle_update_add_htlc(&node_b.node.get_our_node_id(), &update_add);
1941                         }
1942                         for update_fulfill in commitment_update.update_fulfill_htlcs {
1943                                 node_a.node.handle_update_fulfill_htlc(&node_b.node.get_our_node_id(), &update_fulfill);
1944                         }
1945                         for update_fail in commitment_update.update_fail_htlcs {
1946                                 node_a.node.handle_update_fail_htlc(&node_b.node.get_our_node_id(), &update_fail);
1947                         }
1948
1949                         if pending_htlc_adds.0 != -1 { // We use -1 to denote a response commitment_signed
1950                                 commitment_signed_dance!(node_a, node_b, commitment_update.commitment_signed, false);
1951                         } else {
1952                                 node_a.node.handle_commitment_signed(&node_b.node.get_our_node_id(), &commitment_update.commitment_signed);
1953                                 check_added_monitors!(node_a, 1);
1954                                 let as_revoke_and_ack = get_event_msg!(node_a, MessageSendEvent::SendRevokeAndACK, node_b.node.get_our_node_id());
1955                                 // No commitment_signed so get_event_msg's assert(len == 1) passes
1956                                 node_b.node.handle_revoke_and_ack(&node_a.node.get_our_node_id(), &as_revoke_and_ack);
1957                                 assert!(node_b.node.get_and_clear_pending_msg_events().is_empty());
1958                                 check_added_monitors!(node_b, 1);
1959                         }
1960                 } else {
1961                         assert!(chan_msgs.2.is_none());
1962                 }
1963         }
1964
1965         for chan_msgs in resp_2.drain(..) {
1966                 if send_funding_locked.1 {
1967                         node_b.node.handle_funding_locked(&node_a.node.get_our_node_id(), &chan_msgs.0.unwrap());
1968                         let announcement_event = node_b.node.get_and_clear_pending_msg_events();
1969                         if !announcement_event.is_empty() {
1970                                 assert_eq!(announcement_event.len(), 1);
1971                                 if let MessageSendEvent::SendAnnouncementSignatures { .. } = announcement_event[0] {
1972                                         //TODO: Test announcement_sigs re-sending
1973                                 } else { panic!("Unexpected event!"); }
1974                         }
1975                 } else {
1976                         assert!(chan_msgs.0.is_none());
1977                 }
1978                 if pending_raa.1 {
1979                         assert!(chan_msgs.3 == RAACommitmentOrder::RevokeAndACKFirst);
1980                         node_b.node.handle_revoke_and_ack(&node_a.node.get_our_node_id(), &chan_msgs.1.unwrap());
1981                         assert!(node_b.node.get_and_clear_pending_msg_events().is_empty());
1982                         check_added_monitors!(node_b, 1);
1983                 } else {
1984                         assert!(chan_msgs.1.is_none());
1985                 }
1986                 if pending_htlc_adds.1 != 0 || pending_htlc_claims.1 != 0 || pending_htlc_fails.1 != 0 || pending_cell_htlc_claims.1 != 0 || pending_cell_htlc_fails.1 != 0 {
1987                         let commitment_update = chan_msgs.2.unwrap();
1988                         if pending_htlc_adds.1 != -1 { // We use -1 to denote a response commitment_signed
1989                                 assert_eq!(commitment_update.update_add_htlcs.len(), pending_htlc_adds.1 as usize);
1990                         }
1991                         assert_eq!(commitment_update.update_fulfill_htlcs.len(), pending_htlc_claims.1 + pending_cell_htlc_claims.1);
1992                         assert_eq!(commitment_update.update_fail_htlcs.len(), pending_htlc_fails.1 + pending_cell_htlc_fails.1);
1993                         assert!(commitment_update.update_fail_malformed_htlcs.is_empty());
1994                         for update_add in commitment_update.update_add_htlcs {
1995                                 node_b.node.handle_update_add_htlc(&node_a.node.get_our_node_id(), &update_add);
1996                         }
1997                         for update_fulfill in commitment_update.update_fulfill_htlcs {
1998                                 node_b.node.handle_update_fulfill_htlc(&node_a.node.get_our_node_id(), &update_fulfill);
1999                         }
2000                         for update_fail in commitment_update.update_fail_htlcs {
2001                                 node_b.node.handle_update_fail_htlc(&node_a.node.get_our_node_id(), &update_fail);
2002                         }
2003
2004                         if pending_htlc_adds.1 != -1 { // We use -1 to denote a response commitment_signed
2005                                 commitment_signed_dance!(node_b, node_a, commitment_update.commitment_signed, false);
2006                         } else {
2007                                 node_b.node.handle_commitment_signed(&node_a.node.get_our_node_id(), &commitment_update.commitment_signed);
2008                                 check_added_monitors!(node_b, 1);
2009                                 let bs_revoke_and_ack = get_event_msg!(node_b, MessageSendEvent::SendRevokeAndACK, node_a.node.get_our_node_id());
2010                                 // No commitment_signed so get_event_msg's assert(len == 1) passes
2011                                 node_a.node.handle_revoke_and_ack(&node_b.node.get_our_node_id(), &bs_revoke_and_ack);
2012                                 assert!(node_a.node.get_and_clear_pending_msg_events().is_empty());
2013                                 check_added_monitors!(node_a, 1);
2014                         }
2015                 } else {
2016                         assert!(chan_msgs.2.is_none());
2017                 }
2018         }
2019 }