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