4fcaf803e7e7071ec9d17007e65920cf1e4fcd01
[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                 self.latest_monitor_update_id.lock().unwrap().insert(funding_txo.to_channel_id(), (funding_txo, monitor.get_latest_update_id()));
75                 self.added_monitors.lock().unwrap().push((funding_txo, monitor));
76                 assert!(self.simple_monitor.add_monitor(funding_txo, new_monitor).is_ok());
77                 self.update_ret.lock().unwrap().clone()
78         }
79
80         fn update_monitor(&self, funding_txo: OutPoint, update: channelmonitor::ChannelMonitorUpdate) -> Result<(), channelmonitor::ChannelMonitorUpdateErr> {
81                 // Every monitor update should survive roundtrip
82                 let mut w = TestVecWriter(Vec::new());
83                 update.write(&mut w).unwrap();
84                 assert!(channelmonitor::ChannelMonitorUpdate::read(
85                                 &mut ::std::io::Cursor::new(&w.0)).unwrap() == update);
86
87                 self.latest_monitor_update_id.lock().unwrap().insert(funding_txo.to_channel_id(), (funding_txo, update.update_id));
88                 assert!(self.simple_monitor.update_monitor(funding_txo, update).is_ok());
89                 // At every point where we get a monitor update, we should be able to send a useful monitor
90                 // to a watchtower and disk...
91                 let monitors = self.simple_monitor.monitors.lock().unwrap();
92                 let monitor = monitors.get(&funding_txo).unwrap();
93                 w.0.clear();
94                 monitor.write_for_disk(&mut w).unwrap();
95                 let new_monitor = <(Sha256dHash, channelmonitor::ChannelMonitor<EnforcingChannelKeys>)>::read(
96                                 &mut ::std::io::Cursor::new(&w.0), Arc::new(TestLogger::new())).unwrap().1;
97                 assert!(new_monitor == *monitor);
98                 self.added_monitors.lock().unwrap().push((funding_txo, new_monitor));
99                 self.update_ret.lock().unwrap().clone()
100         }
101
102         fn get_and_clear_pending_htlcs_updated(&self) -> Vec<HTLCUpdate> {
103                 return self.simple_monitor.get_and_clear_pending_htlcs_updated();
104         }
105 }
106
107 pub struct TestBroadcaster {
108         pub txn_broadcasted: Mutex<Vec<Transaction>>,
109 }
110 impl chaininterface::BroadcasterInterface for TestBroadcaster {
111         fn broadcast_transaction(&self, tx: &Transaction) {
112                 self.txn_broadcasted.lock().unwrap().push(tx.clone());
113         }
114 }
115
116 pub struct TestChannelMessageHandler {
117         pub pending_events: Mutex<Vec<events::MessageSendEvent>>,
118 }
119
120 impl TestChannelMessageHandler {
121         pub fn new() -> Self {
122                 TestChannelMessageHandler {
123                         pending_events: Mutex::new(Vec::new()),
124                 }
125         }
126 }
127
128 impl msgs::ChannelMessageHandler for TestChannelMessageHandler {
129         fn handle_open_channel(&self, _their_node_id: &PublicKey, _their_features: InitFeatures, _msg: &msgs::OpenChannel) {}
130         fn handle_accept_channel(&self, _their_node_id: &PublicKey, _their_features: InitFeatures, _msg: &msgs::AcceptChannel) {}
131         fn handle_funding_created(&self, _their_node_id: &PublicKey, _msg: &msgs::FundingCreated) {}
132         fn handle_funding_signed(&self, _their_node_id: &PublicKey, _msg: &msgs::FundingSigned) {}
133         fn handle_funding_locked(&self, _their_node_id: &PublicKey, _msg: &msgs::FundingLocked) {}
134         fn handle_shutdown(&self, _their_node_id: &PublicKey, _msg: &msgs::Shutdown) {}
135         fn handle_closing_signed(&self, _their_node_id: &PublicKey, _msg: &msgs::ClosingSigned) {}
136         fn handle_update_add_htlc(&self, _their_node_id: &PublicKey, _msg: &msgs::UpdateAddHTLC) {}
137         fn handle_update_fulfill_htlc(&self, _their_node_id: &PublicKey, _msg: &msgs::UpdateFulfillHTLC) {}
138         fn handle_update_fail_htlc(&self, _their_node_id: &PublicKey, _msg: &msgs::UpdateFailHTLC) {}
139         fn handle_update_fail_malformed_htlc(&self, _their_node_id: &PublicKey, _msg: &msgs::UpdateFailMalformedHTLC) {}
140         fn handle_commitment_signed(&self, _their_node_id: &PublicKey, _msg: &msgs::CommitmentSigned) {}
141         fn handle_revoke_and_ack(&self, _their_node_id: &PublicKey, _msg: &msgs::RevokeAndACK) {}
142         fn handle_update_fee(&self, _their_node_id: &PublicKey, _msg: &msgs::UpdateFee) {}
143         fn handle_announcement_signatures(&self, _their_node_id: &PublicKey, _msg: &msgs::AnnouncementSignatures) {}
144         fn handle_channel_reestablish(&self, _their_node_id: &PublicKey, _msg: &msgs::ChannelReestablish) {}
145         fn peer_disconnected(&self, _their_node_id: &PublicKey, _no_connection_possible: bool) {}
146         fn peer_connected(&self, _their_node_id: &PublicKey, _msg: &msgs::Init) {}
147         fn handle_error(&self, _their_node_id: &PublicKey, _msg: &msgs::ErrorMessage) {}
148 }
149
150 impl events::MessageSendEventsProvider for TestChannelMessageHandler {
151         fn get_and_clear_pending_msg_events(&self) -> Vec<events::MessageSendEvent> {
152                 let mut pending_events = self.pending_events.lock().unwrap();
153                 let mut ret = Vec::new();
154                 mem::swap(&mut ret, &mut *pending_events);
155                 ret
156         }
157 }
158
159 pub struct TestRoutingMessageHandler {}
160
161 impl TestRoutingMessageHandler {
162         pub fn new() -> Self {
163                 TestRoutingMessageHandler {}
164         }
165 }
166 impl msgs::RoutingMessageHandler for TestRoutingMessageHandler {
167         fn handle_node_announcement(&self, _msg: &msgs::NodeAnnouncement) -> Result<bool, LightningError> {
168                 Err(LightningError { err: "", action: msgs::ErrorAction::IgnoreError })
169         }
170         fn handle_channel_announcement(&self, _msg: &msgs::ChannelAnnouncement) -> Result<bool, LightningError> {
171                 Err(LightningError { err: "", action: msgs::ErrorAction::IgnoreError })
172         }
173         fn handle_channel_update(&self, _msg: &msgs::ChannelUpdate) -> Result<bool, LightningError> {
174                 Err(LightningError { err: "", action: msgs::ErrorAction::IgnoreError })
175         }
176         fn handle_htlc_fail_channel_update(&self, _update: &msgs::HTLCFailChannelUpdate) {}
177         fn get_next_channel_announcements(&self, _starting_point: u64, _batch_amount: u8) -> Vec<(msgs::ChannelAnnouncement, Option<msgs::ChannelUpdate>, Option<msgs::ChannelUpdate>)> {
178                 Vec::new()
179         }
180         fn get_next_node_announcements(&self, _starting_point: Option<&PublicKey>, _batch_amount: u8) -> Vec<msgs::NodeAnnouncement> {
181                 Vec::new()
182         }
183         fn should_request_full_sync(&self, _node_id: &PublicKey) -> bool {
184                 true
185         }
186 }
187
188 pub struct TestLogger {
189         level: Level,
190         id: String,
191         pub lines: Mutex<HashMap<(String, String), usize>>,
192 }
193
194 impl TestLogger {
195         pub fn new() -> TestLogger {
196                 Self::with_id("".to_owned())
197         }
198         pub fn with_id(id: String) -> TestLogger {
199                 TestLogger {
200                         level: Level::Trace,
201                         id,
202                         lines: Mutex::new(HashMap::new())
203                 }
204         }
205         pub fn enable(&mut self, level: Level) {
206                 self.level = level;
207         }
208         pub fn assert_log(&self, module: String, line: String, count: usize) {
209                 let log_entries = self.lines.lock().unwrap();
210                 assert_eq!(log_entries.get(&(module, line)), Some(&count));
211         }
212 }
213
214 impl Logger for TestLogger {
215         fn log(&self, record: &Record) {
216                 *self.lines.lock().unwrap().entry((record.module_path.to_string(), format!("{}", record.args))).or_insert(0) += 1;
217                 if self.level >= record.level {
218                         println!("{:<5} {} [{} : {}, {}] {}", record.level.to_string(), self.id, record.module_path, record.file, record.line, record.args);
219                 }
220         }
221 }
222
223 pub struct TestKeysInterface {
224         backing: keysinterface::KeysManager,
225         pub override_session_priv: Mutex<Option<SecretKey>>,
226         pub override_channel_id_priv: Mutex<Option<[u8; 32]>>,
227 }
228
229 impl keysinterface::KeysInterface for TestKeysInterface {
230         type ChanKeySigner = EnforcingChannelKeys;
231
232         fn get_node_secret(&self) -> SecretKey { self.backing.get_node_secret() }
233         fn get_destination_script(&self) -> Script { self.backing.get_destination_script() }
234         fn get_shutdown_pubkey(&self) -> PublicKey { self.backing.get_shutdown_pubkey() }
235         fn get_channel_keys(&self, inbound: bool, channel_value_satoshis: u64) -> EnforcingChannelKeys {
236                 EnforcingChannelKeys::new(self.backing.get_channel_keys(inbound, channel_value_satoshis))
237         }
238
239         fn get_onion_rand(&self) -> (SecretKey, [u8; 32]) {
240                 match *self.override_session_priv.lock().unwrap() {
241                         Some(key) => (key.clone(), [0; 32]),
242                         None => self.backing.get_onion_rand()
243                 }
244         }
245
246         fn get_channel_id(&self) -> [u8; 32] {
247                 match *self.override_channel_id_priv.lock().unwrap() {
248                         Some(key) => key.clone(),
249                         None => self.backing.get_channel_id()
250                 }
251         }
252 }
253
254 impl TestKeysInterface {
255         pub fn new(seed: &[u8; 32], network: Network, logger: Arc<Logger>) -> Self {
256                 let now = SystemTime::now().duration_since(UNIX_EPOCH).expect("Time went backwards");
257                 Self {
258                         backing: keysinterface::KeysManager::new(seed, network, logger, now.as_secs(), now.subsec_nanos()),
259                         override_session_priv: Mutex::new(None),
260                         override_channel_id_priv: Mutex::new(None),
261                 }
262         }
263 }
264
265 pub struct TestChainWatcher {
266         pub utxo_ret: Mutex<Result<(Script, u64), ChainError>>,
267 }
268
269 impl TestChainWatcher {
270         pub fn new() -> Self {
271                 let script = Builder::new().push_opcode(opcodes::OP_TRUE).into_script();
272                 Self { utxo_ret: Mutex::new(Ok((script, u64::max_value()))) }
273         }
274 }
275
276 impl ChainWatchInterface for TestChainWatcher {
277         fn install_watch_tx(&self, _txid: &Sha256dHash, _script_pub_key: &Script) { }
278         fn install_watch_outpoint(&self, _outpoint: (Sha256dHash, u32), _out_script: &Script) { }
279         fn watch_all_txn(&self) { }
280         fn filter_block<'a>(&self, _block: &'a Block) -> (Vec<&'a Transaction>, Vec<u32>) {
281                 (Vec::new(), Vec::new())
282         }
283         fn reentered(&self) -> usize { 0 }
284
285         fn get_chain_utxo(&self, _genesis_hash: Sha256dHash, _unspent_tx_output_identifier: u64) -> Result<(Script, u64), ChainError> {
286                 self.utxo_ret.lock().unwrap().clone()
287         }
288 }