13cbde4aa1fe35c24702d277a48b310c77d08490
[rust-lightning] / lightning / src / util / test_utils.rs
1 use chain::chaininterface;
2 use chain::chaininterface::{ConfirmationTarget, ChainError, ChainWatchInterface};
3 use chain::transaction::OutPoint;
4 use chain::keysinterface;
5 use ln::channelmonitor;
6 use ln::features::InitFeatures;
7 use ln::msgs;
8 use ln::msgs::LightningError;
9 use ln::channelmonitor::HTLCUpdate;
10 use util::enforcing_trait_impls::EnforcingChannelKeys;
11 use util::events;
12 use util::logger::{Logger, Level, Record};
13 use util::ser::{Readable, ReadableArgs, Writer, Writeable};
14
15 use bitcoin::blockdata::transaction::Transaction;
16 use bitcoin::blockdata::script::{Builder, Script};
17 use bitcoin::blockdata::block::Block;
18 use bitcoin::blockdata::opcodes;
19 use bitcoin_hashes::sha256d::Hash as Sha256dHash;
20 use bitcoin::network::constants::Network;
21
22 use secp256k1::{SecretKey, PublicKey};
23
24 use std::time::{SystemTime, UNIX_EPOCH};
25 use std::sync::{Arc,Mutex};
26 use std::{mem};
27 use std::collections::HashMap;
28
29 pub struct TestVecWriter(pub Vec<u8>);
30 impl Writer for TestVecWriter {
31         fn write_all(&mut self, buf: &[u8]) -> Result<(), ::std::io::Error> {
32                 self.0.extend_from_slice(buf);
33                 Ok(())
34         }
35         fn size_hint(&mut self, size: usize) {
36                 self.0.reserve_exact(size);
37         }
38 }
39
40 pub struct TestFeeEstimator {
41         pub sat_per_kw: u64,
42 }
43 impl chaininterface::FeeEstimator for TestFeeEstimator {
44         fn get_est_sat_per_1000_weight(&self, _confirmation_target: ConfirmationTarget) -> u64 {
45                 self.sat_per_kw
46         }
47 }
48
49 pub struct TestChannelMonitor<'a> {
50         pub added_monitors: Mutex<Vec<(OutPoint, channelmonitor::ChannelMonitor<EnforcingChannelKeys>)>>,
51         pub latest_monitor_update_id: Mutex<HashMap<[u8; 32], (OutPoint, u64)>>,
52         pub simple_monitor: channelmonitor::SimpleManyChannelMonitor<OutPoint, EnforcingChannelKeys, &'a chaininterface::BroadcasterInterface, &'a TestFeeEstimator>,
53         pub update_ret: Mutex<Result<(), channelmonitor::ChannelMonitorUpdateErr>>,
54 }
55 impl<'a> TestChannelMonitor<'a> {
56         pub fn new(chain_monitor: Arc<chaininterface::ChainWatchInterface>, broadcaster: &'a chaininterface::BroadcasterInterface, logger: Arc<Logger>, fee_estimator: &'a TestFeeEstimator) -> Self {
57                 Self {
58                         added_monitors: Mutex::new(Vec::new()),
59                         latest_monitor_update_id: Mutex::new(HashMap::new()),
60                         simple_monitor: channelmonitor::SimpleManyChannelMonitor::new(chain_monitor, broadcaster, logger, fee_estimator),
61                         update_ret: Mutex::new(Ok(())),
62                 }
63         }
64 }
65 impl<'a> channelmonitor::ManyChannelMonitor<EnforcingChannelKeys> for TestChannelMonitor<'a> {
66         fn add_monitor(&self, funding_txo: OutPoint, monitor: channelmonitor::ChannelMonitor<EnforcingChannelKeys>) -> Result<(), channelmonitor::ChannelMonitorUpdateErr> {
67                 // At every point where we get a monitor update, we should be able to send a useful monitor
68                 // to a watchtower and disk...
69                 let mut w = TestVecWriter(Vec::new());
70                 monitor.write_for_disk(&mut w).unwrap();
71                 let new_monitor = <(Sha256dHash, channelmonitor::ChannelMonitor<EnforcingChannelKeys>)>::read(
72                                 &mut ::std::io::Cursor::new(&w.0), Arc::new(TestLogger::new())).unwrap().1;
73                 assert!(new_monitor == monitor);
74                 w.0.clear();
75                 monitor.write_for_watchtower(&mut w).unwrap(); // This at least shouldn't crash...
76                 self.latest_monitor_update_id.lock().unwrap().insert(funding_txo.to_channel_id(), (funding_txo, monitor.get_latest_update_id()));
77                 self.added_monitors.lock().unwrap().push((funding_txo, monitor));
78                 assert!(self.simple_monitor.add_monitor(funding_txo, new_monitor).is_ok());
79                 self.update_ret.lock().unwrap().clone()
80         }
81
82         fn update_monitor(&self, funding_txo: OutPoint, update: channelmonitor::ChannelMonitorUpdate) -> Result<(), channelmonitor::ChannelMonitorUpdateErr> {
83                 // Every monitor update should survive roundtrip
84                 let mut w = TestVecWriter(Vec::new());
85                 update.write(&mut w).unwrap();
86                 assert!(channelmonitor::ChannelMonitorUpdate::read(
87                                 &mut ::std::io::Cursor::new(&w.0)).unwrap() == update);
88
89                 self.latest_monitor_update_id.lock().unwrap().insert(funding_txo.to_channel_id(), (funding_txo, update.update_id));
90                 assert!(self.simple_monitor.update_monitor(funding_txo, update).is_ok());
91                 // At every point where we get a monitor update, we should be able to send a useful monitor
92                 // to a watchtower and disk...
93                 let monitors = self.simple_monitor.monitors.lock().unwrap();
94                 let monitor = monitors.get(&funding_txo).unwrap();
95                 w.0.clear();
96                 monitor.write_for_disk(&mut w).unwrap();
97                 let new_monitor = <(Sha256dHash, channelmonitor::ChannelMonitor<EnforcingChannelKeys>)>::read(
98                                 &mut ::std::io::Cursor::new(&w.0), Arc::new(TestLogger::new())).unwrap().1;
99                 assert!(new_monitor == *monitor);
100                 w.0.clear();
101                 monitor.write_for_watchtower(&mut w).unwrap(); // This at least shouldn't crash...
102                 self.added_monitors.lock().unwrap().push((funding_txo, new_monitor));
103                 self.update_ret.lock().unwrap().clone()
104         }
105
106         fn get_and_clear_pending_htlcs_updated(&self) -> Vec<HTLCUpdate> {
107                 return self.simple_monitor.get_and_clear_pending_htlcs_updated();
108         }
109 }
110
111 pub struct TestBroadcaster {
112         pub txn_broadcasted: Mutex<Vec<Transaction>>,
113 }
114 impl chaininterface::BroadcasterInterface for TestBroadcaster {
115         fn broadcast_transaction(&self, tx: &Transaction) {
116                 self.txn_broadcasted.lock().unwrap().push(tx.clone());
117         }
118 }
119
120 pub struct TestChannelMessageHandler {
121         pub pending_events: Mutex<Vec<events::MessageSendEvent>>,
122 }
123
124 impl TestChannelMessageHandler {
125         pub fn new() -> Self {
126                 TestChannelMessageHandler {
127                         pending_events: Mutex::new(Vec::new()),
128                 }
129         }
130 }
131
132 impl msgs::ChannelMessageHandler for TestChannelMessageHandler {
133         fn handle_open_channel(&self, _their_node_id: &PublicKey, _their_features: InitFeatures, _msg: &msgs::OpenChannel) {}
134         fn handle_accept_channel(&self, _their_node_id: &PublicKey, _their_features: InitFeatures, _msg: &msgs::AcceptChannel) {}
135         fn handle_funding_created(&self, _their_node_id: &PublicKey, _msg: &msgs::FundingCreated) {}
136         fn handle_funding_signed(&self, _their_node_id: &PublicKey, _msg: &msgs::FundingSigned) {}
137         fn handle_funding_locked(&self, _their_node_id: &PublicKey, _msg: &msgs::FundingLocked) {}
138         fn handle_shutdown(&self, _their_node_id: &PublicKey, _msg: &msgs::Shutdown) {}
139         fn handle_closing_signed(&self, _their_node_id: &PublicKey, _msg: &msgs::ClosingSigned) {}
140         fn handle_update_add_htlc(&self, _their_node_id: &PublicKey, _msg: &msgs::UpdateAddHTLC) {}
141         fn handle_update_fulfill_htlc(&self, _their_node_id: &PublicKey, _msg: &msgs::UpdateFulfillHTLC) {}
142         fn handle_update_fail_htlc(&self, _their_node_id: &PublicKey, _msg: &msgs::UpdateFailHTLC) {}
143         fn handle_update_fail_malformed_htlc(&self, _their_node_id: &PublicKey, _msg: &msgs::UpdateFailMalformedHTLC) {}
144         fn handle_commitment_signed(&self, _their_node_id: &PublicKey, _msg: &msgs::CommitmentSigned) {}
145         fn handle_revoke_and_ack(&self, _their_node_id: &PublicKey, _msg: &msgs::RevokeAndACK) {}
146         fn handle_update_fee(&self, _their_node_id: &PublicKey, _msg: &msgs::UpdateFee) {}
147         fn handle_announcement_signatures(&self, _their_node_id: &PublicKey, _msg: &msgs::AnnouncementSignatures) {}
148         fn handle_channel_reestablish(&self, _their_node_id: &PublicKey, _msg: &msgs::ChannelReestablish) {}
149         fn peer_disconnected(&self, _their_node_id: &PublicKey, _no_connection_possible: bool) {}
150         fn peer_connected(&self, _their_node_id: &PublicKey, _msg: &msgs::Init) {}
151         fn handle_error(&self, _their_node_id: &PublicKey, _msg: &msgs::ErrorMessage) {}
152 }
153
154 impl events::MessageSendEventsProvider for TestChannelMessageHandler {
155         fn get_and_clear_pending_msg_events(&self) -> Vec<events::MessageSendEvent> {
156                 let mut pending_events = self.pending_events.lock().unwrap();
157                 let mut ret = Vec::new();
158                 mem::swap(&mut ret, &mut *pending_events);
159                 ret
160         }
161 }
162
163 pub struct TestRoutingMessageHandler {}
164
165 impl TestRoutingMessageHandler {
166         pub fn new() -> Self {
167                 TestRoutingMessageHandler {}
168         }
169 }
170 impl msgs::RoutingMessageHandler for TestRoutingMessageHandler {
171         fn handle_node_announcement(&self, _msg: &msgs::NodeAnnouncement) -> Result<bool, LightningError> {
172                 Err(LightningError { err: "", action: msgs::ErrorAction::IgnoreError })
173         }
174         fn handle_channel_announcement(&self, _msg: &msgs::ChannelAnnouncement) -> Result<bool, LightningError> {
175                 Err(LightningError { err: "", action: msgs::ErrorAction::IgnoreError })
176         }
177         fn handle_channel_update(&self, _msg: &msgs::ChannelUpdate) -> Result<bool, LightningError> {
178                 Err(LightningError { err: "", action: msgs::ErrorAction::IgnoreError })
179         }
180         fn handle_htlc_fail_channel_update(&self, _update: &msgs::HTLCFailChannelUpdate) {}
181         fn get_next_channel_announcements(&self, _starting_point: u64, _batch_amount: u8) -> Vec<(msgs::ChannelAnnouncement, Option<msgs::ChannelUpdate>, Option<msgs::ChannelUpdate>)> {
182                 Vec::new()
183         }
184         fn get_next_node_announcements(&self, _starting_point: Option<&PublicKey>, _batch_amount: u8) -> Vec<msgs::NodeAnnouncement> {
185                 Vec::new()
186         }
187         fn should_request_full_sync(&self, _node_id: &PublicKey) -> bool {
188                 true
189         }
190 }
191
192 pub struct TestLogger {
193         level: Level,
194         id: String,
195         pub lines: Mutex<HashMap<(String, String), usize>>,
196 }
197
198 impl TestLogger {
199         pub fn new() -> TestLogger {
200                 Self::with_id("".to_owned())
201         }
202         pub fn with_id(id: String) -> TestLogger {
203                 TestLogger {
204                         level: Level::Trace,
205                         id,
206                         lines: Mutex::new(HashMap::new())
207                 }
208         }
209         pub fn enable(&mut self, level: Level) {
210                 self.level = level;
211         }
212         pub fn assert_log(&self, module: String, line: String, count: usize) {
213                 let log_entries = self.lines.lock().unwrap();
214                 assert_eq!(log_entries.get(&(module, line)), Some(&count));
215         }
216 }
217
218 impl Logger for TestLogger {
219         fn log(&self, record: &Record) {
220                 *self.lines.lock().unwrap().entry((record.module_path.to_string(), format!("{}", record.args))).or_insert(0) += 1;
221                 if self.level >= record.level {
222                         println!("{:<5} {} [{} : {}, {}] {}", record.level.to_string(), self.id, record.module_path, record.file, record.line, record.args);
223                 }
224         }
225 }
226
227 pub struct TestKeysInterface {
228         backing: keysinterface::KeysManager,
229         pub override_session_priv: Mutex<Option<SecretKey>>,
230         pub override_channel_id_priv: Mutex<Option<[u8; 32]>>,
231 }
232
233 impl keysinterface::KeysInterface for TestKeysInterface {
234         type ChanKeySigner = EnforcingChannelKeys;
235
236         fn get_node_secret(&self) -> SecretKey { self.backing.get_node_secret() }
237         fn get_destination_script(&self) -> Script { self.backing.get_destination_script() }
238         fn get_shutdown_pubkey(&self) -> PublicKey { self.backing.get_shutdown_pubkey() }
239         fn get_channel_keys(&self, inbound: bool, channel_value_satoshis: u64) -> EnforcingChannelKeys {
240                 EnforcingChannelKeys::new(self.backing.get_channel_keys(inbound, channel_value_satoshis))
241         }
242
243         fn get_onion_rand(&self) -> (SecretKey, [u8; 32]) {
244                 match *self.override_session_priv.lock().unwrap() {
245                         Some(key) => (key.clone(), [0; 32]),
246                         None => self.backing.get_onion_rand()
247                 }
248         }
249
250         fn get_channel_id(&self) -> [u8; 32] {
251                 match *self.override_channel_id_priv.lock().unwrap() {
252                         Some(key) => key.clone(),
253                         None => self.backing.get_channel_id()
254                 }
255         }
256 }
257
258 impl TestKeysInterface {
259         pub fn new(seed: &[u8; 32], network: Network, logger: Arc<Logger>) -> Self {
260                 let now = SystemTime::now().duration_since(UNIX_EPOCH).expect("Time went backwards");
261                 Self {
262                         backing: keysinterface::KeysManager::new(seed, network, logger, now.as_secs(), now.subsec_nanos()),
263                         override_session_priv: Mutex::new(None),
264                         override_channel_id_priv: Mutex::new(None),
265                 }
266         }
267 }
268
269 pub struct TestChainWatcher {
270         pub utxo_ret: Mutex<Result<(Script, u64), ChainError>>,
271 }
272
273 impl TestChainWatcher {
274         pub fn new() -> Self {
275                 let script = Builder::new().push_opcode(opcodes::OP_TRUE).into_script();
276                 Self { utxo_ret: Mutex::new(Ok((script, u64::max_value()))) }
277         }
278 }
279
280 impl ChainWatchInterface for TestChainWatcher {
281         fn install_watch_tx(&self, _txid: &Sha256dHash, _script_pub_key: &Script) { }
282         fn install_watch_outpoint(&self, _outpoint: (Sha256dHash, u32), _out_script: &Script) { }
283         fn watch_all_txn(&self) { }
284         fn filter_block<'a>(&self, _block: &'a Block) -> (Vec<&'a Transaction>, Vec<u32>) {
285                 (Vec::new(), Vec::new())
286         }
287         fn reentered(&self) -> usize { 0 }
288
289         fn get_chain_utxo(&self, _genesis_hash: Sha256dHash, _unspent_tx_output_identifier: u64) -> Result<(Script, u64), ChainError> {
290                 self.utxo_ret.lock().unwrap().clone()
291         }
292 }