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