Add basic async signer tests
[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 crate::chain::{BestBlock, ChannelMonitorUpdateStatus, Confirm, Listen, Watch, chainmonitor::Persist};
14 use crate::sign::EntropySource;
15 use crate::chain::channelmonitor::ChannelMonitor;
16 use crate::chain::transaction::OutPoint;
17 use crate::events::{ClaimedHTLC, ClosureReason, Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, PathFailure, PaymentPurpose, PaymentFailureReason};
18 use crate::events::bump_transaction::{BumpTransactionEvent, BumpTransactionEventHandler, Wallet, WalletSource};
19 use crate::ln::{ChannelId, PaymentPreimage, PaymentHash, PaymentSecret};
20 use crate::ln::channelmanager::{AChannelManager, ChainParameters, ChannelManager, ChannelManagerReadArgs, RAACommitmentOrder, PaymentSendFailure, RecipientOnionFields, PaymentId, MIN_CLTV_EXPIRY_DELTA};
21 use crate::routing::gossip::{P2PGossipSync, NetworkGraph, NetworkUpdate};
22 use crate::routing::router::{self, PaymentParameters, Route, RouteParameters};
23 use crate::ln::features::InitFeatures;
24 use crate::ln::msgs;
25 use crate::ln::msgs::{ChannelMessageHandler,RoutingMessageHandler};
26 use crate::util::test_channel_signer::TestChannelSigner;
27 use crate::util::scid_utils;
28 use crate::util::test_utils;
29 use crate::util::test_utils::{panicking, TestChainMonitor, TestScorer, TestKeysInterface};
30 use crate::util::errors::APIError;
31 use crate::util::config::{UserConfig, MaxDustHTLCExposure};
32 use crate::util::ser::{ReadableArgs, Writeable};
33 #[cfg(test)]
34 use crate::util::logger::Logger;
35
36 use bitcoin::blockdata::block::{Block, BlockHeader};
37 use bitcoin::blockdata::transaction::{Transaction, TxOut};
38 use bitcoin::hash_types::BlockHash;
39 use bitcoin::hashes::sha256::Hash as Sha256;
40 use bitcoin::hashes::Hash as _;
41 use bitcoin::network::constants::Network;
42 use bitcoin::secp256k1::{PublicKey, SecretKey};
43
44 use crate::io;
45 use crate::prelude::*;
46 use core::cell::RefCell;
47 use alloc::rc::Rc;
48 use crate::sync::{Arc, Mutex, LockTestExt, RwLock};
49 use core::mem;
50 use core::iter::repeat;
51 use bitcoin::{PackedLockTime, TxIn, TxMerkleNode};
52
53 pub const CHAN_CONFIRM_DEPTH: u32 = 10;
54
55 /// Mine the given transaction in the next block and then mine CHAN_CONFIRM_DEPTH - 1 blocks on
56 /// top, giving the given transaction CHAN_CONFIRM_DEPTH confirmations.
57 ///
58 /// Returns the SCID a channel confirmed in the given transaction will have, assuming the funding
59 /// output is the 1st output in the transaction.
60 pub fn confirm_transaction<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, tx: &Transaction) -> u64 {
61         let scid = confirm_transaction_at(node, tx, node.best_block_info().1 + 1);
62         connect_blocks(node, CHAN_CONFIRM_DEPTH - 1);
63         scid
64 }
65 /// Mine a single block containing the given transaction
66 ///
67 /// Returns the SCID a channel confirmed in the given transaction will have, assuming the funding
68 /// output is the 1st output in the transaction.
69 pub fn mine_transaction<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, tx: &Transaction) -> u64 {
70         let height = node.best_block_info().1 + 1;
71         confirm_transaction_at(node, tx, height)
72 }
73 /// Mine a single block containing the given transactions
74 pub fn mine_transactions<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, txn: &[&Transaction]) {
75         let height = node.best_block_info().1 + 1;
76         confirm_transactions_at(node, txn, height);
77 }
78 /// Mine a single block containing the given transaction without extra consistency checks which may
79 /// impact ChannelManager state.
80 pub fn mine_transaction_without_consistency_checks<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, tx: &Transaction) {
81         let height = node.best_block_info().1 + 1;
82         let mut block = Block {
83                 header: BlockHeader { version: 0x20000000, prev_blockhash: node.best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: height, bits: 42, nonce: 42 },
84                 txdata: Vec::new(),
85         };
86         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
87                 block.txdata.push(Transaction { version: 0, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: Vec::new() });
88         }
89         block.txdata.push((*tx).clone());
90         do_connect_block_without_consistency_checks(node, block, false);
91 }
92 /// Mine the given transaction at the given height, mining blocks as required to build to that
93 /// height
94 ///
95 /// Returns the SCID a channel confirmed in the given transaction will have, assuming the funding
96 /// output is the 1st output in the transaction.
97 pub fn confirm_transactions_at<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, txn: &[&Transaction], conf_height: u32) -> u64 {
98         let first_connect_height = node.best_block_info().1 + 1;
99         assert!(first_connect_height <= conf_height);
100         if conf_height > first_connect_height {
101                 connect_blocks(node, conf_height - first_connect_height);
102         }
103         let mut txdata = Vec::new();
104         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
105                 txdata.push(Transaction { version: 0, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: Vec::new() });
106         }
107         for tx in txn {
108                 txdata.push((*tx).clone());
109         }
110         let block = create_dummy_block(node.best_block_hash(), conf_height, txdata);
111         connect_block(node, &block);
112         scid_utils::scid_from_parts(conf_height as u64, block.txdata.len() as u64 - 1, 0).unwrap()
113 }
114 pub fn confirm_transaction_at<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, tx: &Transaction, conf_height: u32) -> u64 {
115         confirm_transactions_at(node, &[tx], conf_height)
116 }
117
118 /// The possible ways we may notify a ChannelManager of a new block
119 #[derive(Clone, Copy, Debug, PartialEq)]
120 pub enum ConnectStyle {
121         /// Calls `best_block_updated` first, detecting transactions in the block only after receiving
122         /// the header and height information.
123         BestBlockFirst,
124         /// The same as `BestBlockFirst`, however when we have multiple blocks to connect, we only
125         /// make a single `best_block_updated` call.
126         BestBlockFirstSkippingBlocks,
127         /// The same as `BestBlockFirst` when connecting blocks. During disconnection only
128         /// `transaction_unconfirmed` is called.
129         BestBlockFirstReorgsOnlyTip,
130         /// Calls `transactions_confirmed` first, detecting transactions in the block before updating
131         /// the header and height information.
132         TransactionsFirst,
133         /// The same as `TransactionsFirst`, however when we have multiple blocks to connect, we only
134         /// make a single `best_block_updated` call.
135         TransactionsFirstSkippingBlocks,
136         /// The same as `TransactionsFirst`, however when we have multiple blocks to connect, we only
137         /// make a single `best_block_updated` call. Further, we call `transactions_confirmed` multiple
138         /// times to ensure it's idempotent.
139         TransactionsDuplicativelyFirstSkippingBlocks,
140         /// The same as `TransactionsFirst`, however when we have multiple blocks to connect, we only
141         /// make a single `best_block_updated` call. Further, we call `transactions_confirmed` multiple
142         /// times to ensure it's idempotent.
143         HighlyRedundantTransactionsFirstSkippingBlocks,
144         /// The same as `TransactionsFirst` when connecting blocks. During disconnection only
145         /// `transaction_unconfirmed` is called.
146         TransactionsFirstReorgsOnlyTip,
147         /// Provides the full block via the `chain::Listen` interface. In the current code this is
148         /// equivalent to `TransactionsFirst` with some additional assertions.
149         FullBlockViaListen,
150 }
151
152 impl ConnectStyle {
153         pub fn skips_blocks(&self) -> bool {
154                 match self {
155                         ConnectStyle::BestBlockFirst => false,
156                         ConnectStyle::BestBlockFirstSkippingBlocks => true,
157                         ConnectStyle::BestBlockFirstReorgsOnlyTip => true,
158                         ConnectStyle::TransactionsFirst => false,
159                         ConnectStyle::TransactionsFirstSkippingBlocks => true,
160                         ConnectStyle::TransactionsDuplicativelyFirstSkippingBlocks => true,
161                         ConnectStyle::HighlyRedundantTransactionsFirstSkippingBlocks => true,
162                         ConnectStyle::TransactionsFirstReorgsOnlyTip => true,
163                         ConnectStyle::FullBlockViaListen => false,
164                 }
165         }
166
167         pub fn updates_best_block_first(&self) -> bool {
168                 match self {
169                         ConnectStyle::BestBlockFirst => true,
170                         ConnectStyle::BestBlockFirstSkippingBlocks => true,
171                         ConnectStyle::BestBlockFirstReorgsOnlyTip => true,
172                         ConnectStyle::TransactionsFirst => false,
173                         ConnectStyle::TransactionsFirstSkippingBlocks => false,
174                         ConnectStyle::TransactionsDuplicativelyFirstSkippingBlocks => false,
175                         ConnectStyle::HighlyRedundantTransactionsFirstSkippingBlocks => false,
176                         ConnectStyle::TransactionsFirstReorgsOnlyTip => false,
177                         ConnectStyle::FullBlockViaListen => false,
178                 }
179         }
180
181         fn random_style() -> ConnectStyle {
182                 #[cfg(feature = "std")] {
183                         use core::hash::{BuildHasher, Hasher};
184                         // Get a random value using the only std API to do so - the DefaultHasher
185                         let rand_val = std::collections::hash_map::RandomState::new().build_hasher().finish();
186                         let res = match rand_val % 9 {
187                                 0 => ConnectStyle::BestBlockFirst,
188                                 1 => ConnectStyle::BestBlockFirstSkippingBlocks,
189                                 2 => ConnectStyle::BestBlockFirstReorgsOnlyTip,
190                                 3 => ConnectStyle::TransactionsFirst,
191                                 4 => ConnectStyle::TransactionsFirstSkippingBlocks,
192                                 5 => ConnectStyle::TransactionsDuplicativelyFirstSkippingBlocks,
193                                 6 => ConnectStyle::HighlyRedundantTransactionsFirstSkippingBlocks,
194                                 7 => ConnectStyle::TransactionsFirstReorgsOnlyTip,
195                                 8 => ConnectStyle::FullBlockViaListen,
196                                 _ => unreachable!(),
197                         };
198                         eprintln!("Using Block Connection Style: {:?}", res);
199                         res
200                 }
201                 #[cfg(not(feature = "std"))] {
202                         ConnectStyle::FullBlockViaListen
203                 }
204         }
205 }
206
207 pub fn create_dummy_header(prev_blockhash: BlockHash, time: u32) -> BlockHeader {
208         BlockHeader {
209                 version: 0x2000_0000,
210                 prev_blockhash,
211                 merkle_root: TxMerkleNode::all_zeros(),
212                 time,
213                 bits: 42,
214                 nonce: 42,
215         }
216 }
217
218 pub fn create_dummy_block(prev_blockhash: BlockHash, time: u32, txdata: Vec<Transaction>) -> Block {
219         Block { header: create_dummy_header(prev_blockhash, time), txdata }
220 }
221
222 pub fn connect_blocks<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, depth: u32) -> BlockHash {
223         let skip_intermediaries = node.connect_style.borrow().skips_blocks();
224
225         let height = node.best_block_info().1 + 1;
226         let mut block = create_dummy_block(node.best_block_hash(), height, Vec::new());
227         assert!(depth >= 1);
228         for i in 1..depth {
229                 let prev_blockhash = block.header.block_hash();
230                 do_connect_block_with_consistency_checks(node, block, skip_intermediaries);
231                 block = create_dummy_block(prev_blockhash, height + i, Vec::new());
232         }
233         let hash = block.header.block_hash();
234         do_connect_block_with_consistency_checks(node, block, false);
235         hash
236 }
237
238 pub fn connect_block<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, block: &Block) {
239         do_connect_block_with_consistency_checks(node, block.clone(), false);
240 }
241
242 fn call_claimable_balances<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>) {
243         // Ensure `get_claimable_balances`' self-tests never panic
244         for funding_outpoint in node.chain_monitor.chain_monitor.list_monitors() {
245                 node.chain_monitor.chain_monitor.get_monitor(funding_outpoint).unwrap().get_claimable_balances();
246         }
247 }
248
249 fn do_connect_block_with_consistency_checks<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, block: Block, skip_intermediaries: bool) {
250         call_claimable_balances(node);
251         do_connect_block_without_consistency_checks(node, block, skip_intermediaries);
252         call_claimable_balances(node);
253         node.node.test_process_background_events();
254 }
255
256 fn do_connect_block_without_consistency_checks<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, block: Block, skip_intermediaries: bool) {
257         let height = node.best_block_info().1 + 1;
258         #[cfg(feature = "std")] {
259                 eprintln!("Connecting block using Block Connection Style: {:?}", *node.connect_style.borrow());
260         }
261         // Update the block internally before handing it over to LDK, to ensure our assertions regarding
262         // transaction broadcast are correct.
263         node.blocks.lock().unwrap().push((block.clone(), height));
264         if !skip_intermediaries {
265                 let txdata: Vec<_> = block.txdata.iter().enumerate().collect();
266                 match *node.connect_style.borrow() {
267                         ConnectStyle::BestBlockFirst|ConnectStyle::BestBlockFirstSkippingBlocks|ConnectStyle::BestBlockFirstReorgsOnlyTip => {
268                                 node.chain_monitor.chain_monitor.best_block_updated(&block.header, height);
269                                 call_claimable_balances(node);
270                                 node.chain_monitor.chain_monitor.transactions_confirmed(&block.header, &txdata, height);
271                                 node.node.best_block_updated(&block.header, height);
272                                 node.node.transactions_confirmed(&block.header, &txdata, height);
273                         },
274                         ConnectStyle::TransactionsFirst|ConnectStyle::TransactionsFirstSkippingBlocks|
275                         ConnectStyle::TransactionsDuplicativelyFirstSkippingBlocks|ConnectStyle::HighlyRedundantTransactionsFirstSkippingBlocks|
276                         ConnectStyle::TransactionsFirstReorgsOnlyTip => {
277                                 if *node.connect_style.borrow() == ConnectStyle::HighlyRedundantTransactionsFirstSkippingBlocks {
278                                         let mut connections = Vec::new();
279                                         for (block, height) in node.blocks.lock().unwrap().iter() {
280                                                 if !block.txdata.is_empty() {
281                                                         // Reconnect all transactions we've ever seen to ensure transaction connection
282                                                         // is *really* idempotent. This is a somewhat likely deployment for some
283                                                         // esplora implementations of chain sync which try to reduce state and
284                                                         // complexity as much as possible.
285                                                         //
286                                                         // Sadly we have to clone the block here to maintain lockorder. In the
287                                                         // future we should consider Arc'ing the blocks to avoid this.
288                                                         connections.push((block.clone(), *height));
289                                                 }
290                                         }
291                                         for (old_block, height) in connections {
292                                                 node.chain_monitor.chain_monitor.transactions_confirmed(&old_block.header,
293                                                         &old_block.txdata.iter().enumerate().collect::<Vec<_>>(), height);
294                                         }
295                                 }
296                                 node.chain_monitor.chain_monitor.transactions_confirmed(&block.header, &txdata, height);
297                                 if *node.connect_style.borrow() == ConnectStyle::TransactionsDuplicativelyFirstSkippingBlocks {
298                                         node.chain_monitor.chain_monitor.transactions_confirmed(&block.header, &txdata, height);
299                                 }
300                                 call_claimable_balances(node);
301                                 node.chain_monitor.chain_monitor.best_block_updated(&block.header, height);
302                                 node.node.transactions_confirmed(&block.header, &txdata, height);
303                                 node.node.best_block_updated(&block.header, height);
304                         },
305                         ConnectStyle::FullBlockViaListen => {
306                                 node.chain_monitor.chain_monitor.block_connected(&block, height);
307                                 node.node.block_connected(&block, height);
308                         }
309                 }
310         }
311
312         for tx in &block.txdata {
313                 for input in &tx.input {
314                         node.wallet_source.remove_utxo(input.previous_output);
315                 }
316                 let wallet_script = node.wallet_source.get_change_script().unwrap();
317                 for (idx, output) in tx.output.iter().enumerate() {
318                         if output.script_pubkey == wallet_script {
319                                 let outpoint = bitcoin::OutPoint { txid: tx.txid(), vout: idx as u32 };
320                                 node.wallet_source.add_utxo(outpoint, output.value);
321                         }
322                 }
323         }
324 }
325
326 pub fn disconnect_blocks<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, count: u32) {
327         call_claimable_balances(node);
328         #[cfg(feature = "std")] {
329                 eprintln!("Disconnecting {} blocks using Block Connection Style: {:?}", count, *node.connect_style.borrow());
330         }
331         for i in 0..count {
332                 let orig = node.blocks.lock().unwrap().pop().unwrap();
333                 assert!(orig.1 > 0); // Cannot disconnect genesis
334                 let prev = node.blocks.lock().unwrap().last().unwrap().clone();
335
336                 match *node.connect_style.borrow() {
337                         ConnectStyle::FullBlockViaListen => {
338                                 node.chain_monitor.chain_monitor.block_disconnected(&orig.0.header, orig.1);
339                                 Listen::block_disconnected(node.node, &orig.0.header, orig.1);
340                         },
341                         ConnectStyle::BestBlockFirstSkippingBlocks|ConnectStyle::TransactionsFirstSkippingBlocks|
342                         ConnectStyle::HighlyRedundantTransactionsFirstSkippingBlocks|ConnectStyle::TransactionsDuplicativelyFirstSkippingBlocks => {
343                                 if i == count - 1 {
344                                         node.chain_monitor.chain_monitor.best_block_updated(&prev.0.header, prev.1);
345                                         node.node.best_block_updated(&prev.0.header, prev.1);
346                                 }
347                         },
348                         ConnectStyle::BestBlockFirstReorgsOnlyTip|ConnectStyle::TransactionsFirstReorgsOnlyTip => {
349                                 for tx in orig.0.txdata {
350                                         node.chain_monitor.chain_monitor.transaction_unconfirmed(&tx.txid());
351                                         node.node.transaction_unconfirmed(&tx.txid());
352                                 }
353                         },
354                         _ => {
355                                 node.chain_monitor.chain_monitor.best_block_updated(&prev.0.header, prev.1);
356                                 node.node.best_block_updated(&prev.0.header, prev.1);
357                         },
358                 }
359                 call_claimable_balances(node);
360         }
361 }
362
363 pub fn disconnect_all_blocks<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>) {
364         let count = node.blocks.lock().unwrap().len() as u32 - 1;
365         disconnect_blocks(node, count);
366 }
367
368 pub struct TestChanMonCfg {
369         pub tx_broadcaster: test_utils::TestBroadcaster,
370         pub fee_estimator: test_utils::TestFeeEstimator,
371         pub chain_source: test_utils::TestChainSource,
372         pub persister: test_utils::TestPersister,
373         pub logger: test_utils::TestLogger,
374         pub keys_manager: test_utils::TestKeysInterface,
375         pub scorer: RwLock<test_utils::TestScorer>,
376 }
377
378 pub struct NodeCfg<'a> {
379         pub chain_source: &'a test_utils::TestChainSource,
380         pub tx_broadcaster: &'a test_utils::TestBroadcaster,
381         pub fee_estimator: &'a test_utils::TestFeeEstimator,
382         pub router: test_utils::TestRouter<'a>,
383         pub chain_monitor: test_utils::TestChainMonitor<'a>,
384         pub keys_manager: &'a test_utils::TestKeysInterface,
385         pub logger: &'a test_utils::TestLogger,
386         pub network_graph: Arc<NetworkGraph<&'a test_utils::TestLogger>>,
387         pub node_seed: [u8; 32],
388         pub override_init_features: Rc<RefCell<Option<InitFeatures>>>,
389 }
390
391 type TestChannelManager<'node_cfg, 'chan_mon_cfg> = ChannelManager<
392         &'node_cfg TestChainMonitor<'chan_mon_cfg>,
393         &'chan_mon_cfg test_utils::TestBroadcaster,
394         &'node_cfg test_utils::TestKeysInterface,
395         &'node_cfg test_utils::TestKeysInterface,
396         &'node_cfg test_utils::TestKeysInterface,
397         &'chan_mon_cfg test_utils::TestFeeEstimator,
398         &'node_cfg test_utils::TestRouter<'chan_mon_cfg>,
399         &'chan_mon_cfg test_utils::TestLogger,
400 >;
401
402 pub struct Node<'chan_man, 'node_cfg: 'chan_man, 'chan_mon_cfg: 'node_cfg> {
403         pub chain_source: &'chan_mon_cfg test_utils::TestChainSource,
404         pub tx_broadcaster: &'chan_mon_cfg test_utils::TestBroadcaster,
405         pub fee_estimator: &'chan_mon_cfg test_utils::TestFeeEstimator,
406         pub router: &'node_cfg test_utils::TestRouter<'chan_mon_cfg>,
407         pub chain_monitor: &'node_cfg test_utils::TestChainMonitor<'chan_mon_cfg>,
408         pub keys_manager: &'chan_mon_cfg test_utils::TestKeysInterface,
409         pub node: &'chan_man TestChannelManager<'node_cfg, 'chan_mon_cfg>,
410         pub network_graph: &'node_cfg NetworkGraph<&'chan_mon_cfg test_utils::TestLogger>,
411         pub gossip_sync: P2PGossipSync<&'node_cfg NetworkGraph<&'chan_mon_cfg test_utils::TestLogger>, &'chan_mon_cfg test_utils::TestChainSource, &'chan_mon_cfg test_utils::TestLogger>,
412         pub node_seed: [u8; 32],
413         pub network_payment_count: Rc<RefCell<u8>>,
414         pub network_chan_count: Rc<RefCell<u32>>,
415         pub logger: &'chan_mon_cfg test_utils::TestLogger,
416         pub blocks: Arc<Mutex<Vec<(Block, u32)>>>,
417         pub connect_style: Rc<RefCell<ConnectStyle>>,
418         pub override_init_features: Rc<RefCell<Option<InitFeatures>>>,
419         pub wallet_source: Arc<test_utils::TestWalletSource>,
420         pub bump_tx_handler: BumpTransactionEventHandler<
421                 &'chan_mon_cfg test_utils::TestBroadcaster,
422                 Arc<Wallet<Arc<test_utils::TestWalletSource>, &'chan_mon_cfg test_utils::TestLogger>>,
423                 &'chan_mon_cfg test_utils::TestKeysInterface,
424                 &'chan_mon_cfg test_utils::TestLogger,
425         >,
426 }
427 #[cfg(feature = "std")]
428 impl<'a, 'b, 'c> std::panic::UnwindSafe for Node<'a, 'b, 'c> {}
429 #[cfg(feature = "std")]
430 impl<'a, 'b, 'c> std::panic::RefUnwindSafe for Node<'a, 'b, 'c> {}
431 impl<'a, 'b, 'c> Node<'a, 'b, 'c> {
432         pub fn best_block_hash(&self) -> BlockHash {
433                 self.blocks.lock().unwrap().last().unwrap().0.block_hash()
434         }
435         pub fn best_block_info(&self) -> (BlockHash, u32) {
436                 self.blocks.lock().unwrap().last().map(|(a, b)| (a.block_hash(), *b)).unwrap()
437         }
438         pub fn get_block_header(&self, height: u32) -> BlockHeader {
439                 self.blocks.lock().unwrap()[height as usize].0.header
440         }
441         /// Changes the channel signer's availability for the specified peer and channel.
442         ///
443         /// When `available` is set to `true`, the channel signer will behave normally. When set to
444         /// `false`, the channel signer will act like an off-line remote signer and will return `Err` for
445         /// several of the signing methods. Currently, only `get_per_commitment_point` and
446         /// `release_commitment_secret` are affected by this setting.
447         #[cfg(test)]
448         pub fn set_channel_signer_available(&self, peer_id: &PublicKey, chan_id: &ChannelId, available: bool) {
449                 let per_peer_state = self.node.per_peer_state.read().unwrap();
450                 let chan_lock = per_peer_state.get(peer_id).unwrap().lock().unwrap();
451                 let signer = (|| {
452                         match chan_lock.channel_by_id.get(chan_id) {
453                                 Some(phase) => phase.context().get_signer(),
454                                 None => panic!("Couldn't find a channel with id {}", chan_id),
455                         }
456                 })();
457                 log_debug!(self.logger, "Setting channel signer for {} as available={}", chan_id, available);
458                 signer.as_ecdsa().unwrap().set_available(available);
459         }
460 }
461
462 /// If we need an unsafe pointer to a `Node` (ie to reference it in a thread
463 /// pre-std::thread::scope), this provides that with `Sync`. Note that accessing some of the fields
464 /// in the `Node` are not safe to use (i.e. the ones behind an `Rc`), but that's left to the caller
465 /// to figure out.
466 pub struct NodePtr(pub *const Node<'static, 'static, 'static>);
467 impl NodePtr {
468         pub fn from_node<'a, 'b: 'a, 'c: 'b>(node: &Node<'a, 'b, 'c>) -> Self {
469                 Self((node as *const Node<'a, 'b, 'c>).cast())
470         }
471 }
472 unsafe impl Send for NodePtr {}
473 unsafe impl Sync for NodePtr {}
474
475
476 pub trait NodeHolder {
477         type CM: AChannelManager;
478         fn node(&self) -> &ChannelManager<
479                 <Self::CM as AChannelManager>::M,
480                 <Self::CM as AChannelManager>::T,
481                 <Self::CM as AChannelManager>::ES,
482                 <Self::CM as AChannelManager>::NS,
483                 <Self::CM as AChannelManager>::SP,
484                 <Self::CM as AChannelManager>::F,
485                 <Self::CM as AChannelManager>::R,
486                 <Self::CM as AChannelManager>::L>;
487         fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor>;
488 }
489 impl<H: NodeHolder> NodeHolder for &H {
490         type CM = H::CM;
491         fn node(&self) -> &ChannelManager<
492                 <Self::CM as AChannelManager>::M,
493                 <Self::CM as AChannelManager>::T,
494                 <Self::CM as AChannelManager>::ES,
495                 <Self::CM as AChannelManager>::NS,
496                 <Self::CM as AChannelManager>::SP,
497                 <Self::CM as AChannelManager>::F,
498                 <Self::CM as AChannelManager>::R,
499                 <Self::CM as AChannelManager>::L> { (*self).node() }
500         fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { (*self).chain_monitor() }
501 }
502 impl<'a, 'b: 'a, 'c: 'b> NodeHolder for Node<'a, 'b, 'c> {
503         type CM = TestChannelManager<'b, 'c>;
504         fn node(&self) -> &TestChannelManager<'b, 'c> { &self.node }
505         fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { Some(self.chain_monitor) }
506 }
507
508 impl<'a, 'b, 'c> Drop for Node<'a, 'b, 'c> {
509         fn drop(&mut self) {
510                 if !panicking() {
511                         // Check that we processed all pending events
512                         let msg_events = self.node.get_and_clear_pending_msg_events();
513                         if !msg_events.is_empty() {
514                                 panic!("Had excess message events on node {}: {:?}", self.logger.id, msg_events);
515                         }
516                         let events = self.node.get_and_clear_pending_events();
517                         if !events.is_empty() {
518                                 panic!("Had excess events on node {}: {:?}", self.logger.id, events);
519                         }
520                         let added_monitors = self.chain_monitor.added_monitors.lock().unwrap().split_off(0);
521                         if !added_monitors.is_empty() {
522                                 panic!("Had {} excess added monitors on node {}", added_monitors.len(), self.logger.id);
523                         }
524
525                         // Check that if we serialize the network graph, we can deserialize it again.
526                         let network_graph = {
527                                 let mut w = test_utils::TestVecWriter(Vec::new());
528                                 self.network_graph.write(&mut w).unwrap();
529                                 let network_graph_deser = <NetworkGraph<_>>::read(&mut io::Cursor::new(&w.0), self.logger).unwrap();
530                                 assert!(network_graph_deser == *self.network_graph);
531                                 let gossip_sync = P2PGossipSync::new(
532                                         &network_graph_deser, Some(self.chain_source), self.logger
533                                 );
534                                 let mut chan_progress = 0;
535                                 loop {
536                                         let orig_announcements = self.gossip_sync.get_next_channel_announcement(chan_progress);
537                                         let deserialized_announcements = gossip_sync.get_next_channel_announcement(chan_progress);
538                                         assert!(orig_announcements == deserialized_announcements);
539                                         chan_progress = match orig_announcements {
540                                                 Some(announcement) => announcement.0.contents.short_channel_id + 1,
541                                                 None => break,
542                                         };
543                                 }
544                                 let mut node_progress = None;
545                                 loop {
546                                         let orig_announcements = self.gossip_sync.get_next_node_announcement(node_progress.as_ref());
547                                         let deserialized_announcements = gossip_sync.get_next_node_announcement(node_progress.as_ref());
548                                         assert!(orig_announcements == deserialized_announcements);
549                                         node_progress = match orig_announcements {
550                                                 Some(announcement) => Some(announcement.contents.node_id),
551                                                 None => break,
552                                         };
553                                 }
554                                 network_graph_deser
555                         };
556
557                         // Check that if we serialize and then deserialize all our channel monitors we get the
558                         // same set of outputs to watch for on chain as we have now. Note that if we write
559                         // tests that fully close channels and remove the monitors at some point this may break.
560                         let feeest = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
561                         let mut deserialized_monitors = Vec::new();
562                         {
563                                 for outpoint in self.chain_monitor.chain_monitor.list_monitors() {
564                                         let mut w = test_utils::TestVecWriter(Vec::new());
565                                         self.chain_monitor.chain_monitor.get_monitor(outpoint).unwrap().write(&mut w).unwrap();
566                                         let (_, deserialized_monitor) = <(BlockHash, ChannelMonitor<TestChannelSigner>)>::read(
567                                                 &mut io::Cursor::new(&w.0), (self.keys_manager, self.keys_manager)).unwrap();
568                                         deserialized_monitors.push(deserialized_monitor);
569                                 }
570                         }
571
572                         let broadcaster = test_utils::TestBroadcaster {
573                                 txn_broadcasted: Mutex::new(self.tx_broadcaster.txn_broadcasted.lock().unwrap().clone()),
574                                 blocks: Arc::new(Mutex::new(self.tx_broadcaster.blocks.lock().unwrap().clone())),
575                         };
576
577                         // Before using all the new monitors to check the watch outpoints, use the full set of
578                         // them to ensure we can write and reload our ChannelManager.
579                         {
580                                 let mut channel_monitors = HashMap::new();
581                                 for monitor in deserialized_monitors.iter_mut() {
582                                         channel_monitors.insert(monitor.get_funding_txo().0, monitor);
583                                 }
584
585                                 let scorer = RwLock::new(test_utils::TestScorer::new());
586                                 let mut w = test_utils::TestVecWriter(Vec::new());
587                                 self.node.write(&mut w).unwrap();
588                                 <(BlockHash, ChannelManager<&test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestKeysInterface, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestRouter, &test_utils::TestLogger>)>::read(&mut io::Cursor::new(w.0), ChannelManagerReadArgs {
589                                         default_config: *self.node.get_current_default_configuration(),
590                                         entropy_source: self.keys_manager,
591                                         node_signer: self.keys_manager,
592                                         signer_provider: self.keys_manager,
593                                         fee_estimator: &test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) },
594                                         router: &test_utils::TestRouter::new(Arc::new(network_graph), &scorer),
595                                         chain_monitor: self.chain_monitor,
596                                         tx_broadcaster: &broadcaster,
597                                         logger: &self.logger,
598                                         channel_monitors,
599                                 }).unwrap();
600                         }
601
602                         let persister = test_utils::TestPersister::new();
603                         let chain_source = test_utils::TestChainSource::new(Network::Testnet);
604                         let chain_monitor = test_utils::TestChainMonitor::new(Some(&chain_source), &broadcaster, &self.logger, &feeest, &persister, &self.keys_manager);
605                         for deserialized_monitor in deserialized_monitors.drain(..) {
606                                 if chain_monitor.watch_channel(deserialized_monitor.get_funding_txo().0, deserialized_monitor) != Ok(ChannelMonitorUpdateStatus::Completed) {
607                                         panic!();
608                                 }
609                         }
610                         assert_eq!(*chain_source.watched_txn.unsafe_well_ordered_double_lock_self(), *self.chain_source.watched_txn.unsafe_well_ordered_double_lock_self());
611                         assert_eq!(*chain_source.watched_outputs.unsafe_well_ordered_double_lock_self(), *self.chain_source.watched_outputs.unsafe_well_ordered_double_lock_self());
612                 }
613         }
614 }
615
616 pub fn create_chan_between_nodes<'a, 'b, 'c: 'd, 'd>(node_a: &'a Node<'b, 'c, 'd>, node_b: &'a Node<'b, 'c, 'd>) -> (msgs::ChannelAnnouncement, msgs::ChannelUpdate, msgs::ChannelUpdate, ChannelId, Transaction) {
617         create_chan_between_nodes_with_value(node_a, node_b, 100000, 10001)
618 }
619
620 pub fn create_chan_between_nodes_with_value<'a, 'b, 'c: 'd, 'd>(node_a: &'a Node<'b, 'c, 'd>, node_b: &'a Node<'b, 'c, 'd>, channel_value: u64, push_msat: u64) -> (msgs::ChannelAnnouncement, msgs::ChannelUpdate, msgs::ChannelUpdate, ChannelId, Transaction) {
621         let (channel_ready, channel_id, tx) = create_chan_between_nodes_with_value_a(node_a, node_b, channel_value, push_msat);
622         let (announcement, as_update, bs_update) = create_chan_between_nodes_with_value_b(node_a, node_b, &channel_ready);
623         (announcement, as_update, bs_update, channel_id, tx)
624 }
625
626 /// Gets an RAA and CS which were sent in response to a commitment update
627 pub fn get_revoke_commit_msgs<CM: AChannelManager, H: NodeHolder<CM=CM>>(node: &H, recipient: &PublicKey) -> (msgs::RevokeAndACK, msgs::CommitmentSigned) {
628         let events = node.node().get_and_clear_pending_msg_events();
629         assert_eq!(events.len(), 2);
630         (match events[0] {
631                 MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
632                         assert_eq!(node_id, recipient);
633                         (*msg).clone()
634                 },
635                 _ => panic!("Unexpected event"),
636         }, match events[1] {
637                 MessageSendEvent::UpdateHTLCs { ref node_id, ref updates } => {
638                         assert_eq!(node_id, recipient);
639                         assert!(updates.update_add_htlcs.is_empty());
640                         assert!(updates.update_fulfill_htlcs.is_empty());
641                         assert!(updates.update_fail_htlcs.is_empty());
642                         assert!(updates.update_fail_malformed_htlcs.is_empty());
643                         assert!(updates.update_fee.is_none());
644                         updates.commitment_signed.clone()
645                 },
646                 _ => panic!("Unexpected event"),
647         })
648 }
649
650 #[macro_export]
651 /// Gets an RAA and CS which were sent in response to a commitment update
652 ///
653 /// Don't use this, use the identically-named function instead.
654 macro_rules! get_revoke_commit_msgs {
655         ($node: expr, $node_id: expr) => {
656                 $crate::ln::functional_test_utils::get_revoke_commit_msgs(&$node, &$node_id)
657         }
658 }
659
660 /// Get an specific event message from the pending events queue.
661 #[macro_export]
662 macro_rules! get_event_msg {
663         ($node: expr, $event_type: path, $node_id: expr) => {
664                 {
665                         let events = $node.node.get_and_clear_pending_msg_events();
666                         assert_eq!(events.len(), 1);
667                         match events[0] {
668                                 $event_type { ref node_id, ref msg } => {
669                                         assert_eq!(*node_id, $node_id);
670                                         (*msg).clone()
671                                 },
672                                 _ => panic!("Unexpected event"),
673                         }
674                 }
675         }
676 }
677
678 /// Get an error message from the pending events queue.
679 pub fn get_err_msg(node: &Node, recipient: &PublicKey) -> msgs::ErrorMessage {
680         let events = node.node.get_and_clear_pending_msg_events();
681         assert_eq!(events.len(), 1);
682         match events[0] {
683                 MessageSendEvent::HandleError {
684                         action: msgs::ErrorAction::SendErrorMessage { ref msg }, ref node_id
685                 } => {
686                         assert_eq!(node_id, recipient);
687                         (*msg).clone()
688                 },
689                 MessageSendEvent::HandleError {
690                         action: msgs::ErrorAction::DisconnectPeer { ref msg }, ref node_id
691                 } => {
692                         assert_eq!(node_id, recipient);
693                         msg.as_ref().unwrap().clone()
694                 },
695                 _ => panic!("Unexpected event"),
696         }
697 }
698
699 /// Get a specific event from the pending events queue.
700 #[macro_export]
701 macro_rules! get_event {
702         ($node: expr, $event_type: path) => {
703                 {
704                         let mut events = $node.node.get_and_clear_pending_events();
705                         assert_eq!(events.len(), 1);
706                         let ev = events.pop().unwrap();
707                         match ev {
708                                 $event_type { .. } => {
709                                         ev
710                                 },
711                                 _ => panic!("Unexpected event"),
712                         }
713                 }
714         }
715 }
716
717 /// Gets an UpdateHTLCs MessageSendEvent
718 pub fn get_htlc_update_msgs(node: &Node, recipient: &PublicKey) -> msgs::CommitmentUpdate {
719         let events = node.node.get_and_clear_pending_msg_events();
720         assert_eq!(events.len(), 1);
721         match events[0] {
722                 MessageSendEvent::UpdateHTLCs { ref node_id, ref updates } => {
723                         assert_eq!(node_id, recipient);
724                         (*updates).clone()
725                 },
726                 _ => panic!("Unexpected event"),
727         }
728 }
729
730 #[macro_export]
731 /// Gets an UpdateHTLCs MessageSendEvent
732 ///
733 /// Don't use this, use the identically-named function instead.
734 macro_rules! get_htlc_update_msgs {
735         ($node: expr, $node_id: expr) => {
736                 $crate::ln::functional_test_utils::get_htlc_update_msgs(&$node, &$node_id)
737         }
738 }
739
740 /// Fetches the first `msg_event` to the passed `node_id` in the passed `msg_events` vec.
741 /// Returns the `msg_event`.
742 ///
743 /// Note that even though `BroadcastChannelAnnouncement` and `BroadcastChannelUpdate`
744 /// `msg_events` are stored under specific peers, this function does not fetch such `msg_events` as
745 /// such messages are intended to all peers.
746 pub fn remove_first_msg_event_to_node(msg_node_id: &PublicKey, msg_events: &mut Vec<MessageSendEvent>) -> MessageSendEvent {
747         let ev_index = msg_events.iter().position(|e| { match e {
748                 MessageSendEvent::SendAcceptChannel { node_id, .. } => {
749                         node_id == msg_node_id
750                 },
751                 MessageSendEvent::SendOpenChannel { node_id, .. } => {
752                         node_id == msg_node_id
753                 },
754                 MessageSendEvent::SendFundingCreated { node_id, .. } => {
755                         node_id == msg_node_id
756                 },
757                 MessageSendEvent::SendFundingSigned { node_id, .. } => {
758                         node_id == msg_node_id
759                 },
760                 MessageSendEvent::SendChannelReady { node_id, .. } => {
761                         node_id == msg_node_id
762                 },
763                 MessageSendEvent::SendAnnouncementSignatures { node_id, .. } => {
764                         node_id == msg_node_id
765                 },
766                 MessageSendEvent::UpdateHTLCs { node_id, .. } => {
767                         node_id == msg_node_id
768                 },
769                 MessageSendEvent::SendRevokeAndACK { node_id, .. } => {
770                         node_id == msg_node_id
771                 },
772                 MessageSendEvent::SendClosingSigned { node_id, .. } => {
773                         node_id == msg_node_id
774                 },
775                 MessageSendEvent::SendShutdown { node_id, .. } => {
776                         node_id == msg_node_id
777                 },
778                 MessageSendEvent::SendChannelReestablish { node_id, .. } => {
779                         node_id == msg_node_id
780                 },
781                 MessageSendEvent::SendChannelAnnouncement { node_id, .. } => {
782                         node_id == msg_node_id
783                 },
784                 MessageSendEvent::BroadcastChannelAnnouncement { .. } => {
785                         false
786                 },
787                 MessageSendEvent::BroadcastChannelUpdate { .. } => {
788                         false
789                 },
790                 MessageSendEvent::BroadcastNodeAnnouncement { .. } => {
791                         false
792                 },
793                 MessageSendEvent::SendChannelUpdate { node_id, .. } => {
794                         node_id == msg_node_id
795                 },
796                 MessageSendEvent::HandleError { node_id, .. } => {
797                         node_id == msg_node_id
798                 },
799                 MessageSendEvent::SendChannelRangeQuery { node_id, .. } => {
800                         node_id == msg_node_id
801                 },
802                 MessageSendEvent::SendShortIdsQuery { node_id, .. } => {
803                         node_id == msg_node_id
804                 },
805                 MessageSendEvent::SendReplyChannelRange { node_id, .. } => {
806                         node_id == msg_node_id
807                 },
808                 MessageSendEvent::SendGossipTimestampFilter { node_id, .. } => {
809                         node_id == msg_node_id
810                 },
811                 MessageSendEvent::SendAcceptChannelV2 { node_id, .. } => {
812                         node_id == msg_node_id
813                 },
814                 MessageSendEvent::SendOpenChannelV2 { node_id, .. } => {
815                         node_id == msg_node_id
816                 },
817                 MessageSendEvent::SendTxAddInput { node_id, .. } => {
818                         node_id == msg_node_id
819                 },
820                 MessageSendEvent::SendTxAddOutput { node_id, .. } => {
821                         node_id == msg_node_id
822                 },
823                 MessageSendEvent::SendTxRemoveInput { node_id, .. } => {
824                         node_id == msg_node_id
825                 },
826                 MessageSendEvent::SendTxRemoveOutput { node_id, .. } => {
827                         node_id == msg_node_id
828                 },
829                 MessageSendEvent::SendTxComplete { node_id, .. } => {
830                         node_id == msg_node_id
831                 },
832                 MessageSendEvent::SendTxSignatures { node_id, .. } => {
833                         node_id == msg_node_id
834                 },
835                 MessageSendEvent::SendTxInitRbf { node_id, .. } => {
836                         node_id == msg_node_id
837                 },
838                 MessageSendEvent::SendTxAckRbf { node_id, .. } => {
839                         node_id == msg_node_id
840                 },
841                 MessageSendEvent::SendTxAbort { node_id, .. } => {
842                         node_id == msg_node_id
843                 },
844         }});
845         if ev_index.is_some() {
846                 msg_events.remove(ev_index.unwrap())
847         } else {
848                 panic!("Couldn't find any MessageSendEvent to the node!")
849         }
850 }
851
852 #[cfg(test)]
853 macro_rules! get_channel_ref {
854         ($node: expr, $counterparty_node: expr, $per_peer_state_lock: ident, $peer_state_lock: ident, $channel_id: expr) => {
855                 {
856                         $per_peer_state_lock = $node.node.per_peer_state.read().unwrap();
857                         $peer_state_lock = $per_peer_state_lock.get(&$counterparty_node.node.get_our_node_id()).unwrap().lock().unwrap();
858                         $peer_state_lock.channel_by_id.get_mut(&$channel_id).unwrap()
859                 }
860         }
861 }
862
863 #[cfg(test)]
864 macro_rules! get_feerate {
865         ($node: expr, $counterparty_node: expr, $channel_id: expr) => {
866                 {
867                         let mut per_peer_state_lock;
868                         let mut peer_state_lock;
869                         let phase = get_channel_ref!($node, $counterparty_node, per_peer_state_lock, peer_state_lock, $channel_id);
870                         phase.context().get_feerate_sat_per_1000_weight()
871                 }
872         }
873 }
874
875 #[cfg(test)]
876 macro_rules! get_channel_type_features {
877         ($node: expr, $counterparty_node: expr, $channel_id: expr) => {
878                 {
879                         let mut per_peer_state_lock;
880                         let mut peer_state_lock;
881                         let chan = get_channel_ref!($node, $counterparty_node, per_peer_state_lock, peer_state_lock, $channel_id);
882                         chan.context().get_channel_type().clone()
883                 }
884         }
885 }
886
887 /// Returns a channel monitor given a channel id, making some naive assumptions
888 #[macro_export]
889 macro_rules! get_monitor {
890         ($node: expr, $channel_id: expr) => {
891                 {
892                         use bitcoin::hashes::Hash;
893                         let mut monitor = None;
894                         // Assume funding vout is either 0 or 1 blindly
895                         for index in 0..2 {
896                                 if let Ok(mon) = $node.chain_monitor.chain_monitor.get_monitor(
897                                         $crate::chain::transaction::OutPoint {
898                                                 txid: bitcoin::Txid::from_slice(&$channel_id.0[..]).unwrap(), index
899                                         })
900                                 {
901                                         monitor = Some(mon);
902                                         break;
903                                 }
904                         }
905                         monitor.unwrap()
906                 }
907         }
908 }
909
910 /// Returns any local commitment transactions for the channel.
911 #[macro_export]
912 macro_rules! get_local_commitment_txn {
913         ($node: expr, $channel_id: expr) => {
914                 {
915                         $crate::get_monitor!($node, $channel_id).unsafe_get_latest_holder_commitment_txn(&$node.logger)
916                 }
917         }
918 }
919
920 /// Check the error from attempting a payment.
921 #[macro_export]
922 macro_rules! unwrap_send_err {
923         ($res: expr, $all_failed: expr, $type: pat, $check: expr) => {
924                 match &$res {
925                         &Err(PaymentSendFailure::AllFailedResendSafe(ref fails)) if $all_failed => {
926                                 assert_eq!(fails.len(), 1);
927                                 match fails[0] {
928                                         $type => { $check },
929                                         _ => panic!(),
930                                 }
931                         },
932                         &Err(PaymentSendFailure::PartialFailure { ref results, .. }) if !$all_failed => {
933                                 assert_eq!(results.len(), 1);
934                                 match results[0] {
935                                         Err($type) => { $check },
936                                         _ => panic!(),
937                                 }
938                         },
939                         _ => panic!(),
940                 }
941         }
942 }
943
944 /// Check whether N channel monitor(s) have been added.
945 pub fn check_added_monitors<CM: AChannelManager, H: NodeHolder<CM=CM>>(node: &H, count: usize) {
946         if let Some(chain_monitor) = node.chain_monitor() {
947                 let mut added_monitors = chain_monitor.added_monitors.lock().unwrap();
948                 let n = added_monitors.len();
949                 assert_eq!(n, count, "expected {} monitors to be added, not {}", count, n);
950                 added_monitors.clear();
951         }
952 }
953
954 /// Check whether N channel monitor(s) have been added.
955 ///
956 /// Don't use this, use the identically-named function instead.
957 #[macro_export]
958 macro_rules! check_added_monitors {
959         ($node: expr, $count: expr) => {
960                 $crate::ln::functional_test_utils::check_added_monitors(&$node, $count);
961         }
962 }
963
964 /// Checks whether the claimed HTLC for the specified path has the correct channel information.
965 ///
966 /// This will panic if the path is empty, if the HTLC's channel ID is not actually a channel that
967 /// connects the final two nodes in the path, or if the `user_channel_id` is incorrect.
968 pub fn check_claimed_htlc_channel<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, path: &[&Node<'a, 'b, 'c>], htlc: &ClaimedHTLC) {
969         let mut nodes = path.iter().rev();
970         let dest = nodes.next().expect("path should have a destination").node;
971         let prev = nodes.next().unwrap_or(&origin_node).node;
972         let dest_channels = dest.list_channels();
973         let ch = dest_channels.iter().find(|ch| ch.channel_id == htlc.channel_id)
974                 .expect("HTLC's channel should be one of destination node's channels");
975         assert_eq!(htlc.user_channel_id, ch.user_channel_id);
976         assert_eq!(ch.counterparty.node_id, prev.get_our_node_id());
977 }
978
979 pub fn _reload_node<'a, 'b, 'c>(node: &'a Node<'a, 'b, 'c>, default_config: UserConfig, chanman_encoded: &[u8], monitors_encoded: &[&[u8]]) -> TestChannelManager<'b, 'c> {
980         let mut monitors_read = Vec::with_capacity(monitors_encoded.len());
981         for encoded in monitors_encoded {
982                 let mut monitor_read = &encoded[..];
983                 let (_, monitor) = <(BlockHash, ChannelMonitor<TestChannelSigner>)>
984                         ::read(&mut monitor_read, (node.keys_manager, node.keys_manager)).unwrap();
985                 assert!(monitor_read.is_empty());
986                 monitors_read.push(monitor);
987         }
988
989         let mut node_read = &chanman_encoded[..];
990         let (_, node_deserialized) = {
991                 let mut channel_monitors = HashMap::new();
992                 for monitor in monitors_read.iter_mut() {
993                         assert!(channel_monitors.insert(monitor.get_funding_txo().0, monitor).is_none());
994                 }
995                 <(BlockHash, TestChannelManager<'b, 'c>)>::read(&mut node_read, ChannelManagerReadArgs {
996                         default_config,
997                         entropy_source: node.keys_manager,
998                         node_signer: node.keys_manager,
999                         signer_provider: node.keys_manager,
1000                         fee_estimator: node.fee_estimator,
1001                         router: node.router,
1002                         chain_monitor: node.chain_monitor,
1003                         tx_broadcaster: node.tx_broadcaster,
1004                         logger: node.logger,
1005                         channel_monitors,
1006                 }).unwrap()
1007         };
1008         assert!(node_read.is_empty());
1009
1010         for monitor in monitors_read.drain(..) {
1011                 assert_eq!(node.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor),
1012                         Ok(ChannelMonitorUpdateStatus::Completed));
1013                 check_added_monitors!(node, 1);
1014         }
1015
1016         node_deserialized
1017 }
1018
1019 #[cfg(test)]
1020 macro_rules! reload_node {
1021         ($node: expr, $new_config: expr, $chanman_encoded: expr, $monitors_encoded: expr, $persister: ident, $new_chain_monitor: ident, $new_channelmanager: ident) => {
1022                 let chanman_encoded = $chanman_encoded;
1023
1024                 $persister = test_utils::TestPersister::new();
1025                 $new_chain_monitor = test_utils::TestChainMonitor::new(Some($node.chain_source), $node.tx_broadcaster.clone(), $node.logger, $node.fee_estimator, &$persister, &$node.keys_manager);
1026                 $node.chain_monitor = &$new_chain_monitor;
1027
1028                 $new_channelmanager = _reload_node(&$node, $new_config, &chanman_encoded, $monitors_encoded);
1029                 $node.node = &$new_channelmanager;
1030         };
1031         ($node: expr, $chanman_encoded: expr, $monitors_encoded: expr, $persister: ident, $new_chain_monitor: ident, $new_channelmanager: ident) => {
1032                 reload_node!($node, $crate::util::config::UserConfig::default(), $chanman_encoded, $monitors_encoded, $persister, $new_chain_monitor, $new_channelmanager);
1033         };
1034 }
1035
1036 pub fn create_funding_transaction<'a, 'b, 'c>(node: &Node<'a, 'b, 'c>,
1037         expected_counterparty_node_id: &PublicKey, expected_chan_value: u64, expected_user_chan_id: u128)
1038  -> (ChannelId, Transaction, OutPoint)
1039 {
1040         internal_create_funding_transaction(node, expected_counterparty_node_id, expected_chan_value, expected_user_chan_id, false)
1041 }
1042
1043 pub fn create_coinbase_funding_transaction<'a, 'b, 'c>(node: &Node<'a, 'b, 'c>,
1044         expected_counterparty_node_id: &PublicKey, expected_chan_value: u64, expected_user_chan_id: u128)
1045  -> (ChannelId, Transaction, OutPoint)
1046 {
1047         internal_create_funding_transaction(node, expected_counterparty_node_id, expected_chan_value, expected_user_chan_id, true)
1048 }
1049
1050 fn internal_create_funding_transaction<'a, 'b, 'c>(node: &Node<'a, 'b, 'c>,
1051         expected_counterparty_node_id: &PublicKey, expected_chan_value: u64, expected_user_chan_id: u128,
1052         coinbase: bool) -> (ChannelId, Transaction, OutPoint) {
1053         let chan_id = *node.network_chan_count.borrow();
1054
1055         let events = node.node.get_and_clear_pending_events();
1056         assert_eq!(events.len(), 1);
1057         match events[0] {
1058                 Event::FundingGenerationReady { ref temporary_channel_id, ref counterparty_node_id, ref channel_value_satoshis, ref output_script, user_channel_id } => {
1059                         assert_eq!(counterparty_node_id, expected_counterparty_node_id);
1060                         assert_eq!(*channel_value_satoshis, expected_chan_value);
1061                         assert_eq!(user_channel_id, expected_user_chan_id);
1062
1063                         let input = if coinbase {
1064                                 vec![TxIn {
1065                                         previous_output: bitcoin::OutPoint::null(),
1066                                         ..Default::default()
1067                                 }]
1068                         } else {
1069                                 Vec::new()
1070                         };
1071
1072                         let tx = Transaction { version: chan_id as i32, lock_time: PackedLockTime::ZERO, input, output: vec![TxOut {
1073                                 value: *channel_value_satoshis, script_pubkey: output_script.clone(),
1074                         }]};
1075                         let funding_outpoint = OutPoint { txid: tx.txid(), index: 0 };
1076                         (*temporary_channel_id, tx, funding_outpoint)
1077                 },
1078                 _ => panic!("Unexpected event"),
1079         }
1080 }
1081
1082 pub fn sign_funding_transaction<'a, 'b, 'c>(node_a: &Node<'a, 'b, 'c>, node_b: &Node<'a, 'b, 'c>, channel_value: u64, expected_temporary_channel_id: ChannelId) -> Transaction {
1083         let (temporary_channel_id, tx, funding_output) = create_funding_transaction(node_a, &node_b.node.get_our_node_id(), channel_value, 42);
1084         assert_eq!(temporary_channel_id, expected_temporary_channel_id);
1085
1086         assert!(node_a.node.funding_transaction_generated(&temporary_channel_id, &node_b.node.get_our_node_id(), tx.clone()).is_ok());
1087         check_added_monitors!(node_a, 0);
1088
1089         let funding_created_msg = get_event_msg!(node_a, MessageSendEvent::SendFundingCreated, node_b.node.get_our_node_id());
1090         assert_eq!(funding_created_msg.temporary_channel_id, expected_temporary_channel_id);
1091         node_b.node.handle_funding_created(&node_a.node.get_our_node_id(), &funding_created_msg);
1092         {
1093                 let mut added_monitors = node_b.chain_monitor.added_monitors.lock().unwrap();
1094                 assert_eq!(added_monitors.len(), 1);
1095                 assert_eq!(added_monitors[0].0, funding_output);
1096                 added_monitors.clear();
1097         }
1098         expect_channel_pending_event(&node_b, &node_a.node.get_our_node_id());
1099
1100         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()));
1101         {
1102                 let mut added_monitors = node_a.chain_monitor.added_monitors.lock().unwrap();
1103                 assert_eq!(added_monitors.len(), 1);
1104                 assert_eq!(added_monitors[0].0, funding_output);
1105                 added_monitors.clear();
1106         }
1107         expect_channel_pending_event(&node_a, &node_b.node.get_our_node_id());
1108
1109         let events_4 = node_a.node.get_and_clear_pending_events();
1110         assert_eq!(events_4.len(), 0);
1111
1112         assert_eq!(node_a.tx_broadcaster.txn_broadcasted.lock().unwrap().len(), 1);
1113         assert_eq!(node_a.tx_broadcaster.txn_broadcasted.lock().unwrap()[0], tx);
1114         node_a.tx_broadcaster.txn_broadcasted.lock().unwrap().clear();
1115
1116         // Ensure that funding_transaction_generated is idempotent.
1117         assert!(node_a.node.funding_transaction_generated(&temporary_channel_id, &node_b.node.get_our_node_id(), tx.clone()).is_err());
1118         assert!(node_a.node.get_and_clear_pending_msg_events().is_empty());
1119         check_added_monitors!(node_a, 0);
1120
1121         tx
1122 }
1123
1124 // Receiver must have been initialized with manually_accept_inbound_channels set to true.
1125 pub fn open_zero_conf_channel<'a, 'b, 'c, 'd>(initiator: &'a Node<'b, 'c, 'd>, receiver: &'a Node<'b, 'c, 'd>, initiator_config: Option<UserConfig>) -> (bitcoin::Transaction, ChannelId) {
1126         let initiator_channels = initiator.node.list_usable_channels().len();
1127         let receiver_channels = receiver.node.list_usable_channels().len();
1128
1129         initiator.node.create_channel(receiver.node.get_our_node_id(), 100_000, 10_001, 42, initiator_config).unwrap();
1130         let open_channel = get_event_msg!(initiator, MessageSendEvent::SendOpenChannel, receiver.node.get_our_node_id());
1131
1132         receiver.node.handle_open_channel(&initiator.node.get_our_node_id(), &open_channel);
1133         let events = receiver.node.get_and_clear_pending_events();
1134         assert_eq!(events.len(), 1);
1135         match events[0] {
1136                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
1137                         receiver.node.accept_inbound_channel_from_trusted_peer_0conf(&temporary_channel_id, &initiator.node.get_our_node_id(), 0).unwrap();
1138                 },
1139                 _ => panic!("Unexpected event"),
1140         };
1141
1142         let accept_channel = get_event_msg!(receiver, MessageSendEvent::SendAcceptChannel, initiator.node.get_our_node_id());
1143         assert_eq!(accept_channel.minimum_depth, 0);
1144         initiator.node.handle_accept_channel(&receiver.node.get_our_node_id(), &accept_channel);
1145
1146         let (temporary_channel_id, tx, _) = create_funding_transaction(&initiator, &receiver.node.get_our_node_id(), 100_000, 42);
1147         initiator.node.funding_transaction_generated(&temporary_channel_id, &receiver.node.get_our_node_id(), tx.clone()).unwrap();
1148         let funding_created = get_event_msg!(initiator, MessageSendEvent::SendFundingCreated, receiver.node.get_our_node_id());
1149
1150         receiver.node.handle_funding_created(&initiator.node.get_our_node_id(), &funding_created);
1151         check_added_monitors!(receiver, 1);
1152         let bs_signed_locked = receiver.node.get_and_clear_pending_msg_events();
1153         assert_eq!(bs_signed_locked.len(), 2);
1154         let as_channel_ready;
1155         match &bs_signed_locked[0] {
1156                 MessageSendEvent::SendFundingSigned { node_id, msg } => {
1157                         assert_eq!(*node_id, initiator.node.get_our_node_id());
1158                         initiator.node.handle_funding_signed(&receiver.node.get_our_node_id(), &msg);
1159                         expect_channel_pending_event(&initiator, &receiver.node.get_our_node_id());
1160                         expect_channel_pending_event(&receiver, &initiator.node.get_our_node_id());
1161                         check_added_monitors!(initiator, 1);
1162
1163                         assert_eq!(initiator.tx_broadcaster.txn_broadcasted.lock().unwrap().len(), 1);
1164                         assert_eq!(initiator.tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0)[0], tx);
1165
1166                         as_channel_ready = get_event_msg!(initiator, MessageSendEvent::SendChannelReady, receiver.node.get_our_node_id());
1167                 }
1168                 _ => panic!("Unexpected event"),
1169         }
1170         match &bs_signed_locked[1] {
1171                 MessageSendEvent::SendChannelReady { node_id, msg } => {
1172                         assert_eq!(*node_id, initiator.node.get_our_node_id());
1173                         initiator.node.handle_channel_ready(&receiver.node.get_our_node_id(), &msg);
1174                         expect_channel_ready_event(&initiator, &receiver.node.get_our_node_id());
1175                 }
1176                 _ => panic!("Unexpected event"),
1177         }
1178
1179         receiver.node.handle_channel_ready(&initiator.node.get_our_node_id(), &as_channel_ready);
1180         expect_channel_ready_event(&receiver, &initiator.node.get_our_node_id());
1181
1182         let as_channel_update = get_event_msg!(initiator, MessageSendEvent::SendChannelUpdate, receiver.node.get_our_node_id());
1183         let bs_channel_update = get_event_msg!(receiver, MessageSendEvent::SendChannelUpdate, initiator.node.get_our_node_id());
1184
1185         initiator.node.handle_channel_update(&receiver.node.get_our_node_id(), &bs_channel_update);
1186         receiver.node.handle_channel_update(&initiator.node.get_our_node_id(), &as_channel_update);
1187
1188         assert_eq!(initiator.node.list_usable_channels().len(), initiator_channels + 1);
1189         assert_eq!(receiver.node.list_usable_channels().len(), receiver_channels + 1);
1190
1191         (tx, as_channel_ready.channel_id)
1192 }
1193
1194 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) -> Transaction {
1195         let create_chan_id = node_a.node.create_channel(node_b.node.get_our_node_id(), channel_value, push_msat, 42, None).unwrap();
1196         let open_channel_msg = get_event_msg!(node_a, MessageSendEvent::SendOpenChannel, node_b.node.get_our_node_id());
1197         assert_eq!(open_channel_msg.temporary_channel_id, create_chan_id);
1198         assert_eq!(node_a.node.list_channels().iter().find(|channel| channel.channel_id == create_chan_id).unwrap().user_channel_id, 42);
1199         node_b.node.handle_open_channel(&node_a.node.get_our_node_id(), &open_channel_msg);
1200         if node_b.node.get_current_default_configuration().manually_accept_inbound_channels {
1201                 let events = node_b.node.get_and_clear_pending_events();
1202                 assert_eq!(events.len(), 1);
1203                 match &events[0] {
1204                         Event::OpenChannelRequest { temporary_channel_id, counterparty_node_id, .. } =>
1205                                 node_b.node.accept_inbound_channel(temporary_channel_id, counterparty_node_id, 42).unwrap(),
1206                         _ => panic!("Unexpected event"),
1207                 };
1208         }
1209         let accept_channel_msg = get_event_msg!(node_b, MessageSendEvent::SendAcceptChannel, node_a.node.get_our_node_id());
1210         assert_eq!(accept_channel_msg.temporary_channel_id, create_chan_id);
1211         node_a.node.handle_accept_channel(&node_b.node.get_our_node_id(), &accept_channel_msg);
1212         assert_ne!(node_b.node.list_channels().iter().find(|channel| channel.channel_id == create_chan_id).unwrap().user_channel_id, 0);
1213
1214         sign_funding_transaction(node_a, node_b, channel_value, create_chan_id)
1215 }
1216
1217 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) {
1218         confirm_transaction_at(node_conf, tx, conf_height);
1219         connect_blocks(node_conf, CHAN_CONFIRM_DEPTH - 1);
1220         node_recv.node.handle_channel_ready(&node_conf.node.get_our_node_id(), &get_event_msg!(node_conf, MessageSendEvent::SendChannelReady, node_recv.node.get_our_node_id()));
1221 }
1222
1223 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::ChannelReady, msgs::AnnouncementSignatures), ChannelId) {
1224         let channel_id;
1225         let events_6 = node_conf.node.get_and_clear_pending_msg_events();
1226         assert_eq!(events_6.len(), 3);
1227         let announcement_sigs_idx = if let MessageSendEvent::SendChannelUpdate { ref node_id, msg: _ } = events_6[1] {
1228                 assert_eq!(*node_id, node_recv.node.get_our_node_id());
1229                 2
1230         } else if let MessageSendEvent::SendChannelUpdate { ref node_id, msg: _ } = events_6[2] {
1231                 assert_eq!(*node_id, node_recv.node.get_our_node_id());
1232                 1
1233         } else { panic!("Unexpected event: {:?}", events_6[1]); };
1234         ((match events_6[0] {
1235                 MessageSendEvent::SendChannelReady { ref node_id, ref msg } => {
1236                         channel_id = msg.channel_id.clone();
1237                         assert_eq!(*node_id, node_recv.node.get_our_node_id());
1238                         msg.clone()
1239                 },
1240                 _ => panic!("Unexpected event"),
1241         }, match events_6[announcement_sigs_idx] {
1242                 MessageSendEvent::SendAnnouncementSignatures { ref node_id, ref msg } => {
1243                         assert_eq!(*node_id, node_recv.node.get_our_node_id());
1244                         msg.clone()
1245                 },
1246                 _ => panic!("Unexpected event"),
1247         }), channel_id)
1248 }
1249
1250 pub fn create_chan_between_nodes_with_value_confirm<'a, 'b, 'c: 'd, 'd>(node_a: &'a Node<'b, 'c, 'd>, node_b: &'a Node<'b, 'c, 'd>, tx: &Transaction) -> ((msgs::ChannelReady, msgs::AnnouncementSignatures), ChannelId) {
1251         let conf_height = core::cmp::max(node_a.best_block_info().1 + 1, node_b.best_block_info().1 + 1);
1252         create_chan_between_nodes_with_value_confirm_first(node_a, node_b, tx, conf_height);
1253         confirm_transaction_at(node_a, tx, conf_height);
1254         connect_blocks(node_a, CHAN_CONFIRM_DEPTH - 1);
1255         expect_channel_ready_event(&node_a, &node_b.node.get_our_node_id());
1256         create_chan_between_nodes_with_value_confirm_second(node_b, node_a)
1257 }
1258
1259 pub fn create_chan_between_nodes_with_value_a<'a, 'b, 'c: 'd, 'd>(node_a: &'a Node<'b, 'c, 'd>, node_b: &'a Node<'b, 'c, 'd>, channel_value: u64, push_msat: u64) -> ((msgs::ChannelReady, msgs::AnnouncementSignatures), ChannelId, Transaction) {
1260         let tx = create_chan_between_nodes_with_value_init(node_a, node_b, channel_value, push_msat);
1261         let (msgs, chan_id) = create_chan_between_nodes_with_value_confirm(node_a, node_b, &tx);
1262         (msgs, chan_id, tx)
1263 }
1264
1265 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::ChannelReady, msgs::AnnouncementSignatures)) -> (msgs::ChannelAnnouncement, msgs::ChannelUpdate, msgs::ChannelUpdate) {
1266         node_b.node.handle_channel_ready(&node_a.node.get_our_node_id(), &as_funding_msgs.0);
1267         let bs_announcement_sigs = get_event_msg!(node_b, MessageSendEvent::SendAnnouncementSignatures, node_a.node.get_our_node_id());
1268         node_b.node.handle_announcement_signatures(&node_a.node.get_our_node_id(), &as_funding_msgs.1);
1269
1270         let events_7 = node_b.node.get_and_clear_pending_msg_events();
1271         assert_eq!(events_7.len(), 1);
1272         let (announcement, bs_update) = match events_7[0] {
1273                 MessageSendEvent::BroadcastChannelAnnouncement { ref msg, ref update_msg } => {
1274                         (msg, update_msg.clone().unwrap())
1275                 },
1276                 _ => panic!("Unexpected event"),
1277         };
1278
1279         node_a.node.handle_announcement_signatures(&node_b.node.get_our_node_id(), &bs_announcement_sigs);
1280         let events_8 = node_a.node.get_and_clear_pending_msg_events();
1281         assert_eq!(events_8.len(), 1);
1282         let as_update = match events_8[0] {
1283                 MessageSendEvent::BroadcastChannelAnnouncement { ref msg, ref update_msg } => {
1284                         assert!(*announcement == *msg);
1285                         let update_msg = update_msg.clone().unwrap();
1286                         assert_eq!(update_msg.contents.short_channel_id, announcement.contents.short_channel_id);
1287                         assert_eq!(update_msg.contents.short_channel_id, bs_update.contents.short_channel_id);
1288                         update_msg
1289                 },
1290                 _ => panic!("Unexpected event"),
1291         };
1292
1293         *node_a.network_chan_count.borrow_mut() += 1;
1294
1295         expect_channel_ready_event(&node_b, &node_a.node.get_our_node_id());
1296         ((*announcement).clone(), as_update, bs_update)
1297 }
1298
1299 pub fn create_announced_chan_between_nodes<'a, 'b, 'c: 'd, 'd>(nodes: &'a Vec<Node<'b, 'c, 'd>>, a: usize, b: usize) -> (msgs::ChannelUpdate, msgs::ChannelUpdate, ChannelId, Transaction) {
1300         create_announced_chan_between_nodes_with_value(nodes, a, b, 100000, 10001)
1301 }
1302
1303 pub fn create_announced_chan_between_nodes_with_value<'a, 'b, 'c: 'd, 'd>(nodes: &'a Vec<Node<'b, 'c, 'd>>, a: usize, b: usize, channel_value: u64, push_msat: u64) -> (msgs::ChannelUpdate, msgs::ChannelUpdate, ChannelId, Transaction) {
1304         let chan_announcement = create_chan_between_nodes_with_value(&nodes[a], &nodes[b], channel_value, push_msat);
1305         update_nodes_with_chan_announce(nodes, a, b, &chan_announcement.0, &chan_announcement.1, &chan_announcement.2);
1306         (chan_announcement.1, chan_announcement.2, chan_announcement.3, chan_announcement.4)
1307 }
1308
1309 pub fn create_unannounced_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) -> (msgs::ChannelReady, Transaction) {
1310         let mut no_announce_cfg = test_default_channel_config();
1311         no_announce_cfg.channel_handshake_config.announced_channel = false;
1312         nodes[a].node.create_channel(nodes[b].node.get_our_node_id(), channel_value, push_msat, 42, Some(no_announce_cfg)).unwrap();
1313         let open_channel = get_event_msg!(nodes[a], MessageSendEvent::SendOpenChannel, nodes[b].node.get_our_node_id());
1314         nodes[b].node.handle_open_channel(&nodes[a].node.get_our_node_id(), &open_channel);
1315         let accept_channel = get_event_msg!(nodes[b], MessageSendEvent::SendAcceptChannel, nodes[a].node.get_our_node_id());
1316         nodes[a].node.handle_accept_channel(&nodes[b].node.get_our_node_id(), &accept_channel);
1317
1318         let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[a], &nodes[b].node.get_our_node_id(), channel_value, 42);
1319         nodes[a].node.funding_transaction_generated(&temporary_channel_id, &nodes[b].node.get_our_node_id(), tx.clone()).unwrap();
1320         nodes[b].node.handle_funding_created(&nodes[a].node.get_our_node_id(), &get_event_msg!(nodes[a], MessageSendEvent::SendFundingCreated, nodes[b].node.get_our_node_id()));
1321         check_added_monitors!(nodes[b], 1);
1322
1323         let cs_funding_signed = get_event_msg!(nodes[b], MessageSendEvent::SendFundingSigned, nodes[a].node.get_our_node_id());
1324         expect_channel_pending_event(&nodes[b], &nodes[a].node.get_our_node_id());
1325
1326         nodes[a].node.handle_funding_signed(&nodes[b].node.get_our_node_id(), &cs_funding_signed);
1327         expect_channel_pending_event(&nodes[a], &nodes[b].node.get_our_node_id());
1328         check_added_monitors!(nodes[a], 1);
1329
1330         assert_eq!(nodes[a].tx_broadcaster.txn_broadcasted.lock().unwrap().len(), 1);
1331         assert_eq!(nodes[a].tx_broadcaster.txn_broadcasted.lock().unwrap()[0], tx);
1332         nodes[a].tx_broadcaster.txn_broadcasted.lock().unwrap().clear();
1333
1334         let conf_height = core::cmp::max(nodes[a].best_block_info().1 + 1, nodes[b].best_block_info().1 + 1);
1335         confirm_transaction_at(&nodes[a], &tx, conf_height);
1336         connect_blocks(&nodes[a], CHAN_CONFIRM_DEPTH - 1);
1337         confirm_transaction_at(&nodes[b], &tx, conf_height);
1338         connect_blocks(&nodes[b], CHAN_CONFIRM_DEPTH - 1);
1339         let as_channel_ready = get_event_msg!(nodes[a], MessageSendEvent::SendChannelReady, nodes[b].node.get_our_node_id());
1340         nodes[a].node.handle_channel_ready(&nodes[b].node.get_our_node_id(), &get_event_msg!(nodes[b], MessageSendEvent::SendChannelReady, nodes[a].node.get_our_node_id()));
1341         expect_channel_ready_event(&nodes[a], &nodes[b].node.get_our_node_id());
1342         let as_update = get_event_msg!(nodes[a], MessageSendEvent::SendChannelUpdate, nodes[b].node.get_our_node_id());
1343         nodes[b].node.handle_channel_ready(&nodes[a].node.get_our_node_id(), &as_channel_ready);
1344         expect_channel_ready_event(&nodes[b], &nodes[a].node.get_our_node_id());
1345         let bs_update = get_event_msg!(nodes[b], MessageSendEvent::SendChannelUpdate, nodes[a].node.get_our_node_id());
1346
1347         nodes[a].node.handle_channel_update(&nodes[b].node.get_our_node_id(), &bs_update);
1348         nodes[b].node.handle_channel_update(&nodes[a].node.get_our_node_id(), &as_update);
1349
1350         let mut found_a = false;
1351         for chan in nodes[a].node.list_usable_channels() {
1352                 if chan.channel_id == as_channel_ready.channel_id {
1353                         assert!(!found_a);
1354                         found_a = true;
1355                         assert!(!chan.is_public);
1356                 }
1357         }
1358         assert!(found_a);
1359
1360         let mut found_b = false;
1361         for chan in nodes[b].node.list_usable_channels() {
1362                 if chan.channel_id == as_channel_ready.channel_id {
1363                         assert!(!found_b);
1364                         found_b = true;
1365                         assert!(!chan.is_public);
1366                 }
1367         }
1368         assert!(found_b);
1369
1370         (as_channel_ready, tx)
1371 }
1372
1373 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) {
1374         for node in nodes {
1375                 assert!(node.gossip_sync.handle_channel_announcement(ann).unwrap());
1376                 node.gossip_sync.handle_channel_update(upd_1).unwrap();
1377                 node.gossip_sync.handle_channel_update(upd_2).unwrap();
1378
1379                 // Note that channel_updates are also delivered to ChannelManagers to ensure we have
1380                 // forwarding info for local channels even if its not accepted in the network graph.
1381                 node.node.handle_channel_update(&nodes[a].node.get_our_node_id(), &upd_1);
1382                 node.node.handle_channel_update(&nodes[b].node.get_our_node_id(), &upd_2);
1383         }
1384 }
1385
1386 pub fn do_check_spends<F: Fn(&bitcoin::blockdata::transaction::OutPoint) -> Option<TxOut>>(tx: &Transaction, get_output: F) {
1387         for outp in tx.output.iter() {
1388                 assert!(outp.value >= outp.script_pubkey.dust_value().to_sat(), "Spending tx output didn't meet dust limit");
1389         }
1390         let mut total_value_in = 0;
1391         for input in tx.input.iter() {
1392                 total_value_in += get_output(&input.previous_output).unwrap().value;
1393         }
1394         let mut total_value_out = 0;
1395         for output in tx.output.iter() {
1396                 total_value_out += output.value;
1397         }
1398         let min_fee = (tx.weight() as u64 + 3) / 4; // One sat per vbyte (ie per weight/4, rounded up)
1399         // Input amount - output amount = fee, so check that out + min_fee is smaller than input
1400         assert!(total_value_out + min_fee <= total_value_in);
1401         tx.verify(get_output).unwrap();
1402 }
1403
1404 #[macro_export]
1405 macro_rules! check_spends {
1406         ($tx: expr, $($spends_txn: expr),*) => {
1407                 {
1408                         $(
1409                         for outp in $spends_txn.output.iter() {
1410                                 assert!(outp.value >= outp.script_pubkey.dust_value().to_sat(), "Input tx output didn't meet dust limit");
1411                         }
1412                         )*
1413                         let get_output = |out_point: &bitcoin::blockdata::transaction::OutPoint| {
1414                                 $(
1415                                         if out_point.txid == $spends_txn.txid() {
1416                                                 return $spends_txn.output.get(out_point.vout as usize).cloned()
1417                                         }
1418                                 )*
1419                                 None
1420                         };
1421                         $crate::ln::functional_test_utils::do_check_spends(&$tx, get_output);
1422                 }
1423         }
1424 }
1425
1426 macro_rules! get_closing_signed_broadcast {
1427         ($node: expr, $dest_pubkey: expr) => {
1428                 {
1429                         let events = $node.get_and_clear_pending_msg_events();
1430                         assert!(events.len() == 1 || events.len() == 2);
1431                         (match events[events.len() - 1] {
1432                                 MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
1433                                         assert_eq!(msg.contents.flags & 2, 2);
1434                                         msg.clone()
1435                                 },
1436                                 _ => panic!("Unexpected event"),
1437                         }, if events.len() == 2 {
1438                                 match events[0] {
1439                                         MessageSendEvent::SendClosingSigned { ref node_id, ref msg } => {
1440                                                 assert_eq!(*node_id, $dest_pubkey);
1441                                                 Some(msg.clone())
1442                                         },
1443                                         _ => panic!("Unexpected event"),
1444                                 }
1445                         } else { None })
1446                 }
1447         }
1448 }
1449
1450 #[cfg(test)]
1451 macro_rules! check_warn_msg {
1452         ($node: expr, $recipient_node_id: expr, $chan_id: expr) => {{
1453                 let msg_events = $node.node.get_and_clear_pending_msg_events();
1454                 assert_eq!(msg_events.len(), 1);
1455                 match msg_events[0] {
1456                         MessageSendEvent::HandleError { action: ErrorAction::SendWarningMessage { ref msg, log_level: _ }, node_id } => {
1457                                 assert_eq!(node_id, $recipient_node_id);
1458                                 assert_eq!(msg.channel_id, $chan_id);
1459                                 msg.data.clone()
1460                         },
1461                         _ => panic!("Unexpected event"),
1462                 }
1463         }}
1464 }
1465
1466 /// Check that a channel's closing channel update has been broadcasted, and optionally
1467 /// check whether an error message event has occurred.
1468 pub fn check_closed_broadcast(node: &Node, num_channels: usize, with_error_msg: bool) -> Vec<msgs::ErrorMessage> {
1469         let msg_events = node.node.get_and_clear_pending_msg_events();
1470         assert_eq!(msg_events.len(), if with_error_msg { num_channels * 2 } else { num_channels });
1471         msg_events.into_iter().filter_map(|msg_event| {
1472                 match msg_event {
1473                         MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
1474                                 assert_eq!(msg.contents.flags & 2, 2);
1475                                 None
1476                         },
1477                         MessageSendEvent::HandleError { action: msgs::ErrorAction::SendErrorMessage { msg }, node_id: _ } => {
1478                                 assert!(with_error_msg);
1479                                 // TODO: Check node_id
1480                                 Some(msg)
1481                         },
1482                         MessageSendEvent::HandleError { action: msgs::ErrorAction::DisconnectPeer { msg }, node_id: _ } => {
1483                                 assert!(with_error_msg);
1484                                 // TODO: Check node_id
1485                                 Some(msg.unwrap())
1486                         },
1487                         _ => panic!("Unexpected event"),
1488                 }
1489         }).collect()
1490 }
1491
1492 /// Check that a channel's closing channel update has been broadcasted, and optionally
1493 /// check whether an error message event has occurred.
1494 ///
1495 /// Don't use this, use the identically-named function instead.
1496 #[macro_export]
1497 macro_rules! check_closed_broadcast {
1498         ($node: expr, $with_error_msg: expr) => {
1499                 $crate::ln::functional_test_utils::check_closed_broadcast(&$node, 1, $with_error_msg).pop()
1500         }
1501 }
1502
1503 #[derive(Default)]
1504 pub struct ExpectedCloseEvent {
1505         pub channel_capacity_sats: Option<u64>,
1506         pub channel_id: Option<ChannelId>,
1507         pub counterparty_node_id: Option<PublicKey>,
1508         pub discard_funding: bool,
1509         pub reason: Option<ClosureReason>,
1510 }
1511
1512 /// Check that multiple channel closing events have been issued.
1513 pub fn check_closed_events(node: &Node, expected_close_events: &[ExpectedCloseEvent]) {
1514         let closed_events_count = expected_close_events.len();
1515         let discard_events_count = expected_close_events.iter().filter(|e| e.discard_funding).count();
1516         let events = node.node.get_and_clear_pending_events();
1517         assert_eq!(events.len(), closed_events_count + discard_events_count, "{:?}", events);
1518         for expected_event in expected_close_events {
1519                 assert!(events.iter().any(|e| matches!(
1520                         e,
1521                         Event::ChannelClosed {
1522                                 channel_id,
1523                                 reason,
1524                                 counterparty_node_id,
1525                                 channel_capacity_sats,
1526                                 ..
1527                         } if (
1528                                 expected_event.channel_id.map(|expected| *channel_id == expected).unwrap_or(true) &&
1529                                 expected_event.reason.as_ref().map(|expected| reason == expected).unwrap_or(true) &&
1530                                 expected_event.counterparty_node_id.map(|expected| *counterparty_node_id == Some(expected)).unwrap_or(true) &&
1531                                 expected_event.channel_capacity_sats.map(|expected| *channel_capacity_sats == Some(expected)).unwrap_or(true)
1532                         )
1533                 )));
1534         }
1535         assert_eq!(events.iter().filter(|e| matches!(
1536                 e,
1537                 Event::DiscardFunding { .. },
1538         )).count(), discard_events_count);
1539 }
1540
1541 /// Check that a channel's closing channel events has been issued
1542 pub fn check_closed_event(node: &Node, events_count: usize, expected_reason: ClosureReason, is_check_discard_funding: bool,
1543         expected_counterparty_node_ids: &[PublicKey], expected_channel_capacity: u64) {
1544         let expected_events_count = if is_check_discard_funding {
1545                 2 * expected_counterparty_node_ids.len()
1546         } else {
1547                 expected_counterparty_node_ids.len()
1548         };
1549         assert_eq!(events_count, expected_events_count);
1550         let expected_close_events = expected_counterparty_node_ids.iter().map(|node_id| ExpectedCloseEvent {
1551                 channel_capacity_sats: Some(expected_channel_capacity),
1552                 channel_id: None,
1553                 counterparty_node_id: Some(*node_id),
1554                 discard_funding: is_check_discard_funding,
1555                 reason: Some(expected_reason.clone()),
1556         }).collect::<Vec<_>>();
1557         check_closed_events(node, expected_close_events.as_slice());
1558 }
1559
1560 /// Check that a channel's closing channel events has been issued
1561 ///
1562 /// Don't use this, use the identically-named function instead.
1563 #[macro_export]
1564 macro_rules! check_closed_event {
1565         ($node: expr, $events: expr, $reason: expr, $counterparty_node_ids: expr, $channel_capacity: expr) => {
1566                 check_closed_event!($node, $events, $reason, false, $counterparty_node_ids, $channel_capacity);
1567         };
1568         ($node: expr, $events: expr, $reason: expr, $is_check_discard_funding: expr, $counterparty_node_ids: expr, $channel_capacity: expr) => {
1569                 $crate::ln::functional_test_utils::check_closed_event(&$node, $events, $reason,
1570                         $is_check_discard_funding, &$counterparty_node_ids, $channel_capacity);
1571         }
1572 }
1573
1574 pub fn handle_bump_htlc_event(node: &Node, count: usize) {
1575         let events = node.chain_monitor.chain_monitor.get_and_clear_pending_events();
1576         assert_eq!(events.len(), count);
1577         for event in events {
1578                 match event {
1579                         Event::BumpTransaction(bump_event) => {
1580                                 if let BumpTransactionEvent::HTLCResolution { .. } = &bump_event {}
1581                                 else { panic!(); }
1582                                 node.bump_tx_handler.handle_event(&bump_event);
1583                         },
1584                         _ => panic!(),
1585                 }
1586         }
1587 }
1588
1589 pub fn close_channel<'a, 'b, 'c>(outbound_node: &Node<'a, 'b, 'c>, inbound_node: &Node<'a, 'b, 'c>, channel_id: &ChannelId, funding_tx: Transaction, close_inbound_first: bool) -> (msgs::ChannelUpdate, msgs::ChannelUpdate, Transaction) {
1590         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) };
1591         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) };
1592         let (tx_a, tx_b);
1593
1594         node_a.close_channel(channel_id, &node_b.get_our_node_id()).unwrap();
1595         node_b.handle_shutdown(&node_a.get_our_node_id(), &get_event_msg!(struct_a, MessageSendEvent::SendShutdown, node_b.get_our_node_id()));
1596
1597         let events_1 = node_b.get_and_clear_pending_msg_events();
1598         assert!(events_1.len() >= 1);
1599         let shutdown_b = match events_1[0] {
1600                 MessageSendEvent::SendShutdown { ref node_id, ref msg } => {
1601                         assert_eq!(node_id, &node_a.get_our_node_id());
1602                         msg.clone()
1603                 },
1604                 _ => panic!("Unexpected event"),
1605         };
1606
1607         let closing_signed_b = if !close_inbound_first {
1608                 assert_eq!(events_1.len(), 1);
1609                 None
1610         } else {
1611                 Some(match events_1[1] {
1612                         MessageSendEvent::SendClosingSigned { ref node_id, ref msg } => {
1613                                 assert_eq!(node_id, &node_a.get_our_node_id());
1614                                 msg.clone()
1615                         },
1616                         _ => panic!("Unexpected event"),
1617                 })
1618         };
1619
1620         node_a.handle_shutdown(&node_b.get_our_node_id(), &shutdown_b);
1621         let (as_update, bs_update) = if close_inbound_first {
1622                 assert!(node_a.get_and_clear_pending_msg_events().is_empty());
1623                 node_a.handle_closing_signed(&node_b.get_our_node_id(), &closing_signed_b.unwrap());
1624
1625                 node_b.handle_closing_signed(&node_a.get_our_node_id(), &get_event_msg!(struct_a, MessageSendEvent::SendClosingSigned, node_b.get_our_node_id()));
1626                 assert_eq!(broadcaster_b.txn_broadcasted.lock().unwrap().len(), 1);
1627                 tx_b = broadcaster_b.txn_broadcasted.lock().unwrap().remove(0);
1628                 let (bs_update, closing_signed_b) = get_closing_signed_broadcast!(node_b, node_a.get_our_node_id());
1629
1630                 node_a.handle_closing_signed(&node_b.get_our_node_id(), &closing_signed_b.unwrap());
1631                 let (as_update, none_a) = get_closing_signed_broadcast!(node_a, node_b.get_our_node_id());
1632                 assert!(none_a.is_none());
1633                 assert_eq!(broadcaster_a.txn_broadcasted.lock().unwrap().len(), 1);
1634                 tx_a = broadcaster_a.txn_broadcasted.lock().unwrap().remove(0);
1635                 (as_update, bs_update)
1636         } else {
1637                 let closing_signed_a = get_event_msg!(struct_a, MessageSendEvent::SendClosingSigned, node_b.get_our_node_id());
1638
1639                 node_b.handle_closing_signed(&node_a.get_our_node_id(), &closing_signed_a);
1640                 node_a.handle_closing_signed(&node_b.get_our_node_id(), &get_event_msg!(struct_b, MessageSendEvent::SendClosingSigned, node_a.get_our_node_id()));
1641
1642                 assert_eq!(broadcaster_a.txn_broadcasted.lock().unwrap().len(), 1);
1643                 tx_a = broadcaster_a.txn_broadcasted.lock().unwrap().remove(0);
1644                 let (as_update, closing_signed_a) = get_closing_signed_broadcast!(node_a, node_b.get_our_node_id());
1645
1646                 node_b.handle_closing_signed(&node_a.get_our_node_id(), &closing_signed_a.unwrap());
1647                 let (bs_update, none_b) = get_closing_signed_broadcast!(node_b, node_a.get_our_node_id());
1648                 assert!(none_b.is_none());
1649                 assert_eq!(broadcaster_b.txn_broadcasted.lock().unwrap().len(), 1);
1650                 tx_b = broadcaster_b.txn_broadcasted.lock().unwrap().remove(0);
1651                 (as_update, bs_update)
1652         };
1653         assert_eq!(tx_a, tx_b);
1654         check_spends!(tx_a, funding_tx);
1655
1656         (as_update, bs_update, tx_a)
1657 }
1658
1659 pub struct SendEvent {
1660         pub node_id: PublicKey,
1661         pub msgs: Vec<msgs::UpdateAddHTLC>,
1662         pub commitment_msg: msgs::CommitmentSigned,
1663 }
1664 impl SendEvent {
1665         pub fn from_commitment_update(node_id: PublicKey, updates: msgs::CommitmentUpdate) -> SendEvent {
1666                 assert!(updates.update_fulfill_htlcs.is_empty());
1667                 assert!(updates.update_fail_htlcs.is_empty());
1668                 assert!(updates.update_fail_malformed_htlcs.is_empty());
1669                 assert!(updates.update_fee.is_none());
1670                 SendEvent { node_id, msgs: updates.update_add_htlcs, commitment_msg: updates.commitment_signed }
1671         }
1672
1673         pub fn from_event(event: MessageSendEvent) -> SendEvent {
1674                 match event {
1675                         MessageSendEvent::UpdateHTLCs { node_id, updates } => SendEvent::from_commitment_update(node_id, updates),
1676                         _ => panic!("Unexpected event type!"),
1677                 }
1678         }
1679
1680         pub fn from_node<'a, 'b, 'c>(node: &Node<'a, 'b, 'c>) -> SendEvent {
1681                 let mut events = node.node.get_and_clear_pending_msg_events();
1682                 assert_eq!(events.len(), 1);
1683                 SendEvent::from_event(events.pop().unwrap())
1684         }
1685 }
1686
1687 #[macro_export]
1688 /// Don't use this, use the identically-named function instead.
1689 macro_rules! expect_pending_htlcs_forwardable_conditions {
1690         ($node: expr, $expected_failures: expr) => {
1691                 $crate::ln::functional_test_utils::expect_pending_htlcs_forwardable_conditions($node.node.get_and_clear_pending_events(), &$expected_failures);
1692         }
1693 }
1694
1695 #[macro_export]
1696 macro_rules! expect_htlc_handling_failed_destinations {
1697         ($events: expr, $expected_failures: expr) => {{
1698                 for event in $events {
1699                         match event {
1700                                 $crate::events::Event::PendingHTLCsForwardable { .. } => { },
1701                                 $crate::events::Event::HTLCHandlingFailed { ref failed_next_destination, .. } => {
1702                                         assert!($expected_failures.contains(&failed_next_destination))
1703                                 },
1704                                 _ => panic!("Unexpected destination"),
1705                         }
1706                 }
1707         }}
1708 }
1709
1710 /// Checks that an [`Event::PendingHTLCsForwardable`] is available in the given events and, if
1711 /// there are any [`Event::HTLCHandlingFailed`] events their [`HTLCDestination`] is included in the
1712 /// `expected_failures` set.
1713 pub fn expect_pending_htlcs_forwardable_conditions(events: Vec<Event>, expected_failures: &[HTLCDestination]) {
1714         match events[0] {
1715                 Event::PendingHTLCsForwardable { .. } => { },
1716                 _ => panic!("Unexpected event {:?}", events),
1717         };
1718
1719         let count = expected_failures.len() + 1;
1720         assert_eq!(events.len(), count);
1721
1722         if expected_failures.len() > 0 {
1723                 expect_htlc_handling_failed_destinations!(events, expected_failures)
1724         }
1725 }
1726
1727 #[macro_export]
1728 /// Clears (and ignores) a PendingHTLCsForwardable event
1729 ///
1730 /// Don't use this, call [`expect_pending_htlcs_forwardable_conditions()`] with an empty failure
1731 /// set instead.
1732 macro_rules! expect_pending_htlcs_forwardable_ignore {
1733         ($node: expr) => {
1734                 $crate::ln::functional_test_utils::expect_pending_htlcs_forwardable_conditions($node.node.get_and_clear_pending_events(), &[]);
1735         }
1736 }
1737
1738 #[macro_export]
1739 /// Clears (and ignores) PendingHTLCsForwardable and HTLCHandlingFailed events
1740 ///
1741 /// Don't use this, call [`expect_pending_htlcs_forwardable_conditions()`] instead.
1742 macro_rules! expect_pending_htlcs_forwardable_and_htlc_handling_failed_ignore {
1743         ($node: expr, $expected_failures: expr) => {
1744                 $crate::ln::functional_test_utils::expect_pending_htlcs_forwardable_conditions($node.node.get_and_clear_pending_events(), &$expected_failures);
1745         }
1746 }
1747
1748 #[macro_export]
1749 /// Handles a PendingHTLCsForwardable event
1750 macro_rules! expect_pending_htlcs_forwardable {
1751         ($node: expr) => {{
1752                 $crate::ln::functional_test_utils::expect_pending_htlcs_forwardable_conditions($node.node.get_and_clear_pending_events(), &[]);
1753                 $node.node.process_pending_htlc_forwards();
1754
1755                 // Ensure process_pending_htlc_forwards is idempotent.
1756                 $node.node.process_pending_htlc_forwards();
1757         }};
1758 }
1759
1760 #[macro_export]
1761 /// Handles a PendingHTLCsForwardable and HTLCHandlingFailed event
1762 macro_rules! expect_pending_htlcs_forwardable_and_htlc_handling_failed {
1763         ($node: expr, $expected_failures: expr) => {{
1764                 $crate::ln::functional_test_utils::expect_pending_htlcs_forwardable_conditions($node.node.get_and_clear_pending_events(), &$expected_failures);
1765                 $node.node.process_pending_htlc_forwards();
1766
1767                 // Ensure process_pending_htlc_forwards is idempotent.
1768                 $node.node.process_pending_htlc_forwards();
1769         }}
1770 }
1771
1772 #[cfg(test)]
1773 macro_rules! expect_pending_htlcs_forwardable_from_events {
1774         ($node: expr, $events: expr, $ignore: expr) => {{
1775                 assert_eq!($events.len(), 1);
1776                 match $events[0] {
1777                         Event::PendingHTLCsForwardable { .. } => { },
1778                         _ => panic!("Unexpected event"),
1779                 };
1780                 if $ignore {
1781                         $node.node.process_pending_htlc_forwards();
1782
1783                         // Ensure process_pending_htlc_forwards is idempotent.
1784                         $node.node.process_pending_htlc_forwards();
1785                 }
1786         }}
1787 }
1788
1789 #[macro_export]
1790 /// Performs the "commitment signed dance" - the series of message exchanges which occur after a
1791 /// commitment update.
1792 macro_rules! commitment_signed_dance {
1793         ($node_a: expr, $node_b: expr, $commitment_signed: expr, $fail_backwards: expr, true /* skip last step */) => {
1794                 $crate::ln::functional_test_utils::do_commitment_signed_dance(&$node_a, &$node_b, &$commitment_signed, $fail_backwards, true);
1795         };
1796         ($node_a: expr, $node_b: expr, (), $fail_backwards: expr, true /* skip last step */, true /* return extra message */, true /* return last RAA */) => {
1797                 $crate::ln::functional_test_utils::do_main_commitment_signed_dance(&$node_a, &$node_b, $fail_backwards)
1798         };
1799         ($node_a: expr, $node_b: expr, $commitment_signed: expr, $fail_backwards: expr, true /* skip last step */, false /* return extra message */, true /* return last RAA */) => {
1800                 {
1801                         $crate::ln::functional_test_utils::check_added_monitors(&$node_a, 0);
1802                         assert!($node_a.node.get_and_clear_pending_msg_events().is_empty());
1803                         $node_a.node.handle_commitment_signed(&$node_b.node.get_our_node_id(), &$commitment_signed);
1804                         check_added_monitors(&$node_a, 1);
1805                         let (extra_msg_option, bs_revoke_and_ack) = $crate::ln::functional_test_utils::do_main_commitment_signed_dance(&$node_a, &$node_b, $fail_backwards);
1806                         assert!(extra_msg_option.is_none());
1807                         bs_revoke_and_ack
1808                 }
1809         };
1810         ($node_a: expr, $node_b: expr, (), $fail_backwards: expr, true /* skip last step */, false /* no extra message */, $incl_claim: expr) => {
1811                 assert!($crate::ln::functional_test_utils::commitment_signed_dance_through_cp_raa(&$node_a, &$node_b, $fail_backwards, $incl_claim).is_none());
1812         };
1813         ($node_a: expr, $node_b: expr, $commitment_signed: expr, $fail_backwards: expr) => {
1814                 $crate::ln::functional_test_utils::do_commitment_signed_dance(&$node_a, &$node_b, &$commitment_signed, $fail_backwards, false);
1815         }
1816 }
1817
1818 /// Runs the commitment_signed dance after the initial commitment_signed is delivered through to
1819 /// the initiator's `revoke_and_ack` response. i.e. [`do_main_commitment_signed_dance`] plus the
1820 /// `revoke_and_ack` response to it.
1821 ///
1822 /// An HTLC claim on one channel blocks the RAA channel monitor update for the outbound edge
1823 /// channel until the inbound edge channel preimage monitor update completes. Thus, when checking
1824 /// for channel monitor updates, we need to know if an `update_fulfill_htlc` was included in the
1825 /// the commitment we're exchanging. `includes_claim` provides that information.
1826 ///
1827 /// Returns any additional message `node_b` generated in addition to the `revoke_and_ack` response.
1828 pub fn commitment_signed_dance_through_cp_raa(node_a: &Node<'_, '_, '_>, node_b: &Node<'_, '_, '_>, fail_backwards: bool, includes_claim: bool) -> Option<MessageSendEvent> {
1829         let (extra_msg_option, bs_revoke_and_ack) = do_main_commitment_signed_dance(node_a, node_b, fail_backwards);
1830         node_a.node.handle_revoke_and_ack(&node_b.node.get_our_node_id(), &bs_revoke_and_ack);
1831         check_added_monitors(node_a, if includes_claim { 0 } else { 1 });
1832         extra_msg_option
1833 }
1834
1835 /// Does the main logic in the commitment_signed dance. After the first `commitment_signed` has
1836 /// been delivered, this method picks up and delivers the response `revoke_and_ack` and
1837 /// `commitment_signed`, returning the recipient's `revoke_and_ack` and any extra message it may
1838 /// have included.
1839 pub fn do_main_commitment_signed_dance(node_a: &Node<'_, '_, '_>, node_b: &Node<'_, '_, '_>, fail_backwards: bool) -> (Option<MessageSendEvent>, msgs::RevokeAndACK) {
1840         let (as_revoke_and_ack, as_commitment_signed) = get_revoke_commit_msgs!(node_a, node_b.node.get_our_node_id());
1841         check_added_monitors!(node_b, 0);
1842         assert!(node_b.node.get_and_clear_pending_msg_events().is_empty());
1843         node_b.node.handle_revoke_and_ack(&node_a.node.get_our_node_id(), &as_revoke_and_ack);
1844         assert!(node_b.node.get_and_clear_pending_msg_events().is_empty());
1845         check_added_monitors!(node_b, 1);
1846         node_b.node.handle_commitment_signed(&node_a.node.get_our_node_id(), &as_commitment_signed);
1847         let (bs_revoke_and_ack, extra_msg_option) = {
1848                 let mut events = node_b.node.get_and_clear_pending_msg_events();
1849                 assert!(events.len() <= 2);
1850                 let node_a_event = remove_first_msg_event_to_node(&node_a.node.get_our_node_id(), &mut events);
1851                 (match node_a_event {
1852                         MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
1853                                 assert_eq!(*node_id, node_a.node.get_our_node_id());
1854                                 (*msg).clone()
1855                         },
1856                         _ => panic!("Unexpected event"),
1857                 }, events.get(0).map(|e| e.clone()))
1858         };
1859         check_added_monitors!(node_b, 1);
1860         if fail_backwards {
1861                 assert!(node_a.node.get_and_clear_pending_events().is_empty());
1862                 assert!(node_a.node.get_and_clear_pending_msg_events().is_empty());
1863         }
1864         (extra_msg_option, bs_revoke_and_ack)
1865 }
1866
1867 /// Runs a full commitment_signed dance, delivering a commitment_signed, the responding
1868 /// `revoke_and_ack` and `commitment_signed`, and then the final `revoke_and_ack` response.
1869 ///
1870 /// If `skip_last_step` is unset, also checks for the payment failure update for the previous hop
1871 /// on failure or that no new messages are left over on success.
1872 pub fn do_commitment_signed_dance(node_a: &Node<'_, '_, '_>, node_b: &Node<'_, '_, '_>, commitment_signed: &msgs::CommitmentSigned, fail_backwards: bool, skip_last_step: bool) {
1873         check_added_monitors!(node_a, 0);
1874         assert!(node_a.node.get_and_clear_pending_msg_events().is_empty());
1875         node_a.node.handle_commitment_signed(&node_b.node.get_our_node_id(), commitment_signed);
1876         check_added_monitors!(node_a, 1);
1877
1878         // If this commitment signed dance was due to a claim, don't check for an RAA monitor update.
1879         let got_claim = node_a.node.test_raa_monitor_updates_held(node_b.node.get_our_node_id(), commitment_signed.channel_id);
1880         if fail_backwards { assert!(!got_claim); }
1881         commitment_signed_dance!(node_a, node_b, (), fail_backwards, true, false, got_claim);
1882
1883         if skip_last_step { return; }
1884
1885         if fail_backwards {
1886                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(node_a,
1887                         vec![crate::events::HTLCDestination::NextHopChannel{ node_id: Some(node_b.node.get_our_node_id()), channel_id: commitment_signed.channel_id }]);
1888                 check_added_monitors!(node_a, 1);
1889
1890                 let node_a_per_peer_state = node_a.node.per_peer_state.read().unwrap();
1891                 let mut number_of_msg_events = 0;
1892                 for (cp_id, peer_state_mutex) in node_a_per_peer_state.iter() {
1893                         let peer_state = peer_state_mutex.lock().unwrap();
1894                         let cp_pending_msg_events = &peer_state.pending_msg_events;
1895                         number_of_msg_events += cp_pending_msg_events.len();
1896                         if cp_pending_msg_events.len() == 1 {
1897                                 if let MessageSendEvent::UpdateHTLCs { .. } = cp_pending_msg_events[0] {
1898                                         assert_ne!(*cp_id, node_b.node.get_our_node_id());
1899                                 } else { panic!("Unexpected event"); }
1900                         }
1901                 }
1902                 // Expecting the failure backwards event to the previous hop (not `node_b`)
1903                 assert_eq!(number_of_msg_events, 1);
1904         } else {
1905                 assert!(node_a.node.get_and_clear_pending_msg_events().is_empty());
1906         }
1907 }
1908
1909 /// Get a payment preimage and hash.
1910 pub fn get_payment_preimage_hash(recipient: &Node, min_value_msat: Option<u64>, min_final_cltv_expiry_delta: Option<u16>) -> (PaymentPreimage, PaymentHash, PaymentSecret) {
1911         let mut payment_count = recipient.network_payment_count.borrow_mut();
1912         let payment_preimage = PaymentPreimage([*payment_count; 32]);
1913         *payment_count += 1;
1914         let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
1915         let payment_secret = recipient.node.create_inbound_payment_for_hash(payment_hash, min_value_msat, 7200, min_final_cltv_expiry_delta).unwrap();
1916         (payment_preimage, payment_hash, payment_secret)
1917 }
1918
1919 /// Get a payment preimage and hash.
1920 ///
1921 /// Don't use this, use the identically-named function instead.
1922 #[macro_export]
1923 macro_rules! get_payment_preimage_hash {
1924         ($dest_node: expr) => {
1925                 get_payment_preimage_hash!($dest_node, None)
1926         };
1927         ($dest_node: expr, $min_value_msat: expr) => {
1928                 crate::get_payment_preimage_hash!($dest_node, $min_value_msat, None)
1929         };
1930         ($dest_node: expr, $min_value_msat: expr, $min_final_cltv_expiry_delta: expr) => {
1931                 $crate::ln::functional_test_utils::get_payment_preimage_hash(&$dest_node, $min_value_msat, $min_final_cltv_expiry_delta)
1932         };
1933 }
1934
1935 /// Gets a route from the given sender to the node described in `payment_params`.
1936 pub fn get_route(send_node: &Node, route_params: &RouteParameters) -> Result<Route, msgs::LightningError> {
1937         let scorer = TestScorer::new();
1938         let keys_manager = TestKeysInterface::new(&[0u8; 32], bitcoin::network::constants::Network::Testnet);
1939         let random_seed_bytes = keys_manager.get_secure_random_bytes();
1940         router::get_route(
1941                 &send_node.node.get_our_node_id(), route_params, &send_node.network_graph.read_only(),
1942                 Some(&send_node.node.list_usable_channels().iter().collect::<Vec<_>>()),
1943                 send_node.logger, &scorer, &Default::default(), &random_seed_bytes
1944         )
1945 }
1946
1947 /// Gets a route from the given sender to the node described in `payment_params`.
1948 ///
1949 /// Don't use this, use the identically-named function instead.
1950 #[macro_export]
1951 macro_rules! get_route {
1952         ($send_node: expr, $payment_params: expr, $recv_value: expr) => {{
1953                 let route_params = $crate::routing::router::RouteParameters::from_payment_params_and_value($payment_params, $recv_value);
1954                 $crate::ln::functional_test_utils::get_route(&$send_node, &route_params)
1955         }}
1956 }
1957
1958 #[cfg(test)]
1959 #[macro_export]
1960 macro_rules! get_route_and_payment_hash {
1961         ($send_node: expr, $recv_node: expr, $recv_value: expr) => {{
1962                 let payment_params = $crate::routing::router::PaymentParameters::from_node_id($recv_node.node.get_our_node_id(), TEST_FINAL_CLTV)
1963                         .with_bolt11_features($recv_node.node.bolt11_invoice_features()).unwrap();
1964                 $crate::get_route_and_payment_hash!($send_node, $recv_node, payment_params, $recv_value)
1965         }};
1966         ($send_node: expr, $recv_node: expr, $payment_params: expr, $recv_value: expr) => {{
1967                 $crate::get_route_and_payment_hash!($send_node, $recv_node, $payment_params, $recv_value, None)
1968         }};
1969         ($send_node: expr, $recv_node: expr, $payment_params: expr, $recv_value: expr, $max_total_routing_fee_msat: expr) => {{
1970                 let mut route_params = $crate::routing::router::RouteParameters::from_payment_params_and_value($payment_params, $recv_value);
1971                 route_params.max_total_routing_fee_msat = $max_total_routing_fee_msat;
1972                 let (payment_preimage, payment_hash, payment_secret) =
1973                         $crate::ln::functional_test_utils::get_payment_preimage_hash(&$recv_node, Some($recv_value), None);
1974                 let route = $crate::ln::functional_test_utils::get_route(&$send_node, &route_params);
1975                 (route.unwrap(), payment_hash, payment_preimage, payment_secret)
1976         }}
1977 }
1978
1979 pub fn check_payment_claimable(
1980         event: &Event, expected_payment_hash: PaymentHash, expected_payment_secret: PaymentSecret,
1981         expected_recv_value: u64, expected_payment_preimage: Option<PaymentPreimage>,
1982         expected_receiver_node_id: PublicKey,
1983 ) {
1984         match event {
1985                 Event::PaymentClaimable { ref payment_hash, ref purpose, amount_msat, receiver_node_id, .. } => {
1986                         assert_eq!(expected_payment_hash, *payment_hash);
1987                         assert_eq!(expected_recv_value, *amount_msat);
1988                         assert_eq!(expected_receiver_node_id, receiver_node_id.unwrap());
1989                         match purpose {
1990                                 PaymentPurpose::InvoicePayment { payment_preimage, payment_secret, .. } => {
1991                                         assert_eq!(&expected_payment_preimage, payment_preimage);
1992                                         assert_eq!(expected_payment_secret, *payment_secret);
1993                                 },
1994                                 _ => {},
1995                         }
1996                 },
1997                 _ => panic!("Unexpected event"),
1998         }
1999 }
2000
2001 #[macro_export]
2002 #[cfg(any(test, ldk_bench, feature = "_test_utils"))]
2003 macro_rules! expect_payment_claimable {
2004         ($node: expr, $expected_payment_hash: expr, $expected_payment_secret: expr, $expected_recv_value: expr) => {
2005                 expect_payment_claimable!($node, $expected_payment_hash, $expected_payment_secret, $expected_recv_value, None, $node.node.get_our_node_id())
2006         };
2007         ($node: expr, $expected_payment_hash: expr, $expected_payment_secret: expr, $expected_recv_value: expr, $expected_payment_preimage: expr, $expected_receiver_node_id: expr) => {
2008                 let events = $node.node.get_and_clear_pending_events();
2009                 assert_eq!(events.len(), 1);
2010                 $crate::ln::functional_test_utils::check_payment_claimable(&events[0], $expected_payment_hash, $expected_payment_secret, $expected_recv_value, $expected_payment_preimage, $expected_receiver_node_id)
2011         };
2012 }
2013
2014 #[macro_export]
2015 #[cfg(any(test, ldk_bench, feature = "_test_utils"))]
2016 macro_rules! expect_payment_claimed {
2017         ($node: expr, $expected_payment_hash: expr, $expected_recv_value: expr) => {
2018                 let events = $node.node.get_and_clear_pending_events();
2019                 assert_eq!(events.len(), 1);
2020                 match events[0] {
2021                         $crate::events::Event::PaymentClaimed { ref payment_hash, amount_msat, .. } => {
2022                                 assert_eq!($expected_payment_hash, *payment_hash);
2023                                 assert_eq!($expected_recv_value, amount_msat);
2024                         },
2025                         _ => panic!("Unexpected event"),
2026                 }
2027         }
2028 }
2029
2030 pub fn expect_payment_sent<CM: AChannelManager, H: NodeHolder<CM=CM>>(node: &H,
2031         expected_payment_preimage: PaymentPreimage, expected_fee_msat_opt: Option<Option<u64>>,
2032         expect_per_path_claims: bool, expect_post_ev_mon_update: bool,
2033 ) {
2034         let events = node.node().get_and_clear_pending_events();
2035         let expected_payment_hash = PaymentHash(
2036                 bitcoin::hashes::sha256::Hash::hash(&expected_payment_preimage.0).into_inner());
2037         if expect_per_path_claims {
2038                 assert!(events.len() > 1);
2039         } else {
2040                 assert_eq!(events.len(), 1);
2041         }
2042         if expect_post_ev_mon_update {
2043                 check_added_monitors(node, 1);
2044         }
2045         let expected_payment_id = match events[0] {
2046                 Event::PaymentSent { ref payment_id, ref payment_preimage, ref payment_hash, ref fee_paid_msat } => {
2047                         assert_eq!(expected_payment_preimage, *payment_preimage);
2048                         assert_eq!(expected_payment_hash, *payment_hash);
2049                         if let Some(expected_fee_msat) = expected_fee_msat_opt {
2050                                 assert_eq!(*fee_paid_msat, expected_fee_msat);
2051                         } else {
2052                                 assert!(fee_paid_msat.is_some());
2053                         }
2054                         payment_id.unwrap()
2055                 },
2056                 _ => panic!("Unexpected event"),
2057         };
2058         if expect_per_path_claims {
2059                 for i in 1..events.len() {
2060                         match events[i] {
2061                                 Event::PaymentPathSuccessful { payment_id, payment_hash, .. } => {
2062                                         assert_eq!(payment_id, expected_payment_id);
2063                                         assert_eq!(payment_hash, Some(expected_payment_hash));
2064                                 },
2065                                 _ => panic!("Unexpected event"),
2066                         }
2067                 }
2068         }
2069 }
2070
2071 #[macro_export]
2072 macro_rules! expect_payment_sent {
2073         ($node: expr, $expected_payment_preimage: expr) => {
2074                 $crate::expect_payment_sent!($node, $expected_payment_preimage, None::<u64>, true);
2075         };
2076         ($node: expr, $expected_payment_preimage: expr, $expected_fee_msat_opt: expr) => {
2077                 $crate::expect_payment_sent!($node, $expected_payment_preimage, $expected_fee_msat_opt, true);
2078         };
2079         ($node: expr, $expected_payment_preimage: expr, $expected_fee_msat_opt: expr, $expect_paths: expr) => {
2080                 $crate::ln::functional_test_utils::expect_payment_sent(&$node, $expected_payment_preimage,
2081                         $expected_fee_msat_opt.map(|o| Some(o)), $expect_paths, true);
2082         }
2083 }
2084
2085 #[cfg(test)]
2086 #[macro_export]
2087 macro_rules! expect_payment_path_successful {
2088         ($node: expr) => {
2089                 let events = $node.node.get_and_clear_pending_events();
2090                 assert_eq!(events.len(), 1);
2091                 match events[0] {
2092                         $crate::events::Event::PaymentPathSuccessful { .. } => {},
2093                         _ => panic!("Unexpected event"),
2094                 }
2095         }
2096 }
2097
2098 pub fn expect_payment_forwarded<CM: AChannelManager, H: NodeHolder<CM=CM>>(
2099         event: Event, node: &H, prev_node: &H, next_node: &H, expected_fee: Option<u64>,
2100         upstream_force_closed: bool, downstream_force_closed: bool
2101 ) {
2102         match event {
2103                 Event::PaymentForwarded {
2104                         fee_earned_msat, prev_channel_id, claim_from_onchain_tx, next_channel_id,
2105                         outbound_amount_forwarded_msat: _
2106                 } => {
2107                         assert_eq!(fee_earned_msat, expected_fee);
2108                         if !upstream_force_closed {
2109                                 // Is the event prev_channel_id in one of the channels between the two nodes?
2110                                 assert!(node.node().list_channels().iter().any(|x| x.counterparty.node_id == prev_node.node().get_our_node_id() && x.channel_id == prev_channel_id.unwrap()));
2111                         }
2112                         // We check for force closures since a force closed channel is removed from the
2113                         // node's channel list
2114                         if !downstream_force_closed {
2115                                 assert!(node.node().list_channels().iter().any(|x| x.counterparty.node_id == next_node.node().get_our_node_id() && x.channel_id == next_channel_id.unwrap()));
2116                         }
2117                         assert_eq!(claim_from_onchain_tx, downstream_force_closed);
2118                 },
2119                 _ => panic!("Unexpected event"),
2120         }
2121 }
2122
2123 macro_rules! expect_payment_forwarded {
2124         ($node: expr, $prev_node: expr, $next_node: expr, $expected_fee: expr, $upstream_force_closed: expr, $downstream_force_closed: expr) => {
2125                 let mut events = $node.node.get_and_clear_pending_events();
2126                 assert_eq!(events.len(), 1);
2127                 $crate::ln::functional_test_utils::expect_payment_forwarded(
2128                         events.pop().unwrap(), &$node, &$prev_node, &$next_node, $expected_fee,
2129                         $upstream_force_closed, $downstream_force_closed);
2130         }
2131 }
2132
2133 #[cfg(test)]
2134 #[macro_export]
2135 macro_rules! expect_channel_shutdown_state {
2136         ($node: expr, $chan_id: expr, $state: path) => {
2137                 let chan_details = $node.node.list_channels().into_iter().filter(|cd| cd.channel_id == $chan_id).collect::<Vec<ChannelDetails>>();
2138                 assert_eq!(chan_details.len(), 1);
2139                 assert_eq!(chan_details[0].channel_shutdown_state, Some($state));
2140         }
2141 }
2142
2143 #[cfg(any(test, ldk_bench, feature = "_test_utils"))]
2144 pub fn expect_channel_pending_event<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, expected_counterparty_node_id: &PublicKey) -> ChannelId {
2145         let events = node.node.get_and_clear_pending_events();
2146         assert_eq!(events.len(), 1);
2147         match &events[0] {
2148                 crate::events::Event::ChannelPending { channel_id, counterparty_node_id, .. } => {
2149                         assert_eq!(*expected_counterparty_node_id, *counterparty_node_id);
2150                         *channel_id
2151                 },
2152                 _ => panic!("Unexpected event"),
2153         }
2154 }
2155
2156 #[cfg(any(test, ldk_bench, feature = "_test_utils"))]
2157 pub fn expect_channel_ready_event<'a, 'b, 'c, 'd>(node: &'a Node<'b, 'c, 'd>, expected_counterparty_node_id: &PublicKey) {
2158         let events = node.node.get_and_clear_pending_events();
2159         assert_eq!(events.len(), 1);
2160         match events[0] {
2161                 crate::events::Event::ChannelReady{ ref counterparty_node_id, .. } => {
2162                         assert_eq!(*expected_counterparty_node_id, *counterparty_node_id);
2163                 },
2164                 _ => panic!("Unexpected event"),
2165         }
2166 }
2167
2168 pub struct PaymentFailedConditions<'a> {
2169         pub(crate) expected_htlc_error_data: Option<(u16, &'a [u8])>,
2170         pub(crate) expected_blamed_scid: Option<u64>,
2171         pub(crate) expected_blamed_chan_closed: Option<bool>,
2172         pub(crate) expected_mpp_parts_remain: bool,
2173 }
2174
2175 impl<'a> PaymentFailedConditions<'a> {
2176         pub fn new() -> Self {
2177                 Self {
2178                         expected_htlc_error_data: None,
2179                         expected_blamed_scid: None,
2180                         expected_blamed_chan_closed: None,
2181                         expected_mpp_parts_remain: false,
2182                 }
2183         }
2184         pub fn mpp_parts_remain(mut self) -> Self {
2185                 self.expected_mpp_parts_remain = true;
2186                 self
2187         }
2188         pub fn blamed_scid(mut self, scid: u64) -> Self {
2189                 self.expected_blamed_scid = Some(scid);
2190                 self
2191         }
2192         pub fn blamed_chan_closed(mut self, closed: bool) -> Self {
2193                 self.expected_blamed_chan_closed = Some(closed);
2194                 self
2195         }
2196         pub fn expected_htlc_error_data(mut self, code: u16, data: &'a [u8]) -> Self {
2197                 self.expected_htlc_error_data = Some((code, data));
2198                 self
2199         }
2200 }
2201
2202 #[cfg(test)]
2203 macro_rules! expect_payment_failed_with_update {
2204         ($node: expr, $expected_payment_hash: expr, $payment_failed_permanently: expr, $scid: expr, $chan_closed: expr) => {
2205                 $crate::ln::functional_test_utils::expect_payment_failed_conditions(
2206                         &$node, $expected_payment_hash, $payment_failed_permanently,
2207                         $crate::ln::functional_test_utils::PaymentFailedConditions::new()
2208                                 .blamed_scid($scid).blamed_chan_closed($chan_closed));
2209         }
2210 }
2211
2212 #[cfg(test)]
2213 macro_rules! expect_payment_failed {
2214         ($node: expr, $expected_payment_hash: expr, $payment_failed_permanently: expr $(, $expected_error_code: expr, $expected_error_data: expr)*) => {
2215                 #[allow(unused_mut)]
2216                 let mut conditions = $crate::ln::functional_test_utils::PaymentFailedConditions::new();
2217                 $(
2218                         conditions = conditions.expected_htlc_error_data($expected_error_code, &$expected_error_data);
2219                 )*
2220                 $crate::ln::functional_test_utils::expect_payment_failed_conditions(&$node, $expected_payment_hash, $payment_failed_permanently, conditions);
2221         };
2222 }
2223
2224 pub fn expect_payment_failed_conditions_event<'a, 'b, 'c, 'd, 'e>(
2225         payment_failed_events: Vec<Event>, expected_payment_hash: PaymentHash,
2226         expected_payment_failed_permanently: bool, conditions: PaymentFailedConditions<'e>
2227 ) {
2228         if conditions.expected_mpp_parts_remain { assert_eq!(payment_failed_events.len(), 1); } else { assert_eq!(payment_failed_events.len(), 2); }
2229         let expected_payment_id = match &payment_failed_events[0] {
2230                 Event::PaymentPathFailed { payment_hash, payment_failed_permanently, payment_id, failure,
2231                         #[cfg(test)]
2232                         error_code,
2233                         #[cfg(test)]
2234                         error_data, .. } => {
2235                         assert_eq!(*payment_hash, expected_payment_hash, "unexpected payment_hash");
2236                         assert_eq!(*payment_failed_permanently, expected_payment_failed_permanently, "unexpected payment_failed_permanently value");
2237                         #[cfg(test)]
2238                         {
2239                                 assert!(error_code.is_some(), "expected error_code.is_some() = true");
2240                                 assert!(error_data.is_some(), "expected error_data.is_some() = true");
2241                                 if let Some((code, data)) = conditions.expected_htlc_error_data {
2242                                         assert_eq!(error_code.unwrap(), code, "unexpected error code");
2243                                         assert_eq!(&error_data.as_ref().unwrap()[..], data, "unexpected error data");
2244                                 }
2245                         }
2246
2247                         if let Some(chan_closed) = conditions.expected_blamed_chan_closed {
2248                                 if let PathFailure::OnPath { network_update: Some(upd) } = failure {
2249                                         match upd {
2250                                                 NetworkUpdate::ChannelUpdateMessage { ref msg } if !chan_closed => {
2251                                                         if let Some(scid) = conditions.expected_blamed_scid {
2252                                                                 assert_eq!(msg.contents.short_channel_id, scid);
2253                                                         }
2254                                                         const CHAN_DISABLED_FLAG: u8 = 2;
2255                                                         assert_eq!(msg.contents.flags & CHAN_DISABLED_FLAG, 0);
2256                                                 },
2257                                                 NetworkUpdate::ChannelFailure { short_channel_id, is_permanent } if chan_closed => {
2258                                                         if let Some(scid) = conditions.expected_blamed_scid {
2259                                                                 assert_eq!(*short_channel_id, scid);
2260                                                         }
2261                                                         assert!(is_permanent);
2262                                                 },
2263                                                 _ => panic!("Unexpected update type"),
2264                                         }
2265                                 } else { panic!("Expected network update"); }
2266                         }
2267
2268                         payment_id.unwrap()
2269                 },
2270                 _ => panic!("Unexpected event"),
2271         };
2272         if !conditions.expected_mpp_parts_remain {
2273                 match &payment_failed_events[1] {
2274                         Event::PaymentFailed { ref payment_hash, ref payment_id, ref reason } => {
2275                                 assert_eq!(*payment_hash, expected_payment_hash, "unexpected second payment_hash");
2276                                 assert_eq!(*payment_id, expected_payment_id);
2277                                 assert_eq!(reason.unwrap(), if expected_payment_failed_permanently {
2278                                         PaymentFailureReason::RecipientRejected
2279                                 } else {
2280                                         PaymentFailureReason::RetriesExhausted
2281                                 });
2282                         }
2283                         _ => panic!("Unexpected second event"),
2284                 }
2285         }
2286 }
2287
2288 pub fn expect_payment_failed_conditions<'a, 'b, 'c, 'd, 'e>(
2289         node: &'a Node<'b, 'c, 'd>, expected_payment_hash: PaymentHash, expected_payment_failed_permanently: bool,
2290         conditions: PaymentFailedConditions<'e>
2291 ) {
2292         let events = node.node.get_and_clear_pending_events();
2293         expect_payment_failed_conditions_event(events, expected_payment_hash, expected_payment_failed_permanently, conditions);
2294 }
2295
2296 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 {
2297         let payment_id = PaymentId(origin_node.keys_manager.backing.get_secure_random_bytes());
2298         origin_node.node.send_payment_with_route(&route, our_payment_hash,
2299                 RecipientOnionFields::secret_only(our_payment_secret), payment_id).unwrap();
2300         check_added_monitors!(origin_node, expected_paths.len());
2301         pass_along_route(origin_node, expected_paths, recv_value, our_payment_hash, our_payment_secret);
2302         payment_id
2303 }
2304
2305 pub fn do_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_claimable_expected: bool, clear_recipient_events: bool, expected_preimage: Option<PaymentPreimage>) -> Option<Event> {
2306         let mut payment_event = SendEvent::from_event(ev);
2307         let mut prev_node = origin_node;
2308         let mut event = None;
2309
2310         for (idx, &node) in expected_path.iter().enumerate() {
2311                 assert_eq!(node.node.get_our_node_id(), payment_event.node_id);
2312
2313                 node.node.handle_update_add_htlc(&prev_node.node.get_our_node_id(), &payment_event.msgs[0]);
2314                 check_added_monitors!(node, 0);
2315                 commitment_signed_dance!(node, prev_node, payment_event.commitment_msg, false);
2316
2317                 expect_pending_htlcs_forwardable!(node);
2318
2319                 if idx == expected_path.len() - 1 && clear_recipient_events {
2320                         let events_2 = node.node.get_and_clear_pending_events();
2321                         if payment_claimable_expected {
2322                                 assert_eq!(events_2.len(), 1);
2323                                 match &events_2[0] {
2324                                         Event::PaymentClaimable { ref payment_hash, ref purpose, amount_msat,
2325                                                 receiver_node_id, ref via_channel_id, ref via_user_channel_id,
2326                                                 claim_deadline, onion_fields, ..
2327                                         } => {
2328                                                 assert_eq!(our_payment_hash, *payment_hash);
2329                                                 assert_eq!(node.node.get_our_node_id(), receiver_node_id.unwrap());
2330                                                 assert!(onion_fields.is_some());
2331                                                 match &purpose {
2332                                                         PaymentPurpose::InvoicePayment { payment_preimage, payment_secret, .. } => {
2333                                                                 assert_eq!(expected_preimage, *payment_preimage);
2334                                                                 assert_eq!(our_payment_secret.unwrap(), *payment_secret);
2335                                                                 assert_eq!(Some(*payment_secret), onion_fields.as_ref().unwrap().payment_secret);
2336                                                         },
2337                                                         PaymentPurpose::SpontaneousPayment(payment_preimage) => {
2338                                                                 assert_eq!(expected_preimage.unwrap(), *payment_preimage);
2339                                                                 assert_eq!(our_payment_secret, onion_fields.as_ref().unwrap().payment_secret);
2340                                                         },
2341                                                 }
2342                                                 assert_eq!(*amount_msat, recv_value);
2343                                                 assert!(node.node.list_channels().iter().any(|details| details.channel_id == via_channel_id.unwrap()));
2344                                                 assert!(node.node.list_channels().iter().any(|details| details.user_channel_id == via_user_channel_id.unwrap()));
2345                                                 assert!(claim_deadline.unwrap() > node.best_block_info().1);
2346                                         },
2347                                         _ => panic!("Unexpected event"),
2348                                 }
2349                                 event = Some(events_2[0].clone());
2350                         } else {
2351                                 assert!(events_2.is_empty());
2352                         }
2353                 } else if idx != expected_path.len() - 1 {
2354                         let mut events_2 = node.node.get_and_clear_pending_msg_events();
2355                         assert_eq!(events_2.len(), 1);
2356                         check_added_monitors!(node, 1);
2357                         payment_event = SendEvent::from_event(events_2.remove(0));
2358                         assert_eq!(payment_event.msgs.len(), 1);
2359                 }
2360
2361                 prev_node = node;
2362         }
2363         event
2364 }
2365
2366 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_claimable_expected: bool, expected_preimage: Option<PaymentPreimage>) -> Option<Event> {
2367         do_pass_along_path(origin_node, expected_path, recv_value, our_payment_hash, our_payment_secret, ev, payment_claimable_expected, true, expected_preimage)
2368 }
2369
2370 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) {
2371         let mut events = origin_node.node.get_and_clear_pending_msg_events();
2372         assert_eq!(events.len(), expected_route.len());
2373         for (path_idx, expected_path) in expected_route.iter().enumerate() {
2374                 let ev = remove_first_msg_event_to_node(&expected_path[0].node.get_our_node_id(), &mut events);
2375                 // Once we've gotten through all the HTLCs, the last one should result in a
2376                 // PaymentClaimable (but each previous one should not!), .
2377                 let expect_payment = path_idx == expected_route.len() - 1;
2378                 pass_along_path(origin_node, expected_path, recv_value, our_payment_hash.clone(), Some(our_payment_secret), ev, expect_payment, None);
2379         }
2380 }
2381
2382 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) {
2383         let (our_payment_preimage, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(expected_route.last().unwrap());
2384         let payment_id = send_along_route_with_secret(origin_node, route, &[expected_route], recv_value, our_payment_hash, our_payment_secret);
2385         (our_payment_preimage, our_payment_hash, our_payment_secret, payment_id)
2386 }
2387
2388 pub fn do_claim_payment_along_route<'a, 'b, 'c>(
2389         origin_node: &Node<'a, 'b, 'c>, expected_paths: &[&[&Node<'a, 'b, 'c>]], skip_last: bool,
2390         our_payment_preimage: PaymentPreimage
2391 ) -> u64 {
2392         let extra_fees = vec![0; expected_paths.len()];
2393         do_claim_payment_along_route_with_extra_penultimate_hop_fees(origin_node, expected_paths,
2394                 &extra_fees[..], skip_last, our_payment_preimage)
2395 }
2396
2397 pub fn do_claim_payment_along_route_with_extra_penultimate_hop_fees<'a, 'b, 'c>(
2398         origin_node: &Node<'a, 'b, 'c>, expected_paths: &[&[&Node<'a, 'b, 'c>]], expected_extra_fees:
2399         &[u32], skip_last: bool, our_payment_preimage: PaymentPreimage
2400 ) -> u64 {
2401         assert_eq!(expected_paths.len(), expected_extra_fees.len());
2402         for path in expected_paths.iter() {
2403                 assert_eq!(path.last().unwrap().node.get_our_node_id(), expected_paths[0].last().unwrap().node.get_our_node_id());
2404         }
2405         expected_paths[0].last().unwrap().node.claim_funds(our_payment_preimage);
2406         pass_claimed_payment_along_route(origin_node, expected_paths, expected_extra_fees, skip_last, our_payment_preimage)
2407 }
2408
2409 pub fn pass_claimed_payment_along_route<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_paths: &[&[&Node<'a, 'b, 'c>]], expected_extra_fees: &[u32], skip_last: bool, our_payment_preimage: PaymentPreimage) -> u64 {
2410         let claim_event = expected_paths[0].last().unwrap().node.get_and_clear_pending_events();
2411         assert_eq!(claim_event.len(), 1);
2412         match claim_event[0] {
2413                 Event::PaymentClaimed {
2414                         purpose: PaymentPurpose::SpontaneousPayment(preimage),
2415                         amount_msat,
2416                         ref htlcs,
2417                         .. }
2418                 | Event::PaymentClaimed {
2419                         purpose: PaymentPurpose::InvoicePayment { payment_preimage: Some(preimage), ..},
2420                         ref htlcs,
2421                         amount_msat,
2422                         ..
2423                 } => {
2424                         assert_eq!(preimage, our_payment_preimage);
2425                         assert_eq!(htlcs.len(), expected_paths.len());  // One per path.
2426                         assert_eq!(htlcs.iter().map(|h| h.value_msat).sum::<u64>(), amount_msat);
2427                         expected_paths.iter().zip(htlcs).for_each(|(path, htlc)| check_claimed_htlc_channel(origin_node, path, htlc));
2428                 },
2429                 Event::PaymentClaimed {
2430                         purpose: PaymentPurpose::InvoicePayment { .. },
2431                         payment_hash,
2432                         amount_msat,
2433                         ref htlcs,
2434                         ..
2435                 } => {
2436                         assert_eq!(&payment_hash.0, &Sha256::hash(&our_payment_preimage.0)[..]);
2437                         assert_eq!(htlcs.len(), expected_paths.len());  // One per path.
2438                         assert_eq!(htlcs.iter().map(|h| h.value_msat).sum::<u64>(), amount_msat);
2439                         expected_paths.iter().zip(htlcs).for_each(|(path, htlc)| check_claimed_htlc_channel(origin_node, path, htlc));
2440                 }
2441                 _ => panic!(),
2442         }
2443
2444         check_added_monitors!(expected_paths[0].last().unwrap(), expected_paths.len());
2445
2446         let mut expected_total_fee_msat = 0;
2447
2448         macro_rules! msgs_from_ev {
2449                 ($ev: expr) => {
2450                         match $ev {
2451                                 &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 } } => {
2452                                         assert!(update_add_htlcs.is_empty());
2453                                         assert_eq!(update_fulfill_htlcs.len(), 1);
2454                                         assert!(update_fail_htlcs.is_empty());
2455                                         assert!(update_fail_malformed_htlcs.is_empty());
2456                                         assert!(update_fee.is_none());
2457                                         ((update_fulfill_htlcs[0].clone(), commitment_signed.clone()), node_id.clone())
2458                                 },
2459                                 _ => panic!("Unexpected event"),
2460                         }
2461                 }
2462         }
2463         let mut per_path_msgs: Vec<((msgs::UpdateFulfillHTLC, msgs::CommitmentSigned), PublicKey)> = Vec::with_capacity(expected_paths.len());
2464         let mut events = expected_paths[0].last().unwrap().node.get_and_clear_pending_msg_events();
2465         assert_eq!(events.len(), expected_paths.len());
2466
2467         if events.len() == 1 {
2468                 per_path_msgs.push(msgs_from_ev!(&events[0]));
2469         } else {
2470                 for expected_path in expected_paths.iter() {
2471                         // For MPP payments, we always want the message to the first node in the path.
2472                         let ev = remove_first_msg_event_to_node(&expected_path[0].node.get_our_node_id(), &mut events);
2473                         per_path_msgs.push(msgs_from_ev!(&ev));
2474                 }
2475         }
2476
2477         for (i, (expected_route, (path_msgs, next_hop))) in expected_paths.iter().zip(per_path_msgs.drain(..)).enumerate() {
2478                 let mut next_msgs = Some(path_msgs);
2479                 let mut expected_next_node = next_hop;
2480
2481                 macro_rules! last_update_fulfill_dance {
2482                         ($node: expr, $prev_node: expr) => {
2483                                 {
2484                                         $node.node.handle_update_fulfill_htlc(&$prev_node.node.get_our_node_id(), &next_msgs.as_ref().unwrap().0);
2485                                         check_added_monitors!($node, 0);
2486                                         assert!($node.node.get_and_clear_pending_msg_events().is_empty());
2487                                         commitment_signed_dance!($node, $prev_node, next_msgs.as_ref().unwrap().1, false);
2488                                 }
2489                         }
2490                 }
2491                 macro_rules! mid_update_fulfill_dance {
2492                         ($idx: expr, $node: expr, $prev_node: expr, $next_node: expr, $new_msgs: expr) => {
2493                                 {
2494                                         $node.node.handle_update_fulfill_htlc(&$prev_node.node.get_our_node_id(), &next_msgs.as_ref().unwrap().0);
2495                                         let mut fee = {
2496                                                 let per_peer_state = $node.node.per_peer_state.read().unwrap();
2497                                                 let peer_state = per_peer_state.get(&$prev_node.node.get_our_node_id())
2498                                                         .unwrap().lock().unwrap();
2499                                                 let channel = peer_state.channel_by_id.get(&next_msgs.as_ref().unwrap().0.channel_id).unwrap();
2500                                                 if let Some(prev_config) = channel.context().prev_config() {
2501                                                         prev_config.forwarding_fee_base_msat
2502                                                 } else {
2503                                                         channel.context().config().forwarding_fee_base_msat
2504                                                 }
2505                                         };
2506                                         if $idx == 1 { fee += expected_extra_fees[i]; }
2507                                         expect_payment_forwarded!(*$node, $next_node, $prev_node, Some(fee as u64), false, false);
2508                                         expected_total_fee_msat += fee as u64;
2509                                         check_added_monitors!($node, 1);
2510                                         let new_next_msgs = if $new_msgs {
2511                                                 let events = $node.node.get_and_clear_pending_msg_events();
2512                                                 assert_eq!(events.len(), 1);
2513                                                 let (res, nexthop) = msgs_from_ev!(&events[0]);
2514                                                 expected_next_node = nexthop;
2515                                                 Some(res)
2516                                         } else {
2517                                                 assert!($node.node.get_and_clear_pending_msg_events().is_empty());
2518                                                 None
2519                                         };
2520                                         commitment_signed_dance!($node, $prev_node, next_msgs.as_ref().unwrap().1, false);
2521                                         next_msgs = new_next_msgs;
2522                                 }
2523                         }
2524                 }
2525
2526                 let mut prev_node = expected_route.last().unwrap();
2527                 for (idx, node) in expected_route.iter().rev().enumerate().skip(1) {
2528                         assert_eq!(expected_next_node, node.node.get_our_node_id());
2529                         let update_next_msgs = !skip_last || idx != expected_route.len() - 1;
2530                         if next_msgs.is_some() {
2531                                 // Since we are traversing in reverse, next_node is actually the previous node
2532                                 let next_node: &Node;
2533                                 if idx == expected_route.len() - 1 {
2534                                         next_node = origin_node;
2535                                 } else {
2536                                         next_node = expected_route[expected_route.len() - 1 - idx - 1];
2537                                 }
2538                                 mid_update_fulfill_dance!(idx, node, prev_node, next_node, update_next_msgs);
2539                         } else {
2540                                 assert!(!update_next_msgs);
2541                                 assert!(node.node.get_and_clear_pending_msg_events().is_empty());
2542                         }
2543                         if !skip_last && idx == expected_route.len() - 1 {
2544                                 assert_eq!(expected_next_node, origin_node.node.get_our_node_id());
2545                         }
2546
2547                         prev_node = node;
2548                 }
2549
2550                 if !skip_last {
2551                         last_update_fulfill_dance!(origin_node, expected_route.first().unwrap());
2552                 }
2553         }
2554
2555         // Ensure that claim_funds is idempotent.
2556         expected_paths[0].last().unwrap().node.claim_funds(our_payment_preimage);
2557         assert!(expected_paths[0].last().unwrap().node.get_and_clear_pending_msg_events().is_empty());
2558         check_added_monitors!(expected_paths[0].last().unwrap(), 0);
2559
2560         expected_total_fee_msat
2561 }
2562 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) {
2563         let expected_total_fee_msat = do_claim_payment_along_route(origin_node, expected_paths, skip_last, our_payment_preimage);
2564         if !skip_last {
2565                 expect_payment_sent!(origin_node, our_payment_preimage, Some(expected_total_fee_msat));
2566         }
2567 }
2568
2569 pub fn claim_payment<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_route: &[&Node<'a, 'b, 'c>], our_payment_preimage: PaymentPreimage) {
2570         claim_payment_along_route(origin_node, &[expected_route], false, our_payment_preimage);
2571 }
2572
2573 pub const TEST_FINAL_CLTV: u32 = 70;
2574
2575 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, PaymentId) {
2576         let payment_params = PaymentParameters::from_node_id(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV)
2577                 .with_bolt11_features(expected_route.last().unwrap().node.bolt11_invoice_features()).unwrap();
2578         let route_params = RouteParameters::from_payment_params_and_value(payment_params, recv_value);
2579         let route = get_route(origin_node, &route_params).unwrap();
2580         assert_eq!(route.paths.len(), 1);
2581         assert_eq!(route.paths[0].hops.len(), expected_route.len());
2582         for (node, hop) in expected_route.iter().zip(route.paths[0].hops.iter()) {
2583                 assert_eq!(hop.pubkey, node.node.get_our_node_id());
2584         }
2585
2586         let res = send_along_route(origin_node, route, expected_route, recv_value);
2587         (res.0, res.1, res.2, res.3)
2588 }
2589
2590 pub fn route_over_limit<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_route: &[&Node<'a, 'b, 'c>], recv_value: u64)  {
2591         let payment_params = PaymentParameters::from_node_id(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV)
2592                 .with_bolt11_features(expected_route.last().unwrap().node.bolt11_invoice_features()).unwrap();
2593         let route_params = RouteParameters::from_payment_params_and_value(payment_params, recv_value);
2594         let network_graph = origin_node.network_graph.read_only();
2595         let scorer = test_utils::TestScorer::new();
2596         let seed = [0u8; 32];
2597         let keys_manager = test_utils::TestKeysInterface::new(&seed, Network::Testnet);
2598         let random_seed_bytes = keys_manager.get_secure_random_bytes();
2599         let route = router::get_route(&origin_node.node.get_our_node_id(), &route_params, &network_graph,
2600                 None, origin_node.logger, &scorer, &Default::default(), &random_seed_bytes).unwrap();
2601         assert_eq!(route.paths.len(), 1);
2602         assert_eq!(route.paths[0].hops.len(), expected_route.len());
2603         for (node, hop) in expected_route.iter().zip(route.paths[0].hops.iter()) {
2604                 assert_eq!(hop.pubkey, node.node.get_our_node_id());
2605         }
2606
2607         let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(expected_route.last().unwrap());
2608         unwrap_send_err!(origin_node.node.send_payment_with_route(&route, our_payment_hash,
2609                         RecipientOnionFields::secret_only(our_payment_secret), PaymentId(our_payment_hash.0)),
2610                 true, APIError::ChannelUnavailable { ref err },
2611                 assert!(err.contains("Cannot send value that would put us over the max HTLC value in flight our peer will accept")));
2612 }
2613
2614 pub fn send_payment<'a, 'b, 'c>(origin: &Node<'a, 'b, 'c>, expected_route: &[&Node<'a, 'b, 'c>], recv_value: u64) -> (PaymentPreimage, PaymentHash, PaymentSecret, PaymentId) {
2615         let res = route_payment(&origin, expected_route, recv_value);
2616         claim_payment(&origin, expected_route, res.0);
2617         res
2618 }
2619
2620 pub fn fail_payment_along_route<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_paths: &[&[&Node<'a, 'b, 'c>]], skip_last: bool, our_payment_hash: PaymentHash) {
2621         for path in expected_paths.iter() {
2622                 assert_eq!(path.last().unwrap().node.get_our_node_id(), expected_paths[0].last().unwrap().node.get_our_node_id());
2623         }
2624         expected_paths[0].last().unwrap().node.fail_htlc_backwards(&our_payment_hash);
2625         let expected_destinations: Vec<HTLCDestination> = repeat(HTLCDestination::FailedPayment { payment_hash: our_payment_hash }).take(expected_paths.len()).collect();
2626         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(expected_paths[0].last().unwrap(), expected_destinations);
2627
2628         pass_failed_payment_back(origin_node, expected_paths, skip_last, our_payment_hash, PaymentFailureReason::RecipientRejected);
2629 }
2630
2631 pub fn pass_failed_payment_back<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_paths_slice: &[&[&Node<'a, 'b, 'c>]], skip_last: bool, our_payment_hash: PaymentHash, expected_fail_reason: PaymentFailureReason) {
2632         let mut expected_paths: Vec<_> = expected_paths_slice.iter().collect();
2633         check_added_monitors!(expected_paths[0].last().unwrap(), expected_paths.len());
2634
2635         let mut per_path_msgs: Vec<((msgs::UpdateFailHTLC, msgs::CommitmentSigned), PublicKey)> = Vec::with_capacity(expected_paths.len());
2636         let events = expected_paths[0].last().unwrap().node.get_and_clear_pending_msg_events();
2637         assert_eq!(events.len(), expected_paths.len());
2638         for ev in events.iter() {
2639                 let (update_fail, commitment_signed, node_id) = match ev {
2640                         &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 } } => {
2641                                 assert!(update_add_htlcs.is_empty());
2642                                 assert!(update_fulfill_htlcs.is_empty());
2643                                 assert_eq!(update_fail_htlcs.len(), 1);
2644                                 assert!(update_fail_malformed_htlcs.is_empty());
2645                                 assert!(update_fee.is_none());
2646                                 (update_fail_htlcs[0].clone(), commitment_signed.clone(), node_id.clone())
2647                         },
2648                         _ => panic!("Unexpected event"),
2649                 };
2650                 per_path_msgs.push(((update_fail, commitment_signed), node_id));
2651         }
2652         per_path_msgs.sort_unstable_by(|(_, node_id_a), (_, node_id_b)| node_id_a.cmp(node_id_b));
2653         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()));
2654
2655         for (i, (expected_route, (path_msgs, next_hop))) in expected_paths.iter().zip(per_path_msgs.drain(..)).enumerate() {
2656                 let mut next_msgs = Some(path_msgs);
2657                 let mut expected_next_node = next_hop;
2658                 let mut prev_node = expected_route.last().unwrap();
2659
2660                 for (idx, node) in expected_route.iter().rev().enumerate().skip(1) {
2661                         assert_eq!(expected_next_node, node.node.get_our_node_id());
2662                         let update_next_node = !skip_last || idx != expected_route.len() - 1;
2663                         if next_msgs.is_some() {
2664                                 node.node.handle_update_fail_htlc(&prev_node.node.get_our_node_id(), &next_msgs.as_ref().unwrap().0);
2665                                 commitment_signed_dance!(node, prev_node, next_msgs.as_ref().unwrap().1, update_next_node);
2666                                 if !update_next_node {
2667                                         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(node, vec![HTLCDestination::NextHopChannel { node_id: Some(prev_node.node.get_our_node_id()), channel_id: next_msgs.as_ref().unwrap().0.channel_id }]);
2668                                 }
2669                         }
2670                         let events = node.node.get_and_clear_pending_msg_events();
2671                         if update_next_node {
2672                                 assert_eq!(events.len(), 1);
2673                                 match events[0] {
2674                                         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 } } => {
2675                                                 assert!(update_add_htlcs.is_empty());
2676                                                 assert!(update_fulfill_htlcs.is_empty());
2677                                                 assert_eq!(update_fail_htlcs.len(), 1);
2678                                                 assert!(update_fail_malformed_htlcs.is_empty());
2679                                                 assert!(update_fee.is_none());
2680                                                 expected_next_node = node_id.clone();
2681                                                 next_msgs = Some((update_fail_htlcs[0].clone(), commitment_signed.clone()));
2682                                         },
2683                                         _ => panic!("Unexpected event"),
2684                                 }
2685                         } else {
2686                                 assert!(events.is_empty());
2687                         }
2688                         if !skip_last && idx == expected_route.len() - 1 {
2689                                 assert_eq!(expected_next_node, origin_node.node.get_our_node_id());
2690                         }
2691
2692                         prev_node = node;
2693                 }
2694
2695                 if !skip_last {
2696                         let prev_node = expected_route.first().unwrap();
2697                         origin_node.node.handle_update_fail_htlc(&prev_node.node.get_our_node_id(), &next_msgs.as_ref().unwrap().0);
2698                         check_added_monitors!(origin_node, 0);
2699                         assert!(origin_node.node.get_and_clear_pending_msg_events().is_empty());
2700                         commitment_signed_dance!(origin_node, prev_node, next_msgs.as_ref().unwrap().1, false);
2701                         let events = origin_node.node.get_and_clear_pending_events();
2702                         if i == expected_paths.len() - 1 { assert_eq!(events.len(), 2); } else { assert_eq!(events.len(), 1); }
2703
2704                         let expected_payment_id = match events[0] {
2705                                 Event::PaymentPathFailed { payment_hash, payment_failed_permanently, ref path, ref payment_id, .. } => {
2706                                         assert_eq!(payment_hash, our_payment_hash);
2707                                         assert!(payment_failed_permanently);
2708                                         for (idx, hop) in expected_route.iter().enumerate() {
2709                                                 assert_eq!(hop.node.get_our_node_id(), path.hops[idx].pubkey);
2710                                         }
2711                                         payment_id.unwrap()
2712                                 },
2713                                 _ => panic!("Unexpected event"),
2714                         };
2715                         if i == expected_paths.len() - 1 {
2716                                 match events[1] {
2717                                         Event::PaymentFailed { ref payment_hash, ref payment_id, ref reason } => {
2718                                                 assert_eq!(*payment_hash, our_payment_hash, "unexpected second payment_hash");
2719                                                 assert_eq!(*payment_id, expected_payment_id);
2720                                                 assert_eq!(reason.unwrap(), expected_fail_reason);
2721                                         }
2722                                         _ => panic!("Unexpected second event"),
2723                                 }
2724                         }
2725                 }
2726         }
2727
2728         // Ensure that fail_htlc_backwards is idempotent.
2729         expected_paths[0].last().unwrap().node.fail_htlc_backwards(&our_payment_hash);
2730         assert!(expected_paths[0].last().unwrap().node.get_and_clear_pending_events().is_empty());
2731         assert!(expected_paths[0].last().unwrap().node.get_and_clear_pending_msg_events().is_empty());
2732         check_added_monitors!(expected_paths[0].last().unwrap(), 0);
2733 }
2734
2735 pub fn fail_payment<'a, 'b, 'c>(origin_node: &Node<'a, 'b, 'c>, expected_path: &[&Node<'a, 'b, 'c>], our_payment_hash: PaymentHash)  {
2736         fail_payment_along_route(origin_node, &[&expected_path[..]], false, our_payment_hash);
2737 }
2738
2739 pub fn create_chanmon_cfgs(node_count: usize) -> Vec<TestChanMonCfg> {
2740         let mut chan_mon_cfgs = Vec::new();
2741         for i in 0..node_count {
2742                 let tx_broadcaster = test_utils::TestBroadcaster::new(Network::Testnet);
2743                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
2744                 let chain_source = test_utils::TestChainSource::new(Network::Testnet);
2745                 let logger = test_utils::TestLogger::with_id(format!("node {}", i));
2746                 let persister = test_utils::TestPersister::new();
2747                 let seed = [i as u8; 32];
2748                 let keys_manager = test_utils::TestKeysInterface::new(&seed, Network::Testnet);
2749                 let scorer = RwLock::new(test_utils::TestScorer::new());
2750
2751                 chan_mon_cfgs.push(TestChanMonCfg { tx_broadcaster, fee_estimator, chain_source, logger, persister, keys_manager, scorer });
2752         }
2753
2754         chan_mon_cfgs
2755 }
2756
2757 pub fn create_node_cfgs<'a>(node_count: usize, chanmon_cfgs: &'a Vec<TestChanMonCfg>) -> Vec<NodeCfg<'a>> {
2758         create_node_cfgs_with_persisters(node_count, chanmon_cfgs, chanmon_cfgs.iter().map(|c| &c.persister).collect())
2759 }
2760
2761 pub fn create_node_cfgs_with_persisters<'a>(node_count: usize, chanmon_cfgs: &'a Vec<TestChanMonCfg>, persisters: Vec<&'a impl Persist<TestChannelSigner>>) -> Vec<NodeCfg<'a>> {
2762         let mut nodes = Vec::new();
2763
2764         for i in 0..node_count {
2765                 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, persisters[i], &chanmon_cfgs[i].keys_manager);
2766                 let network_graph = Arc::new(NetworkGraph::new(Network::Testnet, &chanmon_cfgs[i].logger));
2767                 let seed = [i as u8; 32];
2768                 nodes.push(NodeCfg {
2769                         chain_source: &chanmon_cfgs[i].chain_source,
2770                         logger: &chanmon_cfgs[i].logger,
2771                         tx_broadcaster: &chanmon_cfgs[i].tx_broadcaster,
2772                         fee_estimator: &chanmon_cfgs[i].fee_estimator,
2773                         router: test_utils::TestRouter::new(network_graph.clone(), &chanmon_cfgs[i].scorer),
2774                         chain_monitor,
2775                         keys_manager: &chanmon_cfgs[i].keys_manager,
2776                         node_seed: seed,
2777                         network_graph,
2778                         override_init_features: Rc::new(RefCell::new(None)),
2779                 });
2780         }
2781
2782         nodes
2783 }
2784
2785 pub fn test_default_channel_config() -> UserConfig {
2786         let mut default_config = UserConfig::default();
2787         // Set cltv_expiry_delta slightly lower to keep the final CLTV values inside one byte in our
2788         // tests so that our script-length checks don't fail (see ACCEPTED_HTLC_SCRIPT_WEIGHT).
2789         default_config.channel_config.cltv_expiry_delta = MIN_CLTV_EXPIRY_DELTA;
2790         default_config.channel_handshake_config.announced_channel = true;
2791         default_config.channel_handshake_limits.force_announced_channel_preference = false;
2792         // When most of our tests were written, the default HTLC minimum was fixed at 1000.
2793         // It now defaults to 1, so we simply set it to the expected value here.
2794         default_config.channel_handshake_config.our_htlc_minimum_msat = 1000;
2795         // When most of our tests were written, we didn't have the notion of a `max_dust_htlc_exposure_msat`,
2796         // to avoid interfering with tests we bump it to 50_000_000 msat (assuming the default test
2797         // feerate of 253).
2798         default_config.channel_config.max_dust_htlc_exposure =
2799                 MaxDustHTLCExposure::FeeRateMultiplier(50_000_000 / 253);
2800         default_config
2801 }
2802
2803 pub fn create_node_chanmgrs<'a, 'b>(node_count: usize, cfgs: &'a Vec<NodeCfg<'b>>, node_config: &[Option<UserConfig>]) -> Vec<ChannelManager<&'a TestChainMonitor<'b>, &'b test_utils::TestBroadcaster, &'a test_utils::TestKeysInterface, &'a test_utils::TestKeysInterface, &'a test_utils::TestKeysInterface, &'b test_utils::TestFeeEstimator, &'a test_utils::TestRouter<'b>, &'b test_utils::TestLogger>> {
2804         let mut chanmgrs = Vec::new();
2805         for i in 0..node_count {
2806                 let network = Network::Testnet;
2807                 let genesis_block = bitcoin::blockdata::constants::genesis_block(network);
2808                 let params = ChainParameters {
2809                         network,
2810                         best_block: BestBlock::from_network(network),
2811                 };
2812                 let node = ChannelManager::new(cfgs[i].fee_estimator, &cfgs[i].chain_monitor, cfgs[i].tx_broadcaster, &cfgs[i].router, cfgs[i].logger, cfgs[i].keys_manager,
2813                         cfgs[i].keys_manager, cfgs[i].keys_manager, if node_config[i].is_some() { node_config[i].clone().unwrap() } else { test_default_channel_config() }, params, genesis_block.header.time);
2814                 chanmgrs.push(node);
2815         }
2816
2817         chanmgrs
2818 }
2819
2820 pub fn create_network<'a, 'b: 'a, 'c: 'b>(node_count: usize, cfgs: &'b Vec<NodeCfg<'c>>, chan_mgrs: &'a Vec<ChannelManager<&'b TestChainMonitor<'c>, &'c test_utils::TestBroadcaster, &'b test_utils::TestKeysInterface, &'b test_utils::TestKeysInterface, &'b test_utils::TestKeysInterface, &'c test_utils::TestFeeEstimator, &'c test_utils::TestRouter, &'c test_utils::TestLogger>>) -> Vec<Node<'a, 'b, 'c>> {
2821         let mut nodes = Vec::new();
2822         let chan_count = Rc::new(RefCell::new(0));
2823         let payment_count = Rc::new(RefCell::new(0));
2824         let connect_style = Rc::new(RefCell::new(ConnectStyle::random_style()));
2825
2826         for i in 0..node_count {
2827                 let gossip_sync = P2PGossipSync::new(cfgs[i].network_graph.as_ref(), None, cfgs[i].logger);
2828                 let wallet_source = Arc::new(test_utils::TestWalletSource::new(SecretKey::from_slice(&[i as u8 + 1; 32]).unwrap()));
2829                 nodes.push(Node{
2830                         chain_source: cfgs[i].chain_source, tx_broadcaster: cfgs[i].tx_broadcaster,
2831                         fee_estimator: cfgs[i].fee_estimator, router: &cfgs[i].router,
2832                         chain_monitor: &cfgs[i].chain_monitor, keys_manager: &cfgs[i].keys_manager,
2833                         node: &chan_mgrs[i], network_graph: cfgs[i].network_graph.as_ref(), gossip_sync,
2834                         node_seed: cfgs[i].node_seed, network_chan_count: chan_count.clone(),
2835                         network_payment_count: payment_count.clone(), logger: cfgs[i].logger,
2836                         blocks: Arc::clone(&cfgs[i].tx_broadcaster.blocks),
2837                         connect_style: Rc::clone(&connect_style),
2838                         override_init_features: Rc::clone(&cfgs[i].override_init_features),
2839                         wallet_source: Arc::clone(&wallet_source),
2840                         bump_tx_handler: BumpTransactionEventHandler::new(
2841                                 cfgs[i].tx_broadcaster, Arc::new(Wallet::new(Arc::clone(&wallet_source), cfgs[i].logger)),
2842                                 &cfgs[i].keys_manager, cfgs[i].logger,
2843                         ),
2844                 })
2845         }
2846
2847         for i in 0..node_count {
2848                 for j in (i+1)..node_count {
2849                         nodes[i].node.peer_connected(&nodes[j].node.get_our_node_id(), &msgs::Init {
2850                                 features: nodes[j].override_init_features.borrow().clone().unwrap_or_else(|| nodes[j].node.init_features()),
2851                                 networks: None,
2852                                 remote_network_address: None,
2853                         }, true).unwrap();
2854                         nodes[j].node.peer_connected(&nodes[i].node.get_our_node_id(), &msgs::Init {
2855                                 features: nodes[i].override_init_features.borrow().clone().unwrap_or_else(|| nodes[i].node.init_features()),
2856                                 networks: None,
2857                                 remote_network_address: None,
2858                         }, false).unwrap();
2859                 }
2860         }
2861
2862         nodes
2863 }
2864
2865 // Note that the following only works for CLTV values up to 128
2866 pub const ACCEPTED_HTLC_SCRIPT_WEIGHT: usize = 137; // Here we have a diff due to HTLC CLTV expiry being < 2^15 in test
2867 pub const ACCEPTED_HTLC_SCRIPT_WEIGHT_ANCHORS: usize = 140; // Here we have a diff due to HTLC CLTV expiry being < 2^15 in test
2868
2869 #[derive(PartialEq)]
2870 pub enum HTLCType { NONE, TIMEOUT, SUCCESS }
2871 /// Tests that the given node has broadcast transactions for the given Channel
2872 ///
2873 /// First checks that the latest holder commitment tx has been broadcast, unless an explicit
2874 /// commitment_tx is provided, which may be used to test that a remote commitment tx was
2875 /// broadcast and the revoked outputs were claimed.
2876 ///
2877 /// Next tests that there is (or is not) a transaction that spends the commitment transaction
2878 /// that appears to be the type of HTLC transaction specified in has_htlc_tx.
2879 ///
2880 /// All broadcast transactions must be accounted for in one of the above three types of we'll
2881 /// also fail.
2882 pub fn test_txn_broadcast<'a, 'b, 'c>(node: &Node<'a, 'b, 'c>, chan: &(msgs::ChannelUpdate, msgs::ChannelUpdate, ChannelId, Transaction), commitment_tx: Option<Transaction>, has_htlc_tx: HTLCType) -> Vec<Transaction>  {
2883         let mut node_txn = node.tx_broadcaster.txn_broadcasted.lock().unwrap();
2884         let mut txn_seen = HashSet::new();
2885         node_txn.retain(|tx| txn_seen.insert(tx.txid()));
2886         assert!(node_txn.len() >= if commitment_tx.is_some() { 0 } else { 1 } + if has_htlc_tx == HTLCType::NONE { 0 } else { 1 });
2887
2888         let mut res = Vec::with_capacity(2);
2889         node_txn.retain(|tx| {
2890                 if tx.input.len() == 1 && tx.input[0].previous_output.txid == chan.3.txid() {
2891                         check_spends!(tx, chan.3);
2892                         if commitment_tx.is_none() {
2893                                 res.push(tx.clone());
2894                         }
2895                         false
2896                 } else { true }
2897         });
2898         if let Some(explicit_tx) = commitment_tx {
2899                 res.push(explicit_tx.clone());
2900         }
2901
2902         assert_eq!(res.len(), 1);
2903
2904         if has_htlc_tx != HTLCType::NONE {
2905                 node_txn.retain(|tx| {
2906                         if tx.input.len() == 1 && tx.input[0].previous_output.txid == res[0].txid() {
2907                                 check_spends!(tx, res[0]);
2908                                 if has_htlc_tx == HTLCType::TIMEOUT {
2909                                         assert!(tx.lock_time.0 != 0);
2910                                 } else {
2911                                         assert!(tx.lock_time.0 == 0);
2912                                 }
2913                                 res.push(tx.clone());
2914                                 false
2915                         } else { true }
2916                 });
2917                 assert!(res.len() == 2 || res.len() == 3);
2918                 if res.len() == 3 {
2919                         assert_eq!(res[1], res[2]);
2920                 }
2921         }
2922
2923         assert!(node_txn.is_empty());
2924         res
2925 }
2926
2927 /// Tests that the given node has broadcast a claim transaction against the provided revoked
2928 /// HTLC transaction.
2929 pub fn test_revoked_htlc_claim_txn_broadcast<'a, 'b, 'c>(node: &Node<'a, 'b, 'c>, revoked_tx: Transaction, commitment_revoked_tx: Transaction)  {
2930         let mut node_txn = node.tx_broadcaster.txn_broadcasted.lock().unwrap();
2931         // We may issue multiple claiming transaction on revoked outputs due to block rescan
2932         // for revoked htlc outputs
2933         if node_txn.len() != 1 && node_txn.len() != 2 && node_txn.len() != 3 { assert!(false); }
2934         node_txn.retain(|tx| {
2935                 if tx.input.len() == 1 && tx.input[0].previous_output.txid == revoked_tx.txid() {
2936                         check_spends!(tx, revoked_tx);
2937                         false
2938                 } else { true }
2939         });
2940         node_txn.retain(|tx| {
2941                 check_spends!(tx, commitment_revoked_tx);
2942                 false
2943         });
2944         assert!(node_txn.is_empty());
2945 }
2946
2947 pub fn check_preimage_claim<'a, 'b, 'c>(node: &Node<'a, 'b, 'c>, prev_txn: &Vec<Transaction>) -> Vec<Transaction>  {
2948         let mut node_txn = node.tx_broadcaster.txn_broadcasted.lock().unwrap();
2949         let mut txn_seen = HashSet::new();
2950         node_txn.retain(|tx| txn_seen.insert(tx.txid()));
2951
2952         let mut found_prev = false;
2953         for prev_tx in prev_txn {
2954                 for tx in &*node_txn {
2955                         if tx.input[0].previous_output.txid == prev_tx.txid() {
2956                                 check_spends!(tx, prev_tx);
2957                                 let mut iter = tx.input[0].witness.iter();
2958                                 iter.next().expect("expected 3 witness items");
2959                                 iter.next().expect("expected 3 witness items");
2960                                 assert!(iter.next().expect("expected 3 witness items").len() > 106); // must spend an htlc output
2961                                 assert_eq!(tx.input.len(), 1); // must spend a commitment tx
2962
2963                                 found_prev = true;
2964                                 break;
2965                         }
2966                 }
2967         }
2968         assert!(found_prev);
2969
2970         let mut res = Vec::new();
2971         mem::swap(&mut *node_txn, &mut res);
2972         res
2973 }
2974
2975 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)  {
2976         let events_1 = nodes[a].node.get_and_clear_pending_msg_events();
2977         assert_eq!(events_1.len(), 2);
2978         let as_update = match events_1[0] {
2979                 MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
2980                         msg.clone()
2981                 },
2982                 _ => panic!("Unexpected event"),
2983         };
2984         match events_1[1] {
2985                 MessageSendEvent::HandleError { node_id, action: msgs::ErrorAction::SendErrorMessage { ref msg } } => {
2986                         assert_eq!(node_id, nodes[b].node.get_our_node_id());
2987                         assert_eq!(msg.data, expected_error);
2988                         if needs_err_handle {
2989                                 nodes[b].node.handle_error(&nodes[a].node.get_our_node_id(), msg);
2990                         }
2991                 },
2992                 MessageSendEvent::HandleError { node_id, action: msgs::ErrorAction::DisconnectPeer { ref msg } } => {
2993                         assert_eq!(node_id, nodes[b].node.get_our_node_id());
2994                         assert_eq!(msg.as_ref().unwrap().data, expected_error);
2995                         if needs_err_handle {
2996                                 nodes[b].node.handle_error(&nodes[a].node.get_our_node_id(), msg.as_ref().unwrap());
2997                         }
2998                 },
2999                 _ => panic!("Unexpected event"),
3000         }
3001
3002         let events_2 = nodes[b].node.get_and_clear_pending_msg_events();
3003         assert_eq!(events_2.len(), if needs_err_handle { 1 } else { 2 });
3004         let bs_update = match events_2[0] {
3005                 MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
3006                         msg.clone()
3007                 },
3008                 _ => panic!("Unexpected event"),
3009         };
3010         if !needs_err_handle {
3011                 match events_2[1] {
3012                         MessageSendEvent::HandleError { node_id, action: msgs::ErrorAction::SendErrorMessage { ref msg } } => {
3013                                 assert_eq!(node_id, nodes[a].node.get_our_node_id());
3014                                 assert_eq!(msg.data, expected_error);
3015                         },
3016                         MessageSendEvent::HandleError { node_id, action: msgs::ErrorAction::DisconnectPeer { ref msg } } => {
3017                                 assert_eq!(node_id, nodes[a].node.get_our_node_id());
3018                                 assert_eq!(msg.as_ref().unwrap().data, expected_error);
3019                         },
3020                         _ => panic!("Unexpected event"),
3021                 }
3022         }
3023
3024         for node in nodes {
3025                 node.gossip_sync.handle_channel_update(&as_update).unwrap();
3026                 node.gossip_sync.handle_channel_update(&bs_update).unwrap();
3027         }
3028 }
3029
3030 pub fn get_announce_close_broadcast_events<'a, 'b, 'c>(nodes: &Vec<Node<'a, 'b, 'c>>, a: usize, b: usize)  {
3031         handle_announce_close_broadcast_events(nodes, a, b, false, "Channel closed because commitment or closing transaction was confirmed on chain.");
3032 }
3033
3034 #[cfg(test)]
3035 macro_rules! get_channel_value_stat {
3036         ($node: expr, $counterparty_node: expr, $channel_id: expr) => {{
3037                 let peer_state_lock = $node.node.per_peer_state.read().unwrap();
3038                 let chan_lock = peer_state_lock.get(&$counterparty_node.node.get_our_node_id()).unwrap().lock().unwrap();
3039                 let chan = chan_lock.channel_by_id.get(&$channel_id).map(
3040                         |phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }
3041                 ).flatten().unwrap();
3042                 chan.get_value_stat()
3043         }}
3044 }
3045
3046 macro_rules! get_chan_reestablish_msgs {
3047         ($src_node: expr, $dst_node: expr) => {
3048                 {
3049                         let mut announcements = $crate::prelude::HashSet::new();
3050                         let mut res = Vec::with_capacity(1);
3051                         for msg in $src_node.node.get_and_clear_pending_msg_events() {
3052                                 if let MessageSendEvent::SendChannelReestablish { ref node_id, ref msg } = msg {
3053                                         assert_eq!(*node_id, $dst_node.node.get_our_node_id());
3054                                         res.push(msg.clone());
3055                                 } else if let MessageSendEvent::SendChannelAnnouncement { ref node_id, ref msg, .. } = msg {
3056                                         assert_eq!(*node_id, $dst_node.node.get_our_node_id());
3057                                         announcements.insert(msg.contents.short_channel_id);
3058                                 } else {
3059                                         panic!("Unexpected event")
3060                                 }
3061                         }
3062                         assert!(announcements.is_empty());
3063                         res
3064                 }
3065         }
3066 }
3067
3068 macro_rules! handle_chan_reestablish_msgs {
3069         ($src_node: expr, $dst_node: expr) => {
3070                 {
3071                         let msg_events = $src_node.node.get_and_clear_pending_msg_events();
3072                         let mut idx = 0;
3073                         let channel_ready = if let Some(&MessageSendEvent::SendChannelReady { ref node_id, ref msg }) = msg_events.get(0) {
3074                                 idx += 1;
3075                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
3076                                 Some(msg.clone())
3077                         } else {
3078                                 None
3079                         };
3080
3081                         if let Some(&MessageSendEvent::SendAnnouncementSignatures { ref node_id, msg: _ }) = msg_events.get(idx) {
3082                                 idx += 1;
3083                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
3084                         }
3085
3086                         let mut had_channel_update = false; // ChannelUpdate may be now or later, but not both
3087                         if let Some(&MessageSendEvent::SendChannelUpdate { ref node_id, .. }) = msg_events.get(idx) {
3088                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
3089                                 idx += 1;
3090                                 had_channel_update = true;
3091                         }
3092
3093                         let mut revoke_and_ack = None;
3094                         let mut commitment_update = None;
3095                         let order = if let Some(ev) = msg_events.get(idx) {
3096                                 match ev {
3097                                         &MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
3098                                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
3099                                                 revoke_and_ack = Some(msg.clone());
3100                                                 idx += 1;
3101                                                 RAACommitmentOrder::RevokeAndACKFirst
3102                                         },
3103                                         &MessageSendEvent::UpdateHTLCs { ref node_id, ref updates } => {
3104                                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
3105                                                 commitment_update = Some(updates.clone());
3106                                                 idx += 1;
3107                                                 RAACommitmentOrder::CommitmentFirst
3108                                         },
3109                                         _ => RAACommitmentOrder::CommitmentFirst,
3110                                 }
3111                         } else {
3112                                 RAACommitmentOrder::CommitmentFirst
3113                         };
3114
3115                         if let Some(ev) = msg_events.get(idx) {
3116                                 match ev {
3117                                         &MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
3118                                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
3119                                                 assert!(revoke_and_ack.is_none());
3120                                                 revoke_and_ack = Some(msg.clone());
3121                                                 idx += 1;
3122                                         },
3123                                         &MessageSendEvent::UpdateHTLCs { ref node_id, ref updates } => {
3124                                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
3125                                                 assert!(commitment_update.is_none());
3126                                                 commitment_update = Some(updates.clone());
3127                                                 idx += 1;
3128                                         },
3129                                         _ => {},
3130                                 }
3131                         }
3132
3133                         if let Some(&MessageSendEvent::SendChannelUpdate { ref node_id, .. }) = msg_events.get(idx) {
3134                                 assert_eq!(*node_id, $dst_node.node.get_our_node_id());
3135                                 idx += 1;
3136                                 assert!(!had_channel_update);
3137                         }
3138
3139                         assert_eq!(msg_events.len(), idx);
3140
3141                         (channel_ready, revoke_and_ack, commitment_update, order)
3142                 }
3143         }
3144 }
3145
3146 pub struct ReconnectArgs<'a, 'b, 'c, 'd> {
3147         pub node_a: &'a Node<'b, 'c, 'd>,
3148         pub node_b: &'a Node<'b, 'c, 'd>,
3149         pub send_channel_ready: (bool, bool),
3150         pub pending_responding_commitment_signed: (bool, bool),
3151         /// Indicates that the pending responding commitment signed will be a dup for the recipient,
3152         /// and no monitor update is expected
3153         pub pending_responding_commitment_signed_dup_monitor: (bool, bool),
3154         pub pending_htlc_adds: (usize, usize),
3155         pub pending_htlc_claims: (usize, usize),
3156         pub pending_htlc_fails: (usize, usize),
3157         pub pending_cell_htlc_claims: (usize, usize),
3158         pub pending_cell_htlc_fails: (usize, usize),
3159         pub pending_raa: (bool, bool),
3160 }
3161
3162 impl<'a, 'b, 'c, 'd> ReconnectArgs<'a, 'b, 'c, 'd> {
3163         pub fn new(node_a: &'a Node<'b, 'c, 'd>, node_b: &'a Node<'b, 'c, 'd>) -> Self {
3164                 Self {
3165                         node_a,
3166                         node_b,
3167                         send_channel_ready: (false, false),
3168                         pending_responding_commitment_signed: (false, false),
3169                         pending_responding_commitment_signed_dup_monitor: (false, false),
3170                         pending_htlc_adds: (0, 0),
3171                         pending_htlc_claims: (0, 0),
3172                         pending_htlc_fails: (0, 0),
3173                         pending_cell_htlc_claims: (0, 0),
3174                         pending_cell_htlc_fails: (0, 0),
3175                         pending_raa: (false, false),
3176                 }
3177         }
3178 }
3179
3180 /// pending_htlc_adds includes both the holding cell and in-flight update_add_htlcs, whereas
3181 /// for claims/fails they are separated out.
3182 pub fn reconnect_nodes<'a, 'b, 'c, 'd>(args: ReconnectArgs<'a, 'b, 'c, 'd>) {
3183         let ReconnectArgs {
3184                 node_a, node_b, send_channel_ready, pending_htlc_adds, pending_htlc_claims, pending_htlc_fails,
3185                 pending_cell_htlc_claims, pending_cell_htlc_fails, pending_raa,
3186                 pending_responding_commitment_signed, pending_responding_commitment_signed_dup_monitor,
3187         } = args;
3188         node_a.node.peer_connected(&node_b.node.get_our_node_id(), &msgs::Init {
3189                 features: node_b.node.init_features(), networks: None, remote_network_address: None
3190         }, true).unwrap();
3191         let reestablish_1 = get_chan_reestablish_msgs!(node_a, node_b);
3192         node_b.node.peer_connected(&node_a.node.get_our_node_id(), &msgs::Init {
3193                 features: node_a.node.init_features(), networks: None, remote_network_address: None
3194         }, false).unwrap();
3195         let reestablish_2 = get_chan_reestablish_msgs!(node_b, node_a);
3196
3197         if send_channel_ready.0 {
3198                 // If a expects a channel_ready, it better not think it has received a revoke_and_ack
3199                 // from b
3200                 for reestablish in reestablish_1.iter() {
3201                         let n = reestablish.next_remote_commitment_number;
3202                         assert_eq!(n, 0, "expected a->b next_remote_commitment_number to be 0, got {}", n);
3203                 }
3204         }
3205         if send_channel_ready.1 {
3206                 // If b expects a channel_ready, it better not think it has received a revoke_and_ack
3207                 // from a
3208                 for reestablish in reestablish_2.iter() {
3209                         let n = reestablish.next_remote_commitment_number;
3210                         assert_eq!(n, 0, "expected b->a next_remote_commitment_number to be 0, got {}", n);
3211                 }
3212         }
3213         if send_channel_ready.0 || send_channel_ready.1 {
3214                 // If we expect any channel_ready's, both sides better have set
3215                 // next_holder_commitment_number to 1
3216                 for reestablish in reestablish_1.iter() {
3217                         let n = reestablish.next_local_commitment_number;
3218                         assert_eq!(n, 1, "expected a->b next_local_commitment_number to be 1, got {}", n);
3219                 }
3220                 for reestablish in reestablish_2.iter() {
3221                         let n = reestablish.next_local_commitment_number;
3222                         assert_eq!(n, 1, "expected b->a next_local_commitment_number to be 1, got {}", n);
3223                 }
3224         }
3225
3226         let mut resp_1 = Vec::new();
3227         for msg in reestablish_1 {
3228                 node_b.node.handle_channel_reestablish(&node_a.node.get_our_node_id(), &msg);
3229                 resp_1.push(handle_chan_reestablish_msgs!(node_b, node_a));
3230         }
3231         if pending_cell_htlc_claims.0 != 0 || pending_cell_htlc_fails.0 != 0 {
3232                 check_added_monitors!(node_b, 1);
3233         } else {
3234                 check_added_monitors!(node_b, 0);
3235         }
3236
3237         let mut resp_2 = Vec::new();
3238         for msg in reestablish_2 {
3239                 node_a.node.handle_channel_reestablish(&node_b.node.get_our_node_id(), &msg);
3240                 resp_2.push(handle_chan_reestablish_msgs!(node_a, node_b));
3241         }
3242         if pending_cell_htlc_claims.1 != 0 || pending_cell_htlc_fails.1 != 0 {
3243                 check_added_monitors!(node_a, 1);
3244         } else {
3245                 check_added_monitors!(node_a, 0);
3246         }
3247
3248         // We don't yet support both needing updates, as that would require a different commitment dance:
3249         assert!((pending_htlc_adds.0 == 0 && pending_htlc_claims.0 == 0 && pending_htlc_fails.0 == 0 &&
3250                          pending_cell_htlc_claims.0 == 0 && pending_cell_htlc_fails.0 == 0) ||
3251                         (pending_htlc_adds.1 == 0 && pending_htlc_claims.1 == 0 && pending_htlc_fails.1 == 0 &&
3252                          pending_cell_htlc_claims.1 == 0 && pending_cell_htlc_fails.1 == 0));
3253
3254         for chan_msgs in resp_1.drain(..) {
3255                 if send_channel_ready.0 {
3256                         node_a.node.handle_channel_ready(&node_b.node.get_our_node_id(), &chan_msgs.0.unwrap());
3257                         let announcement_event = node_a.node.get_and_clear_pending_msg_events();
3258                         if !announcement_event.is_empty() {
3259                                 assert_eq!(announcement_event.len(), 1);
3260                                 if let MessageSendEvent::SendChannelUpdate { .. } = announcement_event[0] {
3261                                         //TODO: Test announcement_sigs re-sending
3262                                 } else { panic!("Unexpected event! {:?}", announcement_event[0]); }
3263                         }
3264                 } else {
3265                         assert!(chan_msgs.0.is_none());
3266                 }
3267                 if pending_raa.0 {
3268                         assert!(chan_msgs.3 == RAACommitmentOrder::RevokeAndACKFirst);
3269                         node_a.node.handle_revoke_and_ack(&node_b.node.get_our_node_id(), &chan_msgs.1.unwrap());
3270                         assert!(node_a.node.get_and_clear_pending_msg_events().is_empty());
3271                         check_added_monitors!(node_a, 1);
3272                 } else {
3273                         assert!(chan_msgs.1.is_none());
3274                 }
3275                 if pending_htlc_adds.0 != 0 || pending_htlc_claims.0 != 0 || pending_htlc_fails.0 != 0 ||
3276                         pending_cell_htlc_claims.0 != 0 || pending_cell_htlc_fails.0 != 0 ||
3277                         pending_responding_commitment_signed.0
3278                 {
3279                         let commitment_update = chan_msgs.2.unwrap();
3280                         assert_eq!(commitment_update.update_add_htlcs.len(), pending_htlc_adds.0);
3281                         assert_eq!(commitment_update.update_fulfill_htlcs.len(), pending_htlc_claims.0 + pending_cell_htlc_claims.0);
3282                         assert_eq!(commitment_update.update_fail_htlcs.len(), pending_htlc_fails.0 + pending_cell_htlc_fails.0);
3283                         assert!(commitment_update.update_fail_malformed_htlcs.is_empty());
3284                         for update_add in commitment_update.update_add_htlcs {
3285                                 node_a.node.handle_update_add_htlc(&node_b.node.get_our_node_id(), &update_add);
3286                         }
3287                         for update_fulfill in commitment_update.update_fulfill_htlcs {
3288                                 node_a.node.handle_update_fulfill_htlc(&node_b.node.get_our_node_id(), &update_fulfill);
3289                         }
3290                         for update_fail in commitment_update.update_fail_htlcs {
3291                                 node_a.node.handle_update_fail_htlc(&node_b.node.get_our_node_id(), &update_fail);
3292                         }
3293
3294                         if !pending_responding_commitment_signed.0 {
3295                                 commitment_signed_dance!(node_a, node_b, commitment_update.commitment_signed, false);
3296                         } else {
3297                                 node_a.node.handle_commitment_signed(&node_b.node.get_our_node_id(), &commitment_update.commitment_signed);
3298                                 check_added_monitors!(node_a, 1);
3299                                 let as_revoke_and_ack = get_event_msg!(node_a, MessageSendEvent::SendRevokeAndACK, node_b.node.get_our_node_id());
3300                                 // No commitment_signed so get_event_msg's assert(len == 1) passes
3301                                 node_b.node.handle_revoke_and_ack(&node_a.node.get_our_node_id(), &as_revoke_and_ack);
3302                                 assert!(node_b.node.get_and_clear_pending_msg_events().is_empty());
3303                                 check_added_monitors!(node_b, if pending_responding_commitment_signed_dup_monitor.0 { 0 } else { 1 });
3304                         }
3305                 } else {
3306                         assert!(chan_msgs.2.is_none());
3307                 }
3308         }
3309
3310         for chan_msgs in resp_2.drain(..) {
3311                 if send_channel_ready.1 {
3312                         node_b.node.handle_channel_ready(&node_a.node.get_our_node_id(), &chan_msgs.0.unwrap());
3313                         let announcement_event = node_b.node.get_and_clear_pending_msg_events();
3314                         if !announcement_event.is_empty() {
3315                                 assert_eq!(announcement_event.len(), 1);
3316                                 match announcement_event[0] {
3317                                         MessageSendEvent::SendChannelUpdate { .. } => {},
3318                                         MessageSendEvent::SendAnnouncementSignatures { .. } => {},
3319                                         _ => panic!("Unexpected event {:?}!", announcement_event[0]),
3320                                 }
3321                         }
3322                 } else {
3323                         assert!(chan_msgs.0.is_none());
3324                 }
3325                 if pending_raa.1 {
3326                         assert!(chan_msgs.3 == RAACommitmentOrder::RevokeAndACKFirst);
3327                         node_b.node.handle_revoke_and_ack(&node_a.node.get_our_node_id(), &chan_msgs.1.unwrap());
3328                         assert!(node_b.node.get_and_clear_pending_msg_events().is_empty());
3329                         check_added_monitors!(node_b, 1);
3330                 } else {
3331                         assert!(chan_msgs.1.is_none());
3332                 }
3333                 if pending_htlc_adds.1 != 0 || pending_htlc_claims.1 != 0 || pending_htlc_fails.1 != 0 ||
3334                         pending_cell_htlc_claims.1 != 0 || pending_cell_htlc_fails.1 != 0 ||
3335                         pending_responding_commitment_signed.1
3336                 {
3337                         let commitment_update = chan_msgs.2.unwrap();
3338                         assert_eq!(commitment_update.update_add_htlcs.len(), pending_htlc_adds.1);
3339                         assert_eq!(commitment_update.update_fulfill_htlcs.len(), pending_htlc_claims.1 + pending_cell_htlc_claims.1);
3340                         assert_eq!(commitment_update.update_fail_htlcs.len(), pending_htlc_fails.1 + pending_cell_htlc_fails.1);
3341                         assert!(commitment_update.update_fail_malformed_htlcs.is_empty());
3342                         for update_add in commitment_update.update_add_htlcs {
3343                                 node_b.node.handle_update_add_htlc(&node_a.node.get_our_node_id(), &update_add);
3344                         }
3345                         for update_fulfill in commitment_update.update_fulfill_htlcs {
3346                                 node_b.node.handle_update_fulfill_htlc(&node_a.node.get_our_node_id(), &update_fulfill);
3347                         }
3348                         for update_fail in commitment_update.update_fail_htlcs {
3349                                 node_b.node.handle_update_fail_htlc(&node_a.node.get_our_node_id(), &update_fail);
3350                         }
3351
3352                         if !pending_responding_commitment_signed.1 {
3353                                 commitment_signed_dance!(node_b, node_a, commitment_update.commitment_signed, false);
3354                         } else {
3355                                 node_b.node.handle_commitment_signed(&node_a.node.get_our_node_id(), &commitment_update.commitment_signed);
3356                                 check_added_monitors!(node_b, 1);
3357                                 let bs_revoke_and_ack = get_event_msg!(node_b, MessageSendEvent::SendRevokeAndACK, node_a.node.get_our_node_id());
3358                                 // No commitment_signed so get_event_msg's assert(len == 1) passes
3359                                 node_a.node.handle_revoke_and_ack(&node_b.node.get_our_node_id(), &bs_revoke_and_ack);
3360                                 assert!(node_a.node.get_and_clear_pending_msg_events().is_empty());
3361                                 check_added_monitors!(node_a, if pending_responding_commitment_signed_dup_monitor.1 { 0 } else { 1 });
3362                         }
3363                 } else {
3364                         assert!(chan_msgs.2.is_none());
3365                 }
3366         }
3367 }
3368
3369 /// Initiates channel opening and creates a single batch funding transaction.
3370 /// This will go through the open_channel / accept_channel flow, and return the batch funding
3371 /// transaction with corresponding funding_created messages.
3372 pub fn create_batch_channel_funding<'a, 'b, 'c>(
3373         funding_node: &Node<'a, 'b, 'c>,
3374         params: &[(&Node<'a, 'b, 'c>, u64, u64, u128, Option<UserConfig>)],
3375 ) -> (Transaction, Vec<msgs::FundingCreated>) {
3376         let mut tx_outs = Vec::new();
3377         let mut temp_chan_ids = Vec::new();
3378         let mut funding_created_msgs = Vec::new();
3379
3380         for (other_node, channel_value_satoshis, push_msat, user_channel_id, override_config) in params {
3381                 // Initialize channel opening.
3382                 let temp_chan_id = funding_node.node.create_channel(
3383                         other_node.node.get_our_node_id(), *channel_value_satoshis, *push_msat, *user_channel_id,
3384                         *override_config,
3385                 ).unwrap();
3386                 let open_channel_msg = get_event_msg!(funding_node, MessageSendEvent::SendOpenChannel, other_node.node.get_our_node_id());
3387                 other_node.node.handle_open_channel(&funding_node.node.get_our_node_id(), &open_channel_msg);
3388                 let accept_channel_msg = get_event_msg!(other_node, MessageSendEvent::SendAcceptChannel, funding_node.node.get_our_node_id());
3389                 funding_node.node.handle_accept_channel(&other_node.node.get_our_node_id(), &accept_channel_msg);
3390
3391                 // Create the corresponding funding output.
3392                 let events = funding_node.node.get_and_clear_pending_events();
3393                 assert_eq!(events.len(), 1);
3394                 match events[0] {
3395                         Event::FundingGenerationReady {
3396                                 ref temporary_channel_id,
3397                                 ref counterparty_node_id,
3398                                 channel_value_satoshis: ref event_channel_value_satoshis,
3399                                 ref output_script,
3400                                 user_channel_id: ref event_user_channel_id
3401                         } => {
3402                                 assert_eq!(temporary_channel_id, &temp_chan_id);
3403                                 assert_eq!(counterparty_node_id, &other_node.node.get_our_node_id());
3404                                 assert_eq!(channel_value_satoshis, event_channel_value_satoshis);
3405                                 assert_eq!(user_channel_id, event_user_channel_id);
3406                                 tx_outs.push(TxOut {
3407                                         value: *channel_value_satoshis, script_pubkey: output_script.clone(),
3408                                 });
3409                         },
3410                         _ => panic!("Unexpected event"),
3411                 };
3412                 temp_chan_ids.push((temp_chan_id, other_node.node.get_our_node_id()));
3413         }
3414
3415         // Compose the batch funding transaction and give it to the ChannelManager.
3416         let tx = Transaction {
3417                 version: 2,
3418                 lock_time: PackedLockTime::ZERO,
3419                 input: Vec::new(),
3420                 output: tx_outs,
3421         };
3422         assert!(funding_node.node.batch_funding_transaction_generated(
3423                 temp_chan_ids.iter().map(|(a, b)| (a, b)).collect::<Vec<_>>().as_slice(),
3424                 tx.clone(),
3425         ).is_ok());
3426         check_added_monitors!(funding_node, 0);
3427         let events = funding_node.node.get_and_clear_pending_msg_events();
3428         assert_eq!(events.len(), params.len());
3429         for (other_node, ..) in params {
3430                 let funding_created = events
3431                         .iter()
3432                         .find_map(|event| match event {
3433                                 MessageSendEvent::SendFundingCreated { node_id, msg } if node_id == &other_node.node.get_our_node_id() => Some(msg.clone()),
3434                                 _ => None,
3435                         })
3436                         .unwrap();
3437                 funding_created_msgs.push(funding_created);
3438         }
3439         return (tx, funding_created_msgs);
3440 }