forked from bitcoin-teleport/teleport-transactions
-
Notifications
You must be signed in to change notification settings - Fork 47
/
abort2_case2.rs
308 lines (273 loc) · 10.4 KB
/
abort2_case2.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
#![cfg(feature = "integration-test")]
use bitcoin::Amount;
use coinswap::{
maker::{start_maker_server, MakerBehavior},
taker::SwapParams,
utill::ConnectionType,
};
mod test_framework;
use test_framework::*;
use log::{info, warn};
use std::{
fs::File, io::Read, path::PathBuf, sync::atomic::Ordering::Relaxed, thread, time::Duration,
};
/// ABORT 2: Maker Drops Before Setup
/// This test demonstrates the situation where a Maker prematurely drops connections after doing
/// initial protocol handshake. This should not necessarily disrupt the round, the Taker will try to find
/// more makers in his address book and carry on as usual. The Taker will mark this Maker as "bad" and will
/// not swap this maker again.
///
/// CASE 2: Maker Drops Before Sending Sender's Signature, and Taker cannot find a new Maker, recovers from Swap.
#[test]
fn test_abort_case_2_recover_if_no_makers_found() {
// ---- Setup ----
// 6102 is naughty. And theres not enough makers.
let makers_config_map = [
((6102, None), MakerBehavior::CloseAtReqContractSigsForSender),
((16102, None), MakerBehavior::Normal),
];
warn!(
"Running test: Maker 6102 Closes before sending sender's sigs. Taker recovers. Or Swap cancels"
);
warn!(
"Running test: Maker 6102 Closes before sending sender's sigs. Taker recovers. Or Swap cancels"
);
// Initiate test framework, Makers.
// Taker has normal behavior.
let (test_framework, taker, makers, directory_server_instance) = TestFramework::init(
None,
makers_config_map.into(),
None,
ConnectionType::CLEARNET,
);
// Fund the Taker and Makers with 3 utxos of 0.05 btc each.
for _ in 0..3 {
let taker_address = taker
.write()
.unwrap()
.get_wallet_mut()
.get_next_external_address()
.unwrap();
test_framework.send_to_address(&taker_address, Amount::from_btc(0.05).unwrap());
makers.iter().for_each(|maker| {
let maker_addrs = maker
.get_wallet()
.write()
.unwrap()
.get_next_external_address()
.unwrap();
test_framework.send_to_address(&maker_addrs, Amount::from_btc(0.05).unwrap());
});
}
// Coins for fidelity creation
makers.iter().for_each(|maker| {
let maker_addrs = maker
.get_wallet()
.write()
.unwrap()
.get_next_external_address()
.unwrap();
test_framework.send_to_address(&maker_addrs, Amount::from_btc(0.05).unwrap());
});
// confirm balances
test_framework.generate_blocks(1);
let mut all_utxos = taker.read().unwrap().get_wallet().get_all_utxo().unwrap();
// Get the original balances
let org_taker_balance_descriptor_utxo = taker
.read()
.unwrap()
.get_wallet()
.balance_descriptor_utxo(Some(&all_utxos))
.unwrap();
let org_taker_balance_swap_coins = taker
.read()
.unwrap()
.get_wallet()
.balance_swap_coins(Some(&all_utxos))
.unwrap();
let org_taker_balance = org_taker_balance_descriptor_utxo + org_taker_balance_swap_coins;
// ---- Start Servers and attempt Swap ----
// Start the Maker server threads
let maker_threads = makers
.iter()
.map(|maker| {
let maker_clone = maker.clone();
thread::spawn(move || {
start_maker_server(maker_clone).unwrap();
})
})
.collect::<Vec<_>>();
// Start swap
// Makers take time to fully setup.
makers.iter().for_each(|maker| {
while !maker.is_setup_complete.load(Relaxed) {
log::info!("Waiting for maker setup completion");
// Introduce a delay of 10 seconds to prevent write lock starvation.
thread::sleep(Duration::from_secs(10));
continue;
}
});
let swap_params = SwapParams {
send_amount: Amount::from_sat(500000),
maker_count: 2,
tx_count: 3,
required_confirms: 1,
fee_rate: Amount::from_sat(1000),
};
// Calculate Original balance excluding fidelity bonds.
// Bonds are created automatically after spawning the maker server.
let org_maker_balances = makers
.iter()
.map(|maker| {
all_utxos = maker.get_wallet().read().unwrap().get_all_utxo().unwrap();
let maker_balance_fidelity = maker
.get_wallet()
.read()
.unwrap()
.balance_fidelity_bonds(Some(&all_utxos))
.unwrap();
let maker_balance_descriptor_utxo = maker
.get_wallet()
.read()
.unwrap()
.balance_descriptor_utxo(Some(&all_utxos))
.unwrap();
let maker_balance_swap_coins = maker
.get_wallet()
.read()
.unwrap()
.balance_swap_coins(Some(&all_utxos))
.unwrap();
let maker_balance_live_contract = maker
.get_wallet()
.read()
.unwrap()
.balance_live_contract(Some(&all_utxos))
.unwrap();
assert_eq!(maker_balance_fidelity, Amount::from_btc(0.05).unwrap());
assert_eq!(
maker_balance_descriptor_utxo,
Amount::from_btc(0.14999).unwrap()
);
assert_eq!(maker_balance_swap_coins, Amount::from_btc(0.0).unwrap());
assert_eq!(maker_balance_live_contract, Amount::from_btc(0.0).unwrap());
(
maker_balance_fidelity,
maker_balance_descriptor_utxo,
maker_balance_swap_coins,
maker_balance_live_contract,
maker_balance_descriptor_utxo + maker_balance_swap_coins,
)
})
.collect::<Vec<_>>();
// Spawn a Taker coinswap thread.
let taker_clone = taker.clone();
let taker_thread = thread::spawn(move || taker_clone.write().unwrap().do_coinswap(swap_params));
// Wait for Taker swap thread to conclude.
// The whole swap can fail if 6102 happens to be the first peer.
// In that the swap isn't feasible, and user should modify SwapParams::maker_count.
if let Err(e) = taker_thread.join().unwrap() {
assert_eq!(format!("{:?}", e), "NotEnoughMakersInOfferBook".to_string());
info!("Coinswap failed because the first maker rejected for signature");
}
// Wait for Maker threads to conclude.
makers
.iter()
.for_each(|maker| maker.shutdown.store(true, Relaxed));
maker_threads
.into_iter()
.for_each(|thread| thread.join().unwrap());
// ---- After Swap checks ----
directory_server_instance.shutdown.store(true, Relaxed);
thread::sleep(Duration::from_secs(10));
// Maker gets banned for being naughty.
match taker.read().unwrap().config.connection_type {
ConnectionType::CLEARNET => {
assert_eq!(
format!("127.0.0.1:{}", 6102),
taker.read().unwrap().get_bad_makers()[0]
.address
.to_string()
);
}
ConnectionType::TOR => {
let onion_addr_path =
PathBuf::from(format!("/tmp/tor-rust-maker{}/hs-dir/hostname", 6102));
let mut file = File::open(onion_addr_path).unwrap();
let mut onion_addr: String = String::new();
file.read_to_string(&mut onion_addr).unwrap();
onion_addr.pop();
assert_eq!(
format!("{}:{}", onion_addr, 6102),
taker.read().unwrap().get_bad_makers()[0]
.address
.to_string()
);
}
}
all_utxos = taker.read().unwrap().get_wallet().get_all_utxo().unwrap();
// Assert that Taker burned the mining fees,
// Makers are fine.
let new_taker_balance_descriptor_utxo = taker
.read()
.unwrap()
.get_wallet()
.balance_descriptor_utxo(Some(&all_utxos))
.unwrap();
let new_taker_balance_swap_coins = taker
.read()
.unwrap()
.get_wallet()
.balance_swap_coins(Some(&all_utxos))
.unwrap();
let new_taker_balance = new_taker_balance_descriptor_utxo + new_taker_balance_swap_coins;
// Balance will not differ if the first maker drops and swap doesn't take place.
// The recovery will happen only if the 2nd maker drops, which has 50% probabiltiy.
// Only do this assert if the balance differs, implying that the swap took place.
if new_taker_balance != org_taker_balance {
assert_eq!(
org_taker_balance - new_taker_balance,
Amount::from_sat(6768)
);
}
makers
.iter()
.zip(org_maker_balances.iter())
.for_each(|(maker, org_balance)| {
all_utxos = maker.get_wallet().read().unwrap().get_all_utxo().unwrap();
let maker_balance_fidelity = maker
.get_wallet()
.read()
.unwrap()
.balance_fidelity_bonds(Some(&all_utxos))
.unwrap();
let maker_balance_descriptor_utxo = maker
.get_wallet()
.read()
.unwrap()
.balance_descriptor_utxo(Some(&all_utxos))
.unwrap();
let maker_balance_swap_coins = maker
.get_wallet()
.read()
.unwrap()
.balance_swap_coins(Some(&all_utxos))
.unwrap();
let maker_balance_live_contract = maker
.get_wallet()
.read()
.unwrap()
.balance_live_contract(Some(&all_utxos))
.unwrap();
let new_balance = maker_balance_descriptor_utxo + maker_balance_swap_coins;
assert_eq!(org_balance.4 - new_balance, Amount::from_sat(0));
assert_eq!(maker_balance_fidelity, Amount::from_btc(0.05).unwrap());
assert_eq!(
maker_balance_descriptor_utxo,
Amount::from_btc(0.14999).unwrap()
);
assert_eq!(maker_balance_swap_coins, Amount::from_btc(0.0).unwrap());
assert_eq!(maker_balance_live_contract, Amount::from_btc(0.0).unwrap());
});
test_framework.stop();
}