Parameterize Scorer by a Time trait
[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                         let get_output = |out_point: &bitcoin::blockdata::transaction::OutPoint| {
711                                 $(
712                                         if out_point.txid == $spends_txn.txid() {
713                                                 return $spends_txn.output.get(out_point.vout as usize).cloned()
714                                         }
715                                 )*
716                                 None
717                         };
718                         let mut total_value_in = 0;
719                         for input in $tx.input.iter() {
720                                 total_value_in += get_output(&input.previous_output).unwrap().value;
721                         }
722                         let mut total_value_out = 0;
723                         for output in $tx.output.iter() {
724                                 total_value_out += output.value;
725                         }
726                         let min_fee = ($tx.get_weight() as u64 + 3) / 4; // One sat per vbyte (ie per weight/4, rounded up)
727                         // Input amount - output amount = fee, so check that out + min_fee is smaller than input
728                         assert!(total_value_out + min_fee <= total_value_in);
729                         $tx.verify(get_output).unwrap();
730                 }
731         }
732 }
733
734 macro_rules! get_closing_signed_broadcast {
735         ($node: expr, $dest_pubkey: expr) => {
736                 {
737                         let events = $node.get_and_clear_pending_msg_events();
738                         assert!(events.len() == 1 || events.len() == 2);
739                         (match events[events.len() - 1] {
740                                 MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
741                                         assert_eq!(msg.contents.flags & 2, 2);
742                                         msg.clone()
743                                 },
744                                 _ => panic!("Unexpected event"),
745                         }, if events.len() == 2 {
746                                 match events[0] {
747                                         MessageSendEvent::SendClosingSigned { ref node_id, ref msg } => {
748                                                 assert_eq!(*node_id, $dest_pubkey);
749                                                 Some(msg.clone())
750                                         },
751                                         _ => panic!("Unexpected event"),
752                                 }
753                         } else { None })
754                 }
755         }
756 }
757
758 /// Check that a channel's closing channel update has been broadcasted, and optionally
759 /// check whether an error message event has occurred.
760 #[macro_export]
761 macro_rules! check_closed_broadcast {
762         ($node: expr, $with_error_msg: expr) => {{
763                 let msg_events = $node.node.get_and_clear_pending_msg_events();
764                 assert_eq!(msg_events.len(), if $with_error_msg { 2 } else { 1 });
765                 match msg_events[0] {
766                         MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
767                                 assert_eq!(msg.contents.flags & 2, 2);
768                         },
769                         _ => panic!("Unexpected event"),
770                 }
771                 if $with_error_msg {
772                         match msg_events[1] {
773                                 MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { ref msg }, node_id: _ } => {
774                                         // TODO: Check node_id
775                                         Some(msg.clone())
776                                 },
777                                 _ => panic!("Unexpected event"),
778                         }
779                 } else { None }
780         }}
781 }
782
783 /// Check that a channel's closing channel events has been issued
784 #[macro_export]
785 macro_rules! check_closed_event {
786         ($node: expr, $events: expr, $reason: expr) => {
787                 check_closed_event!($node, $events, $reason, false);
788         };
789         ($node: expr, $events: expr, $reason: expr, $is_check_discard_funding: expr) => {{
790                 let events = $node.node.get_and_clear_pending_events();
791                 assert_eq!(events.len(), $events);
792                 let expected_reason = $reason;
793                 let mut issues_discard_funding = false;
794                 for event in events {
795                         match event {
796                                 Event::ChannelClosed { ref reason, .. } => {
797                                         assert_eq!(*reason, expected_reason);
798                                 },
799                                 Event::DiscardFunding { .. } => {
800                                         issues_discard_funding = true;
801                                 }
802                                 _ => panic!("Unexpected event"),
803                         }
804                 }
805                 assert_eq!($is_check_discard_funding, issues_discard_funding);
806         }}
807 }
808
809 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) {
810         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) };
811         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) };
812         let (tx_a, tx_b);
813
814         node_a.close_channel(channel_id).unwrap();
815         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()));
816
817         let events_1 = node_b.get_and_clear_pending_msg_events();
818         assert!(events_1.len() >= 1);
819         let shutdown_b = match events_1[0] {
820                 MessageSendEvent::SendShutdown { ref node_id, ref msg } => {
821                         assert_eq!(node_id, &node_a.get_our_node_id());
822                         msg.clone()
823                 },
824                 _ => panic!("Unexpected event"),
825         };
826
827         let closing_signed_b = if !close_inbound_first {
828                 assert_eq!(events_1.len(), 1);
829                 None
830         } else {
831                 Some(match events_1[1] {
832                         MessageSendEvent::SendClosingSigned { ref node_id, ref msg } => {
833                                 assert_eq!(node_id, &node_a.get_our_node_id());
834                                 msg.clone()
835                         },
836                         _ => panic!("Unexpected event"),
837                 })
838         };
839
840         node_a.handle_shutdown(&node_b.get_our_node_id(), &InitFeatures::known(), &shutdown_b);
841         let (as_update, bs_update) = if close_inbound_first {
842                 assert!(node_a.get_and_clear_pending_msg_events().is_empty());
843                 node_a.handle_closing_signed(&node_b.get_our_node_id(), &closing_signed_b.unwrap());
844
845                 node_b.handle_closing_signed(&node_a.get_our_node_id(), &get_event_msg!(struct_a, MessageSendEvent::SendClosingSigned, node_b.get_our_node_id()));
846                 assert_eq!(broadcaster_b.txn_broadcasted.lock().unwrap().len(), 1);
847                 tx_b = broadcaster_b.txn_broadcasted.lock().unwrap().remove(0);
848                 let (bs_update, closing_signed_b) = get_closing_signed_broadcast!(node_b, node_a.get_our_node_id());
849
850                 node_a.handle_closing_signed(&node_b.get_our_node_id(), &closing_signed_b.unwrap());
851                 let (as_update, none_a) = get_closing_signed_broadcast!(node_a, node_b.get_our_node_id());
852                 assert!(none_a.is_none());
853                 assert_eq!(broadcaster_a.txn_broadcasted.lock().unwrap().len(), 1);
854                 tx_a = broadcaster_a.txn_broadcasted.lock().unwrap().remove(0);
855                 (as_update, bs_update)
856         } else {
857                 let closing_signed_a = get_event_msg!(struct_a, MessageSendEvent::SendClosingSigned, node_b.get_our_node_id());
858
859                 node_b.handle_closing_signed(&node_a.get_our_node_id(), &closing_signed_a);
860                 node_a.handle_closing_signed(&node_b.get_our_node_id(), &get_event_msg!(struct_b, MessageSendEvent::SendClosingSigned, node_a.get_our_node_id()));
861
862                 assert_eq!(broadcaster_a.txn_broadcasted.lock().unwrap().len(), 1);
863                 tx_a = broadcaster_a.txn_broadcasted.lock().unwrap().remove(0);
864                 let (as_update, closing_signed_a) = get_closing_signed_broadcast!(node_a, node_b.get_our_node_id());
865
866                 node_b.handle_closing_signed(&node_a.get_our_node_id(), &closing_signed_a.unwrap());
867                 let (bs_update, none_b) = get_closing_signed_broadcast!(node_b, node_a.get_our_node_id());
868                 assert!(none_b.is_none());
869                 assert_eq!(broadcaster_b.txn_broadcasted.lock().unwrap().len(), 1);
870                 tx_b = broadcaster_b.txn_broadcasted.lock().unwrap().remove(0);
871                 (as_update, bs_update)
872         };
873         assert_eq!(tx_a, tx_b);
874         check_spends!(tx_a, funding_tx);
875
876         (as_update, bs_update, tx_a)
877 }
878
879 pub struct SendEvent {
880         pub node_id: PublicKey,
881         pub msgs: Vec<msgs::UpdateAddHTLC>,
882         pub commitment_msg: msgs::CommitmentSigned,
883 }
884 impl SendEvent {
885         pub fn from_commitment_update(node_id: PublicKey, updates: msgs::CommitmentUpdate) -> SendEvent {
886                 assert!(updates.update_fulfill_htlcs.is_empty());
887                 assert!(updates.update_fail_htlcs.is_empty());
888                 assert!(updates.update_fail_malformed_htlcs.is_empty());
889                 assert!(updates.update_fee.is_none());
890                 SendEvent { node_id: node_id, msgs: updates.update_add_htlcs, commitment_msg: updates.commitment_signed }
891         }
892
893         pub fn from_event(event: MessageSendEvent) -> SendEvent {
894                 match event {
895                         MessageSendEvent::UpdateHTLCs { node_id, updates } => SendEvent::from_commitment_update(node_id, updates),
896                         _ => panic!("Unexpected event type!"),
897                 }
898         }
899
900         pub fn from_node<'a, 'b, 'c>(node: &Node<'a, 'b, 'c>) -> SendEvent {
901                 let mut events = node.node.get_and_clear_pending_msg_events();
902                 assert_eq!(events.len(), 1);
903                 SendEvent::from_event(events.pop().unwrap())
904         }
905 }
906
907 macro_rules! commitment_signed_dance {
908         ($node_a: expr, $node_b: expr, $commitment_signed: expr, $fail_backwards: expr, true /* skip last step */) => {
909                 {
910                         check_added_monitors!($node_a, 0);
911                         assert!($node_a.node.get_and_clear_pending_msg_events().is_empty());
912                         $node_a.node.handle_commitment_signed(&$node_b.node.get_our_node_id(), &$commitment_signed);
913                         check_added_monitors!($node_a, 1);
914                         commitment_signed_dance!($node_a, $node_b, (), $fail_backwards, true, false);
915                 }
916         };
917         ($node_a: expr, $node_b: expr, (), $fail_backwards: expr, true /* skip last step */, true /* return extra message */, true /* return last RAA */) => {
918                 {
919                         let (as_revoke_and_ack, as_commitment_signed) = get_revoke_commit_msgs!($node_a, $node_b.node.get_our_node_id());
920                         check_added_monitors!($node_b, 0);
921                         assert!($node_b.node.get_and_clear_pending_msg_events().is_empty());
922                         $node_b.node.handle_revoke_and_ack(&$node_a.node.get_our_node_id(), &as_revoke_and_ack);
923                         assert!($node_b.node.get_and_clear_pending_msg_events().is_empty());
924                         check_added_monitors!($node_b, 1);
925                         $node_b.node.handle_commitment_signed(&$node_a.node.get_our_node_id(), &as_commitment_signed);
926                         let (bs_revoke_and_ack, extra_msg_option) = {
927                                 let events = $node_b.node.get_and_clear_pending_msg_events();
928                                 assert!(events.len() <= 2);
929                                 (match events[0] {
930                                         MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
931                                                 assert_eq!(*node_id, $node_a.node.get_our_node_id());
932                                                 (*msg).clone()
933                                         },
934                                         _ => panic!("Unexpected event"),
935                                 }, events.get(1).map(|e| e.clone()))
936                         };
937                         check_added_monitors!($node_b, 1);
938                         if $fail_backwards {
939                                 assert!($node_a.node.get_and_clear_pending_events().is_empty());
940                                 assert!($node_a.node.get_and_clear_pending_msg_events().is_empty());
941                         }
942                         (extra_msg_option, bs_revoke_and_ack)
943                 }
944         };
945         ($node_a: expr, $node_b: expr, $commitment_signed: expr, $fail_backwards: expr, true /* skip last step */, false /* return extra message */, true /* return last RAA */) => {
946                 {
947                         check_added_monitors!($node_a, 0);
948                         assert!($node_a.node.get_and_clear_pending_msg_events().is_empty());
949                         $node_a.node.handle_commitment_signed(&$node_b.node.get_our_node_id(), &$commitment_signed);
950                         check_added_monitors!($node_a, 1);
951                         let (extra_msg_option, bs_revoke_and_ack) = commitment_signed_dance!($node_a, $node_b, (), $fail_backwards, true, true, true);
952                         assert!(extra_msg_option.is_none());
953                         bs_revoke_and_ack
954                 }
955         };
956         ($node_a: expr, $node_b: expr, (), $fail_backwards: expr, true /* skip last step */, true /* return extra message */) => {
957                 {
958                         let (extra_msg_option, bs_revoke_and_ack) = commitment_signed_dance!($node_a, $node_b, (), $fail_backwards, true, true, true);
959                         $node_a.node.handle_revoke_and_ack(&$node_b.node.get_our_node_id(), &bs_revoke_and_ack);
960                         check_added_monitors!($node_a, 1);
961                         extra_msg_option
962                 }
963         };
964         ($node_a: expr, $node_b: expr, (), $fail_backwards: expr, true /* skip last step */, false /* no extra message */) => {
965                 {
966                         assert!(commitment_signed_dance!($node_a, $node_b, (), $fail_backwards, true, true).is_none());
967                 }
968         };
969         ($node_a: expr, $node_b: expr, $commitment_signed: expr, $fail_backwards: expr) => {
970                 {
971                         commitment_signed_dance!($node_a, $node_b, $commitment_signed, $fail_backwards, true);
972                         if $fail_backwards {
973                                 expect_pending_htlcs_forwardable!($node_a);
974                                 check_added_monitors!($node_a, 1);
975
976                                 let channel_state = $node_a.node.channel_state.lock().unwrap();
977                                 assert_eq!(channel_state.pending_msg_events.len(), 1);
978                                 if let MessageSendEvent::UpdateHTLCs { ref node_id, .. } = channel_state.pending_msg_events[0] {
979                                         assert_ne!(*node_id, $node_b.node.get_our_node_id());
980                                 } else { panic!("Unexpected event"); }
981                         } else {
982                                 assert!($node_a.node.get_and_clear_pending_msg_events().is_empty());
983                         }
984                 }
985         }
986 }
987
988 /// Get a payment preimage and hash.
989 #[macro_export]
990 macro_rules! get_payment_preimage_hash {
991         ($dest_node: expr) => {
992                 {
993                         get_payment_preimage_hash!($dest_node, None)
994                 }
995         };
996         ($dest_node: expr, $min_value_msat: expr) => {
997                 {
998                         let mut payment_count = $dest_node.network_payment_count.borrow_mut();
999                         let payment_preimage = PaymentPreimage([*payment_count; 32]);
1000                         *payment_count += 1;
1001                         let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
1002                         let payment_secret = $dest_node.node.create_inbound_payment_for_hash(payment_hash, $min_value_msat, 7200, 0).unwrap();
1003                         (payment_preimage, payment_hash, payment_secret)
1004                 }
1005         }
1006 }
1007
1008 #[cfg(test)]
1009 macro_rules! get_route_and_payment_hash {
1010         ($send_node: expr, $recv_node: expr, $recv_value: expr) => {{
1011                 get_route_and_payment_hash!($send_node, $recv_node, vec![], $recv_value, TEST_FINAL_CLTV)
1012         }};
1013         ($send_node: expr, $recv_node: expr, $last_hops: expr, $recv_value: expr, $cltv: expr) => {{
1014                 let (payment_preimage, payment_hash, payment_secret) = get_payment_preimage_hash!($recv_node, Some($recv_value));
1015                 let payee = $crate::routing::router::Payee::new($recv_node.node.get_our_node_id())
1016                         .with_features($crate::ln::features::InvoiceFeatures::known())
1017                         .with_route_hints($last_hops);
1018                 let scorer = ::util::test_utils::TestScorer::with_fixed_penalty(0);
1019                 let route = ::routing::router::get_route(
1020                         &$send_node.node.get_our_node_id(), &payee, $send_node.network_graph,
1021                         Some(&$send_node.node.list_usable_channels().iter().collect::<Vec<_>>()),
1022                         $recv_value, $cltv, $send_node.logger, &scorer
1023                 ).unwrap();
1024                 (route, payment_hash, payment_preimage, payment_secret)
1025         }}
1026 }
1027
1028 macro_rules! expect_pending_htlcs_forwardable_ignore {
1029         ($node: expr) => {{
1030                 let events = $node.node.get_and_clear_pending_events();
1031                 assert_eq!(events.len(), 1);
1032                 match events[0] {
1033                         Event::PendingHTLCsForwardable { .. } => { },
1034                         _ => panic!("Unexpected event"),
1035                 };
1036         }}
1037 }
1038
1039 macro_rules! expect_pending_htlcs_forwardable {
1040         ($node: expr) => {{
1041                 expect_pending_htlcs_forwardable_ignore!($node);
1042                 $node.node.process_pending_htlc_forwards();
1043         }}
1044 }
1045
1046 #[cfg(test)]
1047 macro_rules! expect_pending_htlcs_forwardable_from_events {
1048         ($node: expr, $events: expr, $ignore: expr) => {{
1049                 assert_eq!($events.len(), 1);
1050                 match $events[0] {
1051                         Event::PendingHTLCsForwardable { .. } => { },
1052                         _ => panic!("Unexpected event"),
1053                 };
1054                 if $ignore {
1055                         $node.node.process_pending_htlc_forwards();
1056                 }
1057         }}
1058 }
1059
1060 #[cfg(any(test, feature = "unstable"))]
1061 macro_rules! expect_payment_received {
1062         ($node: expr, $expected_payment_hash: expr, $expected_payment_secret: expr, $expected_recv_value: expr) => {
1063                 let events = $node.node.get_and_clear_pending_events();
1064                 assert_eq!(events.len(), 1);
1065                 match events[0] {
1066                         Event::PaymentReceived { ref payment_hash, ref purpose, amt } => {
1067                                 assert_eq!($expected_payment_hash, *payment_hash);
1068                                 assert_eq!($expected_recv_value, amt);
1069                                 match purpose {
1070                                         PaymentPurpose::InvoicePayment { payment_preimage, payment_secret, .. } => {
1071                                                 assert!(payment_preimage.is_none());
1072                                                 assert_eq!($expected_payment_secret, *payment_secret);
1073                                         },
1074                                         _ => {},
1075                                 }
1076                         },
1077                         _ => panic!("Unexpected event"),
1078                 }
1079         }
1080 }
1081
1082 macro_rules! expect_payment_sent {
1083         ($node: expr, $expected_payment_preimage: expr) => {
1084                 expect_payment_sent!($node, $expected_payment_preimage, None::<u64>);
1085         };
1086         ($node: expr, $expected_payment_preimage: expr, $expected_fee_msat_opt: expr) => {
1087                 let events = $node.node.get_and_clear_pending_events();
1088                 let expected_payment_hash = PaymentHash(Sha256::hash(&$expected_payment_preimage.0).into_inner());
1089                 assert_eq!(events.len(), 1);
1090                 match events[0] {
1091                         Event::PaymentSent { payment_id: _, ref payment_preimage, ref payment_hash, ref fee_paid_msat } => {
1092                                 assert_eq!($expected_payment_preimage, *payment_preimage);
1093                                 assert_eq!(expected_payment_hash, *payment_hash);
1094                                 assert!(fee_paid_msat.is_some());
1095                                 if $expected_fee_msat_opt.is_some() {
1096                                         assert_eq!(*fee_paid_msat, $expected_fee_msat_opt);
1097                                 }
1098                         },
1099                         _ => panic!("Unexpected event"),
1100                 }
1101         }
1102 }
1103
1104 macro_rules! expect_payment_forwarded {
1105         ($node: expr, $expected_fee: expr, $upstream_force_closed: expr) => {
1106                 let events = $node.node.get_and_clear_pending_events();
1107                 assert_eq!(events.len(), 1);
1108                 match events[0] {
1109                         Event::PaymentForwarded { fee_earned_msat, claim_from_onchain_tx } => {
1110                                 assert_eq!(fee_earned_msat, $expected_fee);
1111                                 assert_eq!(claim_from_onchain_tx, $upstream_force_closed);
1112                         },
1113                         _ => panic!("Unexpected event"),
1114                 }
1115         }
1116 }
1117
1118 #[cfg(test)]
1119 macro_rules! expect_payment_failed_with_update {
1120         ($node: expr, $expected_payment_hash: expr, $rejected_by_dest: expr, $scid: expr, $chan_closed: expr) => {
1121                 let events = $node.node.get_and_clear_pending_events();
1122                 assert_eq!(events.len(), 1);
1123                 match events[0] {
1124                         Event::PaymentPathFailed { ref payment_hash, rejected_by_dest, ref network_update, ref error_code, ref error_data, ref path, ref retry, .. } => {
1125                                 assert_eq!(*payment_hash, $expected_payment_hash, "unexpected payment_hash");
1126                                 assert_eq!(rejected_by_dest, $rejected_by_dest, "unexpected rejected_by_dest value");
1127                                 assert!(retry.is_some(), "expected retry.is_some()");
1128                                 assert_eq!(retry.as_ref().unwrap().final_value_msat, path.last().unwrap().fee_msat, "Retry amount should match last hop in path");
1129                                 assert_eq!(retry.as_ref().unwrap().payee.pubkey, path.last().unwrap().pubkey, "Retry payee node_id should match last hop in path");
1130                                 assert!(error_code.is_some(), "expected error_code.is_some() = true");
1131                                 assert!(error_data.is_some(), "expected error_data.is_some() = true");
1132                                 match network_update {
1133                                         &Some(NetworkUpdate::ChannelUpdateMessage { ref msg }) if !$chan_closed => {
1134                                                 assert_eq!(msg.contents.short_channel_id, $scid);
1135                                                 assert_eq!(msg.contents.flags & 2, 0);
1136                                         },
1137                                         &Some(NetworkUpdate::ChannelClosed { short_channel_id, is_permanent }) if $chan_closed => {
1138                                                 assert_eq!(short_channel_id, $scid);
1139                                                 assert!(is_permanent);
1140                                         },
1141                                         Some(_) => panic!("Unexpected update type"),
1142                                         None => panic!("Expected update"),
1143                                 }
1144                         },
1145                         _ => panic!("Unexpected event"),
1146                 }
1147         }
1148 }
1149
1150 #[cfg(test)]
1151 macro_rules! expect_payment_failed {
1152         ($node: expr, $expected_payment_hash: expr, $rejected_by_dest: expr $(, $expected_error_code: expr, $expected_error_data: expr)*) => {
1153                 let events = $node.node.get_and_clear_pending_events();
1154                 assert_eq!(events.len(), 1);
1155                 match events[0] {
1156                         Event::PaymentPathFailed { ref payment_hash, rejected_by_dest, network_update: _, ref error_code, ref error_data, ref path, ref retry, .. } => {
1157                                 assert_eq!(*payment_hash, $expected_payment_hash, "unexpected payment_hash");
1158                                 assert_eq!(rejected_by_dest, $rejected_by_dest, "unexpected rejected_by_dest value");
1159                                 assert!(retry.is_some(), "expected retry.is_some()");
1160                                 assert_eq!(retry.as_ref().unwrap().final_value_msat, path.last().unwrap().fee_msat, "Retry amount should match last hop in path");
1161                                 assert_eq!(retry.as_ref().unwrap().payee.pubkey, path.last().unwrap().pubkey, "Retry payee node_id should match last hop in path");
1162                                 assert!(error_code.is_some(), "expected error_code.is_some() = true");
1163                                 assert!(error_data.is_some(), "expected error_data.is_some() = true");
1164                                 $(
1165                                         assert_eq!(error_code.unwrap(), $expected_error_code, "unexpected error code");
1166                                         assert_eq!(&error_data.as_ref().unwrap()[..], $expected_error_data, "unexpected error data");
1167                                 )*
1168                         },
1169                         _ => panic!("Unexpected event"),
1170                 }
1171         }
1172 }
1173
1174 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 {
1175         let payment_id = origin_node.node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
1176         check_added_monitors!(origin_node, expected_paths.len());
1177         pass_along_route(origin_node, expected_paths, recv_value, our_payment_hash, our_payment_secret);
1178         payment_id
1179 }
1180
1181 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>) {
1182         let mut payment_event = SendEvent::from_event(ev);
1183         let mut prev_node = origin_node;
1184
1185         for (idx, &node) in expected_path.iter().enumerate() {
1186                 assert_eq!(node.node.get_our_node_id(), payment_event.node_id);
1187
1188                 node.node.handle_update_add_htlc(&prev_node.node.get_our_node_id(), &payment_event.msgs[0]);
1189                 check_added_monitors!(node, 0);
1190                 commitment_signed_dance!(node, prev_node, payment_event.commitment_msg, false);
1191
1192                 expect_pending_htlcs_forwardable!(node);
1193
1194                 if idx == expected_path.len() - 1 {
1195                         let events_2 = node.node.get_and_clear_pending_events();
1196                         if payment_received_expected {
1197                                 assert_eq!(events_2.len(), 1);
1198                                 match events_2[0] {
1199                                         Event::PaymentReceived { ref payment_hash, ref purpose, amt} => {
1200                                                 assert_eq!(our_payment_hash, *payment_hash);
1201                                                 match &purpose {
1202                                                         PaymentPurpose::InvoicePayment { payment_preimage, payment_secret, .. } => {
1203                                                                 assert_eq!(expected_preimage, *payment_preimage);
1204                                                                 assert_eq!(our_payment_secret.unwrap(), *payment_secret);
1205                                                         },
1206                                                         PaymentPurpose::SpontaneousPayment(payment_preimage) => {
1207                                                                 assert_eq!(expected_preimage.unwrap(), *payment_preimage);
1208                                                                 assert!(our_payment_secret.is_none());
1209                                                         },
1210                                                 }
1211                                                 assert_eq!(amt, recv_value);
1212                                         },
1213                                         _ => panic!("Unexpected event"),
1214                                 }
1215                         } else {
1216                                 assert!(events_2.is_empty());
1217                         }
1218                 } else {
1219                         let mut events_2 = node.node.get_and_clear_pending_msg_events();
1220                         assert_eq!(events_2.len(), 1);
1221                         check_added_monitors!(node, 1);
1222                         payment_event = SendEvent::from_event(events_2.remove(0));
1223                         assert_eq!(payment_event.msgs.len(), 1);
1224                 }
1225
1226                 prev_node = node;
1227         }
1228 }
1229
1230 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) {
1231         let mut events = origin_node.node.get_and_clear_pending_msg_events();
1232         assert_eq!(events.len(), expected_route.len());
1233         for (path_idx, (ev, expected_path)) in events.drain(..).zip(expected_route.iter()).enumerate() {
1234                 // Once we've gotten through all the HTLCs, the last one should result in a
1235                 // PaymentReceived (but each previous one should not!), .
1236                 let expect_payment = path_idx == expected_route.len() - 1;
1237                 pass_along_path(origin_node, expected_path, recv_value, our_payment_hash.clone(), Some(our_payment_secret), ev, expect_payment, None);
1238         }
1239 }
1240
1241 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) {
1242         let (our_payment_preimage, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(expected_route.last().unwrap());
1243         let payment_id = send_along_route_with_secret(origin_node, route, &[expected_route], recv_value, our_payment_hash, our_payment_secret);
1244         (our_payment_preimage, our_payment_hash, our_payment_secret, payment_id)
1245 }
1246
1247 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 {
1248         for path in expected_paths.iter() {
1249                 assert_eq!(path.last().unwrap().node.get_our_node_id(), expected_paths[0].last().unwrap().node.get_our_node_id());
1250         }
1251         assert!(expected_paths[0].last().unwrap().node.claim_funds(our_payment_preimage));
1252         check_added_monitors!(expected_paths[0].last().unwrap(), expected_paths.len());
1253
1254         let mut expected_total_fee_msat = 0;
1255
1256         macro_rules! msgs_from_ev {
1257                 ($ev: expr) => {
1258                         match $ev {
1259                                 &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 } } => {
1260                                         assert!(update_add_htlcs.is_empty());
1261                                         assert_eq!(update_fulfill_htlcs.len(), 1);
1262                                         assert!(update_fail_htlcs.is_empty());
1263                                         assert!(update_fail_malformed_htlcs.is_empty());
1264                                         assert!(update_fee.is_none());
1265                                         ((update_fulfill_htlcs[0].clone(), commitment_signed.clone()), node_id.clone())
1266                                 },
1267                                 _ => panic!("Unexpected event"),
1268                         }
1269                 }
1270         }
1271         let mut per_path_msgs: Vec<((msgs::UpdateFulfillHTLC, msgs::CommitmentSigned), PublicKey)> = Vec::with_capacity(expected_paths.len());
1272         let events = expected_paths[0].last().unwrap().node.get_and_clear_pending_msg_events();
1273         assert_eq!(events.len(), expected_paths.len());
1274         for ev in events.iter() {
1275                 per_path_msgs.push(msgs_from_ev!(ev));
1276         }
1277
1278         for (expected_route, (path_msgs, next_hop)) in expected_paths.iter().zip(per_path_msgs.drain(..)) {
1279                 let mut next_msgs = Some(path_msgs);
1280                 let mut expected_next_node = next_hop;
1281
1282                 macro_rules! last_update_fulfill_dance {
1283                         ($node: expr, $prev_node: expr) => {
1284                                 {
1285                                         $node.node.handle_update_fulfill_htlc(&$prev_node.node.get_our_node_id(), &next_msgs.as_ref().unwrap().0);
1286                                         check_added_monitors!($node, 0);
1287                                         assert!($node.node.get_and_clear_pending_msg_events().is_empty());
1288                                         commitment_signed_dance!($node, $prev_node, next_msgs.as_ref().unwrap().1, false);
1289                                 }
1290                         }
1291                 }
1292                 macro_rules! mid_update_fulfill_dance {
1293                         ($node: expr, $prev_node: expr, $new_msgs: expr) => {
1294                                 {
1295                                         $node.node.handle_update_fulfill_htlc(&$prev_node.node.get_our_node_id(), &next_msgs.as_ref().unwrap().0);
1296                                         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;
1297                                         expect_payment_forwarded!($node, Some(fee as u64), false);
1298                                         expected_total_fee_msat += fee as u64;
1299                                         check_added_monitors!($node, 1);
1300                                         let new_next_msgs = if $new_msgs {
1301                                                 let events = $node.node.get_and_clear_pending_msg_events();
1302                                                 assert_eq!(events.len(), 1);
1303                                                 let (res, nexthop) = msgs_from_ev!(&events[0]);
1304                                                 expected_next_node = nexthop;
1305                                                 Some(res)
1306                                         } else {
1307                                                 assert!($node.node.get_and_clear_pending_msg_events().is_empty());
1308                                                 None
1309                                         };
1310                                         commitment_signed_dance!($node, $prev_node, next_msgs.as_ref().unwrap().1, false);
1311                                         next_msgs = new_next_msgs;
1312                                 }
1313                         }
1314                 }
1315
1316                 let mut prev_node = expected_route.last().unwrap();
1317                 for (idx, node) in expected_route.iter().rev().enumerate().skip(1) {
1318                         assert_eq!(expected_next_node, node.node.get_our_node_id());
1319                         let update_next_msgs = !skip_last || idx != expected_route.len() - 1;
1320                         if next_msgs.is_some() {
1321                                 mid_update_fulfill_dance!(node, prev_node, update_next_msgs);
1322                         } else {
1323                                 assert!(!update_next_msgs);
1324                                 assert!(node.node.get_and_clear_pending_msg_events().is_empty());
1325                         }
1326                         if !skip_last && idx == expected_route.len() - 1 {
1327                                 assert_eq!(expected_next_node, origin_node.node.get_our_node_id());
1328                         }
1329
1330                         prev_node = node;
1331                 }
1332
1333                 if !skip_last {
1334                         last_update_fulfill_dance!(origin_node, expected_route.first().unwrap());
1335                 }
1336         }
1337         expected_total_fee_msat
1338 }
1339 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) {
1340         let expected_total_fee_msat = do_claim_payment_along_route(origin_node, expected_paths, skip_last, our_payment_preimage);
1341         if !skip_last {
1342                 expect_payment_sent!(origin_node, our_payment_preimage, Some(expected_total_fee_msat));
1343         }
1344 }
1345
1346 pub fn claim_payment<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_route: &[&Node<'a, 'b, 'c>], our_payment_preimage: PaymentPreimage) {
1347         claim_payment_along_route(origin_node, &[expected_route], false, our_payment_preimage);
1348 }
1349
1350 pub const TEST_FINAL_CLTV: u32 = 70;
1351
1352 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) {
1353         let payee = Payee::new(expected_route.last().unwrap().node.get_our_node_id())
1354                 .with_features(InvoiceFeatures::known());
1355         let scorer = test_utils::TestScorer::with_fixed_penalty(0);
1356         let route = get_route(
1357                 &origin_node.node.get_our_node_id(), &payee, &origin_node.network_graph,
1358                 Some(&origin_node.node.list_usable_channels().iter().collect::<Vec<_>>()),
1359                 recv_value, TEST_FINAL_CLTV, origin_node.logger, &scorer).unwrap();
1360         assert_eq!(route.paths.len(), 1);
1361         assert_eq!(route.paths[0].len(), expected_route.len());
1362         for (node, hop) in expected_route.iter().zip(route.paths[0].iter()) {
1363                 assert_eq!(hop.pubkey, node.node.get_our_node_id());
1364         }
1365
1366         let res = send_along_route(origin_node, route, expected_route, recv_value);
1367         (res.0, res.1, res.2)
1368 }
1369
1370 pub fn route_over_limit<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_route: &[&Node<'a, 'b, 'c>], recv_value: u64)  {
1371         let payee = Payee::new(expected_route.last().unwrap().node.get_our_node_id())
1372                 .with_features(InvoiceFeatures::known());
1373         let scorer = test_utils::TestScorer::with_fixed_penalty(0);
1374         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();
1375         assert_eq!(route.paths.len(), 1);
1376         assert_eq!(route.paths[0].len(), expected_route.len());
1377         for (node, hop) in expected_route.iter().zip(route.paths[0].iter()) {
1378                 assert_eq!(hop.pubkey, node.node.get_our_node_id());
1379         }
1380
1381         let (_, our_payment_hash, our_payment_preimage) = get_payment_preimage_hash!(expected_route.last().unwrap());
1382         unwrap_send_err!(origin_node.node.send_payment(&route, our_payment_hash, &Some(our_payment_preimage)), true, APIError::ChannelUnavailable { ref err },
1383                 assert!(err.contains("Cannot send value that would put us over the max HTLC value in flight our peer will accept")));
1384 }
1385
1386 pub fn send_payment<'a, 'b, 'c>(origin: &Node<'a, 'b, 'c>, expected_route: &[&Node<'a, 'b, 'c>], recv_value: u64)  {
1387         let our_payment_preimage = route_payment(&origin, expected_route, recv_value).0;
1388         claim_payment(&origin, expected_route, our_payment_preimage);
1389 }
1390
1391 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)  {
1392         let mut expected_paths: Vec<_> = expected_paths_slice.iter().collect();
1393         for path in expected_paths.iter() {
1394                 assert_eq!(path.last().unwrap().node.get_our_node_id(), expected_paths[0].last().unwrap().node.get_our_node_id());
1395         }
1396         assert!(expected_paths[0].last().unwrap().node.fail_htlc_backwards(&our_payment_hash));
1397         expect_pending_htlcs_forwardable!(expected_paths[0].last().unwrap());
1398         check_added_monitors!(expected_paths[0].last().unwrap(), expected_paths.len());
1399
1400         let mut per_path_msgs: Vec<((msgs::UpdateFailHTLC, msgs::CommitmentSigned), PublicKey)> = Vec::with_capacity(expected_paths.len());
1401         let events = expected_paths[0].last().unwrap().node.get_and_clear_pending_msg_events();
1402         assert_eq!(events.len(), expected_paths.len());
1403         for ev in events.iter() {
1404                 let (update_fail, commitment_signed, node_id) = match ev {
1405                         &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 } } => {
1406                                 assert!(update_add_htlcs.is_empty());
1407                                 assert!(update_fulfill_htlcs.is_empty());
1408                                 assert_eq!(update_fail_htlcs.len(), 1);
1409                                 assert!(update_fail_malformed_htlcs.is_empty());
1410                                 assert!(update_fee.is_none());
1411                                 (update_fail_htlcs[0].clone(), commitment_signed.clone(), node_id.clone())
1412                         },
1413                         _ => panic!("Unexpected event"),
1414                 };
1415                 per_path_msgs.push(((update_fail, commitment_signed), node_id));
1416         }
1417         per_path_msgs.sort_unstable_by(|(_, node_id_a), (_, node_id_b)| node_id_a.cmp(node_id_b));
1418         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()));
1419
1420         for (i, (expected_route, (path_msgs, next_hop))) in expected_paths.iter().zip(per_path_msgs.drain(..)).enumerate() {
1421                 let mut next_msgs = Some(path_msgs);
1422                 let mut expected_next_node = next_hop;
1423                 let mut prev_node = expected_route.last().unwrap();
1424
1425                 for (idx, node) in expected_route.iter().rev().enumerate().skip(1) {
1426                         assert_eq!(expected_next_node, node.node.get_our_node_id());
1427                         let update_next_node = !skip_last || idx != expected_route.len() - 1;
1428                         if next_msgs.is_some() {
1429                                 node.node.handle_update_fail_htlc(&prev_node.node.get_our_node_id(), &next_msgs.as_ref().unwrap().0);
1430                                 commitment_signed_dance!(node, prev_node, next_msgs.as_ref().unwrap().1, update_next_node);
1431                                 if !update_next_node {
1432                                         expect_pending_htlcs_forwardable!(node);
1433                                 }
1434                         }
1435                         let events = node.node.get_and_clear_pending_msg_events();
1436                         if update_next_node {
1437                                 assert_eq!(events.len(), 1);
1438                                 match events[0] {
1439                                         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 } } => {
1440                                                 assert!(update_add_htlcs.is_empty());
1441                                                 assert!(update_fulfill_htlcs.is_empty());
1442                                                 assert_eq!(update_fail_htlcs.len(), 1);
1443                                                 assert!(update_fail_malformed_htlcs.is_empty());
1444                                                 assert!(update_fee.is_none());
1445                                                 expected_next_node = node_id.clone();
1446                                                 next_msgs = Some((update_fail_htlcs[0].clone(), commitment_signed.clone()));
1447                                         },
1448                                         _ => panic!("Unexpected event"),
1449                                 }
1450                         } else {
1451                                 assert!(events.is_empty());
1452                         }
1453                         if !skip_last && idx == expected_route.len() - 1 {
1454                                 assert_eq!(expected_next_node, origin_node.node.get_our_node_id());
1455                         }
1456
1457                         prev_node = node;
1458                 }
1459
1460                 if !skip_last {
1461                         let prev_node = expected_route.first().unwrap();
1462                         origin_node.node.handle_update_fail_htlc(&prev_node.node.get_our_node_id(), &next_msgs.as_ref().unwrap().0);
1463                         check_added_monitors!(origin_node, 0);
1464                         assert!(origin_node.node.get_and_clear_pending_msg_events().is_empty());
1465                         commitment_signed_dance!(origin_node, prev_node, next_msgs.as_ref().unwrap().1, false);
1466                         let events = origin_node.node.get_and_clear_pending_events();
1467                         assert_eq!(events.len(), 1);
1468                         match events[0] {
1469                                 Event::PaymentPathFailed { payment_hash, rejected_by_dest, all_paths_failed, ref path, .. } => {
1470                                         assert_eq!(payment_hash, our_payment_hash);
1471                                         assert!(rejected_by_dest);
1472                                         assert_eq!(all_paths_failed, i == expected_paths.len() - 1);
1473                                         for (idx, hop) in expected_route.iter().enumerate() {
1474                                                 assert_eq!(hop.node.get_our_node_id(), path[idx].pubkey);
1475                                         }
1476                                 },
1477                                 _ => panic!("Unexpected event"),
1478                         }
1479                 }
1480         }
1481 }
1482
1483 pub fn fail_payment<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_path: &[&Node<'a, 'b, 'c>], our_payment_hash: PaymentHash)  {
1484         fail_payment_along_route(origin_node, &[&expected_path[..]], false, our_payment_hash);
1485 }
1486
1487 pub fn create_chanmon_cfgs(node_count: usize) -> Vec<TestChanMonCfg> {
1488         let mut chan_mon_cfgs = Vec::new();
1489         for i in 0..node_count {
1490                 let tx_broadcaster = test_utils::TestBroadcaster {
1491                         txn_broadcasted: Mutex::new(Vec::new()),
1492                         blocks: Arc::new(Mutex::new(vec![(genesis_block(Network::Testnet).header, 0)])),
1493                 };
1494                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
1495                 let chain_source = test_utils::TestChainSource::new(Network::Testnet);
1496                 let logger = test_utils::TestLogger::with_id(format!("node {}", i));
1497                 let persister = test_utils::TestPersister::new();
1498                 let seed = [i as u8; 32];
1499                 let keys_manager = test_utils::TestKeysInterface::new(&seed, Network::Testnet);
1500                 let network_graph = NetworkGraph::new(chain_source.genesis_hash);
1501
1502                 chan_mon_cfgs.push(TestChanMonCfg{ tx_broadcaster, fee_estimator, chain_source, logger, persister, keys_manager, network_graph });
1503         }
1504
1505         chan_mon_cfgs
1506 }
1507
1508 pub fn create_node_cfgs<'a>(node_count: usize, chanmon_cfgs: &'a Vec<TestChanMonCfg>) -> Vec<NodeCfg<'a>> {
1509         let mut nodes = Vec::new();
1510
1511         for i in 0..node_count {
1512                 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);
1513                 let seed = [i as u8; 32];
1514                 nodes.push(NodeCfg {
1515                         chain_source: &chanmon_cfgs[i].chain_source,
1516                         logger: &chanmon_cfgs[i].logger,
1517                         tx_broadcaster: &chanmon_cfgs[i].tx_broadcaster,
1518                         fee_estimator: &chanmon_cfgs[i].fee_estimator,
1519                         chain_monitor,
1520                         keys_manager: &chanmon_cfgs[i].keys_manager,
1521                         node_seed: seed,
1522                         features: InitFeatures::known(),
1523                         network_graph: &chanmon_cfgs[i].network_graph,
1524                 });
1525         }
1526
1527         nodes
1528 }
1529
1530 pub fn test_default_channel_config() -> UserConfig {
1531         let mut default_config = UserConfig::default();
1532         // Set cltv_expiry_delta slightly lower to keep the final CLTV values inside one byte in our
1533         // tests so that our script-length checks don't fail (see ACCEPTED_HTLC_SCRIPT_WEIGHT).
1534         default_config.channel_options.cltv_expiry_delta = 6*6;
1535         default_config.channel_options.announced_channel = true;
1536         default_config.peer_channel_config_limits.force_announced_channel_preference = false;
1537         // When most of our tests were written, the default HTLC minimum was fixed at 1000.
1538         // It now defaults to 1, so we simply set it to the expected value here.
1539         default_config.own_channel_config.our_htlc_minimum_msat = 1000;
1540         // When most of our tests were written, we didn't have the notion of a `max_dust_htlc_exposure_msat`,
1541         // It now defaults to 5_000_000 msat; to avoid interfering with tests we bump it to 50_000_000 msat.
1542         default_config.channel_options.max_dust_htlc_exposure_msat = 50_000_000;
1543         default_config
1544 }
1545
1546 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>> {
1547         let mut chanmgrs = Vec::new();
1548         for i in 0..node_count {
1549                 let network = Network::Testnet;
1550                 let params = ChainParameters {
1551                         network,
1552                         best_block: BestBlock::from_genesis(network),
1553                 };
1554                 let node = ChannelManager::new(cfgs[i].fee_estimator, &cfgs[i].chain_monitor, cfgs[i].tx_broadcaster, cfgs[i].logger, cfgs[i].keys_manager,
1555                         if node_config[i].is_some() { node_config[i].clone().unwrap() } else { test_default_channel_config() }, params);
1556                 chanmgrs.push(node);
1557         }
1558
1559         chanmgrs
1560 }
1561
1562 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>> {
1563         let mut nodes = Vec::new();
1564         let chan_count = Rc::new(RefCell::new(0));
1565         let payment_count = Rc::new(RefCell::new(0));
1566         let connect_style = Rc::new(RefCell::new(ConnectStyle::FullBlockViaListen));
1567
1568         for i in 0..node_count {
1569                 let net_graph_msg_handler = NetGraphMsgHandler::new(cfgs[i].network_graph, None, cfgs[i].logger);
1570                 nodes.push(Node{
1571                         chain_source: cfgs[i].chain_source, tx_broadcaster: cfgs[i].tx_broadcaster,
1572                         chain_monitor: &cfgs[i].chain_monitor, keys_manager: &cfgs[i].keys_manager,
1573                         node: &chan_mgrs[i], network_graph: &cfgs[i].network_graph, net_graph_msg_handler,
1574                         node_seed: cfgs[i].node_seed, network_chan_count: chan_count.clone(),
1575                         network_payment_count: payment_count.clone(), logger: cfgs[i].logger,
1576                         blocks: Arc::clone(&cfgs[i].tx_broadcaster.blocks),
1577                         connect_style: Rc::clone(&connect_style),
1578                 })
1579         }
1580
1581         for i in 0..node_count {
1582                 for j in (i+1)..node_count {
1583                         nodes[i].node.peer_connected(&nodes[j].node.get_our_node_id(), &msgs::Init { features: cfgs[j].features.clone() });
1584                         nodes[j].node.peer_connected(&nodes[i].node.get_our_node_id(), &msgs::Init { features: cfgs[i].features.clone() });
1585                 }
1586         }
1587
1588         nodes
1589 }
1590
1591 // Note that the following only works for CLTV values up to 128
1592 pub const ACCEPTED_HTLC_SCRIPT_WEIGHT: usize = 137; //Here we have a diff due to HTLC CLTV expiry being < 2^15 in test
1593 pub const OFFERED_HTLC_SCRIPT_WEIGHT: usize = 133;
1594
1595 #[derive(PartialEq)]
1596 pub enum HTLCType { NONE, TIMEOUT, SUCCESS }
1597 /// Tests that the given node has broadcast transactions for the given Channel
1598 ///
1599 /// First checks that the latest holder commitment tx has been broadcast, unless an explicit
1600 /// commitment_tx is provided, which may be used to test that a remote commitment tx was
1601 /// broadcast and the revoked outputs were claimed.
1602 ///
1603 /// Next tests that there is (or is not) a transaction that spends the commitment transaction
1604 /// that appears to be the type of HTLC transaction specified in has_htlc_tx.
1605 ///
1606 /// All broadcast transactions must be accounted for in one of the above three types of we'll
1607 /// also fail.
1608 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>  {
1609         let mut node_txn = node.tx_broadcaster.txn_broadcasted.lock().unwrap();
1610         assert!(node_txn.len() >= if commitment_tx.is_some() { 0 } else { 1 } + if has_htlc_tx == HTLCType::NONE { 0 } else { 1 });
1611
1612         let mut res = Vec::with_capacity(2);
1613         node_txn.retain(|tx| {
1614                 if tx.input.len() == 1 && tx.input[0].previous_output.txid == chan.3.txid() {
1615                         check_spends!(tx, chan.3);
1616                         if commitment_tx.is_none() {
1617                                 res.push(tx.clone());
1618                         }
1619                         false
1620                 } else { true }
1621         });
1622         if let Some(explicit_tx) = commitment_tx {
1623                 res.push(explicit_tx.clone());
1624         }
1625
1626         assert_eq!(res.len(), 1);
1627
1628         if has_htlc_tx != HTLCType::NONE {
1629                 node_txn.retain(|tx| {
1630                         if tx.input.len() == 1 && tx.input[0].previous_output.txid == res[0].txid() {
1631                                 check_spends!(tx, res[0]);
1632                                 if has_htlc_tx == HTLCType::TIMEOUT {
1633                                         assert!(tx.lock_time != 0);
1634                                 } else {
1635                                         assert!(tx.lock_time == 0);
1636                                 }
1637                                 res.push(tx.clone());
1638                                 false
1639                         } else { true }
1640                 });
1641                 assert!(res.len() == 2 || res.len() == 3);
1642                 if res.len() == 3 {
1643                         assert_eq!(res[1], res[2]);
1644                 }
1645         }
1646
1647         assert!(node_txn.is_empty());
1648         res
1649 }
1650
1651 /// Tests that the given node has broadcast a claim transaction against the provided revoked
1652 /// HTLC transaction.
1653 pub fn test_revoked_htlc_claim_txn_broadcast<'a, 'b, 'c>(node: &Node<'a, 'b, 'c>, revoked_tx: Transaction, commitment_revoked_tx: Transaction)  {
1654         let mut node_txn = node.tx_broadcaster.txn_broadcasted.lock().unwrap();
1655         // We may issue multiple claiming transaction on revoked outputs due to block rescan
1656         // for revoked htlc outputs
1657         if node_txn.len() != 1 && node_txn.len() != 2 && node_txn.len() != 3 { assert!(false); }
1658         node_txn.retain(|tx| {
1659                 if tx.input.len() == 1 && tx.input[0].previous_output.txid == revoked_tx.txid() {
1660                         check_spends!(tx, revoked_tx);
1661                         false
1662                 } else { true }
1663         });
1664         node_txn.retain(|tx| {
1665                 check_spends!(tx, commitment_revoked_tx);
1666                 false
1667         });
1668         assert!(node_txn.is_empty());
1669 }
1670
1671 pub fn check_preimage_claim<'a, 'b, 'c>(node: &Node<'a, 'b, 'c>, prev_txn: &Vec<Transaction>) -> Vec<Transaction>  {
1672         let mut node_txn = node.tx_broadcaster.txn_broadcasted.lock().unwrap();
1673
1674         assert!(node_txn.len() >= 1);
1675         assert_eq!(node_txn[0].input.len(), 1);
1676         let mut found_prev = false;
1677
1678         for tx in prev_txn {
1679                 if node_txn[0].input[0].previous_output.txid == tx.txid() {
1680                         check_spends!(node_txn[0], tx);
1681                         assert!(node_txn[0].input[0].witness[2].len() > 106); // must spend an htlc output
1682                         assert_eq!(tx.input.len(), 1); // must spend a commitment tx
1683
1684                         found_prev = true;
1685                         break;
1686                 }
1687         }
1688         assert!(found_prev);
1689
1690         let mut res = Vec::new();
1691         mem::swap(&mut *node_txn, &mut res);
1692         res
1693 }
1694
1695 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)  {
1696         let events_1 = nodes[a].node.get_and_clear_pending_msg_events();
1697         assert_eq!(events_1.len(), 2);
1698         let as_update = match events_1[0] {
1699                 MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
1700                         msg.clone()
1701                 },
1702                 _ => panic!("Unexpected event"),
1703         };
1704         match events_1[1] {
1705                 MessageSendEvent::HandleError { node_id, action: msgs::ErrorAction::SendErrorMessage { ref msg } } => {
1706                         assert_eq!(node_id, nodes[b].node.get_our_node_id());
1707                         assert_eq!(msg.data, expected_error);
1708                         if needs_err_handle {
1709                                 nodes[b].node.handle_error(&nodes[a].node.get_our_node_id(), msg);
1710                         }
1711                 },
1712                 _ => panic!("Unexpected event"),
1713         }
1714
1715         let events_2 = nodes[b].node.get_and_clear_pending_msg_events();
1716         assert_eq!(events_2.len(), if needs_err_handle { 1 } else { 2 });
1717         let bs_update = match events_2[0] {
1718                 MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
1719                         msg.clone()
1720                 },
1721                 _ => panic!("Unexpected event"),
1722         };
1723         if !needs_err_handle {
1724                 match events_2[1] {
1725                         MessageSendEvent::HandleError { node_id, action: msgs::ErrorAction::SendErrorMessage { ref msg } } => {
1726                                 assert_eq!(node_id, nodes[a].node.get_our_node_id());
1727                                 assert_eq!(msg.data, expected_error);
1728                         },
1729                         _ => panic!("Unexpected event"),
1730                 }
1731         }
1732
1733         for node in nodes {
1734                 node.net_graph_msg_handler.handle_channel_update(&as_update).unwrap();
1735                 node.net_graph_msg_handler.handle_channel_update(&bs_update).unwrap();
1736         }
1737 }
1738
1739 pub fn get_announce_close_broadcast_events<'a, 'b, 'c>(nodes: &Vec<Node<'a, 'b, 'c>>, a: usize, b: usize)  {
1740         handle_announce_close_broadcast_events(nodes, a, b, false, "Commitment or closing transaction was confirmed on chain.");
1741 }
1742
1743 #[cfg(test)]
1744 macro_rules! get_channel_value_stat {
1745         ($node: expr, $channel_id: expr) => {{
1746                 let chan_lock = $node.node.channel_state.lock().unwrap();
1747                 let chan = chan_lock.by_id.get(&$channel_id).unwrap();
1748                 chan.get_value_stat()
1749         }}
1750 }
1751
1752 macro_rules! get_chan_reestablish_msgs {
1753         ($src_node: expr, $dst_node: expr) => {
1754                 {
1755                         let mut res = Vec::with_capacity(1);
1756                         for msg in $src_node.node.get_and_clear_pending_msg_events() {
1757                                 if let MessageSendEvent::SendChannelReestablish { ref node_id, ref msg } = msg {
1758                                         assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1759                                         res.push(msg.clone());
1760                                 } else {
1761                                         panic!("Unexpected event")
1762                                 }
1763                         }
1764                         res
1765                 }
1766         }
1767 }
1768
1769 macro_rules! handle_chan_reestablish_msgs {
1770         ($src_node: expr, $dst_node: expr) => {
1771                 {
1772                         let msg_events = $src_node.node.get_and_clear_pending_msg_events();
1773                         let mut idx = 0;
1774                         let funding_locked = if let Some(&MessageSendEvent::SendFundingLocked { ref node_id, ref msg }) = msg_events.get(0) {
1775                                 idx += 1;
1776                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1777                                 Some(msg.clone())
1778                         } else {
1779                                 None
1780                         };
1781
1782                         if let Some(&MessageSendEvent::SendAnnouncementSignatures { ref node_id, msg: _ }) = msg_events.get(idx) {
1783                                 idx += 1;
1784                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1785                         }
1786
1787                         let mut revoke_and_ack = None;
1788                         let mut commitment_update = None;
1789                         let order = if let Some(ev) = msg_events.get(idx) {
1790                                 match ev {
1791                                         &MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
1792                                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1793                                                 revoke_and_ack = Some(msg.clone());
1794                                                 idx += 1;
1795                                                 RAACommitmentOrder::RevokeAndACKFirst
1796                                         },
1797                                         &MessageSendEvent::UpdateHTLCs { ref node_id, ref updates } => {
1798                                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1799                                                 commitment_update = Some(updates.clone());
1800                                                 idx += 1;
1801                                                 RAACommitmentOrder::CommitmentFirst
1802                                         },
1803                                         &MessageSendEvent::SendChannelUpdate { .. } => RAACommitmentOrder::CommitmentFirst,
1804                                         _ => panic!("Unexpected event"),
1805                                 }
1806                         } else {
1807                                 RAACommitmentOrder::CommitmentFirst
1808                         };
1809
1810                         if let Some(ev) = msg_events.get(idx) {
1811                                 match ev {
1812                                         &MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
1813                                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1814                                                 assert!(revoke_and_ack.is_none());
1815                                                 revoke_and_ack = Some(msg.clone());
1816                                                 idx += 1;
1817                                         },
1818                                         &MessageSendEvent::UpdateHTLCs { ref node_id, ref updates } => {
1819                                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1820                                                 assert!(commitment_update.is_none());
1821                                                 commitment_update = Some(updates.clone());
1822                                                 idx += 1;
1823                                         },
1824                                         &MessageSendEvent::SendChannelUpdate { .. } => {},
1825                                         _ => panic!("Unexpected event"),
1826                                 }
1827                         }
1828
1829                         if let Some(&MessageSendEvent::SendChannelUpdate { ref node_id, ref msg }) = msg_events.get(idx) {
1830                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
1831                                 assert_eq!(msg.contents.flags & 2, 0); // "disabled" flag must not be set as we just reconnected.
1832                         }
1833
1834                         (funding_locked, revoke_and_ack, commitment_update, order)
1835                 }
1836         }
1837 }
1838
1839 /// pending_htlc_adds includes both the holding cell and in-flight update_add_htlcs, whereas
1840 /// for claims/fails they are separated out.
1841 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))  {
1842         node_a.node.peer_connected(&node_b.node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty() });
1843         let reestablish_1 = get_chan_reestablish_msgs!(node_a, node_b);
1844         node_b.node.peer_connected(&node_a.node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty() });
1845         let reestablish_2 = get_chan_reestablish_msgs!(node_b, node_a);
1846
1847         if send_funding_locked.0 {
1848                 // If a expects a funding_locked, it better not think it has received a revoke_and_ack
1849                 // from b
1850                 for reestablish in reestablish_1.iter() {
1851                         assert_eq!(reestablish.next_remote_commitment_number, 0);
1852                 }
1853         }
1854         if send_funding_locked.1 {
1855                 // If b expects a funding_locked, it better not think it has received a revoke_and_ack
1856                 // from a
1857                 for reestablish in reestablish_2.iter() {
1858                         assert_eq!(reestablish.next_remote_commitment_number, 0);
1859                 }
1860         }
1861         if send_funding_locked.0 || send_funding_locked.1 {
1862                 // If we expect any funding_locked's, both sides better have set
1863                 // next_holder_commitment_number to 1
1864                 for reestablish in reestablish_1.iter() {
1865                         assert_eq!(reestablish.next_local_commitment_number, 1);
1866                 }
1867                 for reestablish in reestablish_2.iter() {
1868                         assert_eq!(reestablish.next_local_commitment_number, 1);
1869                 }
1870         }
1871
1872         let mut resp_1 = Vec::new();
1873         for msg in reestablish_1 {
1874                 node_b.node.handle_channel_reestablish(&node_a.node.get_our_node_id(), &msg);
1875                 resp_1.push(handle_chan_reestablish_msgs!(node_b, node_a));
1876         }
1877         if pending_cell_htlc_claims.0 != 0 || pending_cell_htlc_fails.0 != 0 {
1878                 check_added_monitors!(node_b, 1);
1879         } else {
1880                 check_added_monitors!(node_b, 0);
1881         }
1882
1883         let mut resp_2 = Vec::new();
1884         for msg in reestablish_2 {
1885                 node_a.node.handle_channel_reestablish(&node_b.node.get_our_node_id(), &msg);
1886                 resp_2.push(handle_chan_reestablish_msgs!(node_a, node_b));
1887         }
1888         if pending_cell_htlc_claims.1 != 0 || pending_cell_htlc_fails.1 != 0 {
1889                 check_added_monitors!(node_a, 1);
1890         } else {
1891                 check_added_monitors!(node_a, 0);
1892         }
1893
1894         // We don't yet support both needing updates, as that would require a different commitment dance:
1895         assert!((pending_htlc_adds.0 == 0 && pending_htlc_claims.0 == 0 && pending_htlc_fails.0 == 0 &&
1896                          pending_cell_htlc_claims.0 == 0 && pending_cell_htlc_fails.0 == 0) ||
1897                         (pending_htlc_adds.1 == 0 && pending_htlc_claims.1 == 0 && pending_htlc_fails.1 == 0 &&
1898                          pending_cell_htlc_claims.1 == 0 && pending_cell_htlc_fails.1 == 0));
1899
1900         for chan_msgs in resp_1.drain(..) {
1901                 if send_funding_locked.0 {
1902                         node_a.node.handle_funding_locked(&node_b.node.get_our_node_id(), &chan_msgs.0.unwrap());
1903                         let announcement_event = node_a.node.get_and_clear_pending_msg_events();
1904                         if !announcement_event.is_empty() {
1905                                 assert_eq!(announcement_event.len(), 1);
1906                                 if let MessageSendEvent::SendAnnouncementSignatures { .. } = announcement_event[0] {
1907                                         //TODO: Test announcement_sigs re-sending
1908                                 } else { panic!("Unexpected event!"); }
1909                         }
1910                 } else {
1911                         assert!(chan_msgs.0.is_none());
1912                 }
1913                 if pending_raa.0 {
1914                         assert!(chan_msgs.3 == RAACommitmentOrder::RevokeAndACKFirst);
1915                         node_a.node.handle_revoke_and_ack(&node_b.node.get_our_node_id(), &chan_msgs.1.unwrap());
1916                         assert!(node_a.node.get_and_clear_pending_msg_events().is_empty());
1917                         check_added_monitors!(node_a, 1);
1918                 } else {
1919                         assert!(chan_msgs.1.is_none());
1920                 }
1921                 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 {
1922                         let commitment_update = chan_msgs.2.unwrap();
1923                         if pending_htlc_adds.0 != -1 { // We use -1 to denote a response commitment_signed
1924                                 assert_eq!(commitment_update.update_add_htlcs.len(), pending_htlc_adds.0 as usize);
1925                         } else {
1926                                 assert!(commitment_update.update_add_htlcs.is_empty());
1927                         }
1928                         assert_eq!(commitment_update.update_fulfill_htlcs.len(), pending_htlc_claims.0 + pending_cell_htlc_claims.0);
1929                         assert_eq!(commitment_update.update_fail_htlcs.len(), pending_htlc_fails.0 + pending_cell_htlc_fails.0);
1930                         assert!(commitment_update.update_fail_malformed_htlcs.is_empty());
1931                         for update_add in commitment_update.update_add_htlcs {
1932                                 node_a.node.handle_update_add_htlc(&node_b.node.get_our_node_id(), &update_add);
1933                         }
1934                         for update_fulfill in commitment_update.update_fulfill_htlcs {
1935                                 node_a.node.handle_update_fulfill_htlc(&node_b.node.get_our_node_id(), &update_fulfill);
1936                         }
1937                         for update_fail in commitment_update.update_fail_htlcs {
1938                                 node_a.node.handle_update_fail_htlc(&node_b.node.get_our_node_id(), &update_fail);
1939                         }
1940
1941                         if pending_htlc_adds.0 != -1 { // We use -1 to denote a response commitment_signed
1942                                 commitment_signed_dance!(node_a, node_b, commitment_update.commitment_signed, false);
1943                         } else {
1944                                 node_a.node.handle_commitment_signed(&node_b.node.get_our_node_id(), &commitment_update.commitment_signed);
1945                                 check_added_monitors!(node_a, 1);
1946                                 let as_revoke_and_ack = get_event_msg!(node_a, MessageSendEvent::SendRevokeAndACK, node_b.node.get_our_node_id());
1947                                 // No commitment_signed so get_event_msg's assert(len == 1) passes
1948                                 node_b.node.handle_revoke_and_ack(&node_a.node.get_our_node_id(), &as_revoke_and_ack);
1949                                 assert!(node_b.node.get_and_clear_pending_msg_events().is_empty());
1950                                 check_added_monitors!(node_b, 1);
1951                         }
1952                 } else {
1953                         assert!(chan_msgs.2.is_none());
1954                 }
1955         }
1956
1957         for chan_msgs in resp_2.drain(..) {
1958                 if send_funding_locked.1 {
1959                         node_b.node.handle_funding_locked(&node_a.node.get_our_node_id(), &chan_msgs.0.unwrap());
1960                         let announcement_event = node_b.node.get_and_clear_pending_msg_events();
1961                         if !announcement_event.is_empty() {
1962                                 assert_eq!(announcement_event.len(), 1);
1963                                 if let MessageSendEvent::SendAnnouncementSignatures { .. } = announcement_event[0] {
1964                                         //TODO: Test announcement_sigs re-sending
1965                                 } else { panic!("Unexpected event!"); }
1966                         }
1967                 } else {
1968                         assert!(chan_msgs.0.is_none());
1969                 }
1970                 if pending_raa.1 {
1971                         assert!(chan_msgs.3 == RAACommitmentOrder::RevokeAndACKFirst);
1972                         node_b.node.handle_revoke_and_ack(&node_a.node.get_our_node_id(), &chan_msgs.1.unwrap());
1973                         assert!(node_b.node.get_and_clear_pending_msg_events().is_empty());
1974                         check_added_monitors!(node_b, 1);
1975                 } else {
1976                         assert!(chan_msgs.1.is_none());
1977                 }
1978                 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 {
1979                         let commitment_update = chan_msgs.2.unwrap();
1980                         if pending_htlc_adds.1 != -1 { // We use -1 to denote a response commitment_signed
1981                                 assert_eq!(commitment_update.update_add_htlcs.len(), pending_htlc_adds.1 as usize);
1982                         }
1983                         assert_eq!(commitment_update.update_fulfill_htlcs.len(), pending_htlc_claims.1 + pending_cell_htlc_claims.1);
1984                         assert_eq!(commitment_update.update_fail_htlcs.len(), pending_htlc_fails.1 + pending_cell_htlc_fails.1);
1985                         assert!(commitment_update.update_fail_malformed_htlcs.is_empty());
1986                         for update_add in commitment_update.update_add_htlcs {
1987                                 node_b.node.handle_update_add_htlc(&node_a.node.get_our_node_id(), &update_add);
1988                         }
1989                         for update_fulfill in commitment_update.update_fulfill_htlcs {
1990                                 node_b.node.handle_update_fulfill_htlc(&node_a.node.get_our_node_id(), &update_fulfill);
1991                         }
1992                         for update_fail in commitment_update.update_fail_htlcs {
1993                                 node_b.node.handle_update_fail_htlc(&node_a.node.get_our_node_id(), &update_fail);
1994                         }
1995
1996                         if pending_htlc_adds.1 != -1 { // We use -1 to denote a response commitment_signed
1997                                 commitment_signed_dance!(node_b, node_a, commitment_update.commitment_signed, false);
1998                         } else {
1999                                 node_b.node.handle_commitment_signed(&node_a.node.get_our_node_id(), &commitment_update.commitment_signed);
2000                                 check_added_monitors!(node_b, 1);
2001                                 let bs_revoke_and_ack = get_event_msg!(node_b, MessageSendEvent::SendRevokeAndACK, node_a.node.get_our_node_id());
2002                                 // No commitment_signed so get_event_msg's assert(len == 1) passes
2003                                 node_a.node.handle_revoke_and_ack(&node_b.node.get_our_node_id(), &bs_revoke_and_ack);
2004                                 assert!(node_a.node.get_and_clear_pending_msg_events().is_empty());
2005                                 check_added_monitors!(node_a, 1);
2006                         }
2007                 } else {
2008                         assert!(chan_msgs.2.is_none());
2009                 }
2010         }
2011 }