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