forked from citadel-tech/coinswap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
standard_swap.rs
427 lines (364 loc) · 12.7 KB
/
standard_swap.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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
#![cfg(feature = "integration-test")]
use bitcoin::Amount;
use coinswap::{
maker::{start_maker_server, MakerBehavior},
taker::SwapParams,
utill::ConnectionType,
wallet::{Destination, SendAmount},
};
use bitcoind::bitcoincore_rpc::RpcApi;
mod test_framework;
use test_framework::*;
use log::{info, warn};
use std::{assert_eq, thread, time::Duration};
/// This test demonstrates a standard coinswap round between a Taker and 2 Makers. Nothing goes wrong
/// and the coinswap completes successfully.
#[test]
fn test_standard_coinswap() {
// ---- Setup ----
// 2 Makers with Normal behavior.
let makers_config_map = [
((6102, Some(19051)), MakerBehavior::Normal),
((16102, Some(19052)), MakerBehavior::Normal),
];
let connection_type = if cfg!(target_os = "macos") {
ConnectionType::CLEARNET
} else {
ConnectionType::TOR
};
// Initiate test framework, Makers and a Taker with default behavior.
let (test_framework, taker, makers, directory_server_instance) =
TestFramework::init(None, makers_config_map.into(), None, connection_type);
warn!("Running Test: Standard Coinswap Procedure");
info!("Initiating Takers...");
// 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);
// --- Basic Checks ----
// Assert external address index reached to 4.
assert_eq!(taker.read().unwrap().get_wallet().get_external_index(), &3);
makers.iter().for_each(|maker| {
let next_external_index = *maker.get_wallet().read().unwrap().get_external_index();
assert_eq!(next_external_index, 4);
});
// Check if utxo list looks good.
// TODO: Assert other interesting things from the utxo list.
let mut all_utxos = taker.read().unwrap().get_wallet().get_all_utxo().unwrap();
let taker_no_of_descriptor_utxo_unspent = taker
.read()
.unwrap()
.get_wallet()
.list_descriptor_utxo_spend_info(Some(&all_utxos))
.unwrap()
.len();
let taker_no_of_fidelity_unspent = taker
.read()
.unwrap()
.get_wallet()
.list_fidelity_spend_info(Some(&all_utxos))
.unwrap()
.len();
let taker_no_of_swap_coin_unspent = taker
.read()
.unwrap()
.get_wallet()
.list_swap_coin_utxo_spend_info(Some(&all_utxos))
.unwrap()
.len();
let taker_no_of_live_contract_unspent = taker
.read()
.unwrap()
.get_wallet()
.list_live_contract_spend_info(Some(&all_utxos))
.unwrap()
.len();
assert_eq!(taker_no_of_descriptor_utxo_unspent, 3);
assert_eq!(taker_no_of_fidelity_unspent, 0);
assert_eq!(taker_no_of_swap_coin_unspent, 0);
assert_eq!(taker_no_of_live_contract_unspent, 0);
makers.iter().for_each(|maker| {
all_utxos = maker.get_wallet().read().unwrap().get_all_utxo().unwrap();
let maker_no_of_descriptor_utxo_unspent = maker
.get_wallet()
.read()
.unwrap()
.list_descriptor_utxo_spend_info(Some(&all_utxos))
.unwrap()
.len();
let maker_no_of_fidelity_unspent = maker
.get_wallet()
.read()
.unwrap()
.list_fidelity_spend_info(Some(&all_utxos))
.unwrap()
.len();
let maker_no_of_swap_coin_unspent = maker
.get_wallet()
.read()
.unwrap()
.list_swap_coin_utxo_spend_info(Some(&all_utxos))
.unwrap()
.len();
let maker_no_of_live_contract_unspent = maker
.get_wallet()
.read()
.unwrap()
.list_live_contract_spend_info(Some(&all_utxos))
.unwrap()
.len();
assert_eq!(maker_no_of_descriptor_utxo_unspent, 4);
assert_eq!(maker_no_of_fidelity_unspent, 0);
assert_eq!(maker_no_of_swap_coin_unspent, 0);
assert_eq!(maker_no_of_live_contract_unspent, 0);
});
// Check locking non-wallet utxos worked.
taker
.read()
.unwrap()
.get_wallet()
.lock_unspendable_utxos()
.unwrap();
makers.iter().for_each(|maker| {
maker
.get_wallet()
.read()
.unwrap()
.lock_unspendable_utxos()
.unwrap();
});
// ---- Start Servers and attempt Swap ----
info!("Initiating Maker...");
// 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.read().unwrap() {
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),
};
info!("Initiating coinswap protocol");
// Spawn a Taker coinswap thread.
let taker_clone = taker.clone();
let taker_thread = thread::spawn(move || {
taker_clone
.write()
.unwrap()
.do_coinswap(swap_params)
.unwrap();
});
// Wait for Taker swap thread to conclude.
taker_thread.join().unwrap();
// Wait for Maker threads to conclude.
makers.iter().for_each(|maker| maker.shutdown().unwrap());
maker_threads
.into_iter()
.for_each(|thread| thread.join().unwrap());
info!("All coinswaps processed successfully. Transaction complete.");
let _ = directory_server_instance.shutdown();
thread::sleep(Duration::from_secs(10));
// ---- After Swap Asserts ----
info!("Final Balance Checks for process");
// Check everybody hash 6 swapcoins.
assert_eq!(taker.read().unwrap().get_wallet().get_swapcoins_count(), 6);
makers.iter().for_each(|maker| {
let swapcoin_count = maker.get_wallet().read().unwrap().get_swapcoins_count();
assert_eq!(swapcoin_count, 6);
});
// Check balances makes sense
all_utxos = taker.read().unwrap().get_wallet().get_all_utxo().unwrap();
assert_eq!(all_utxos.len(), 12);
let taker_spendable_bal = taker
.read()
.unwrap()
.get_wallet()
.balance_descriptor_utxo(Some(&all_utxos))
.unwrap()
+ taker
.read()
.unwrap()
.get_wallet()
.balance_swap_coins(Some(&all_utxos))
.unwrap();
assert_eq!(taker_spendable_bal, Amount::from_btc(0.1498284).unwrap());
let taker_balance_fidelity = taker
.read()
.unwrap()
.get_wallet()
.balance_fidelity_bonds(Some(&all_utxos))
.unwrap();
let taker_balance_descriptor_utxo = taker
.read()
.unwrap()
.get_wallet()
.balance_descriptor_utxo(Some(&all_utxos))
.unwrap();
let taker_balance_swap_coins = taker
.read()
.unwrap()
.get_wallet()
.balance_swap_coins(Some(&all_utxos))
.unwrap();
let taker_balance_live_contract = taker
.read()
.unwrap()
.get_wallet()
.balance_live_contract(Some(&all_utxos))
.unwrap();
assert_eq!(
taker_balance_fidelity
+ taker_balance_descriptor_utxo
+ taker_balance_swap_coins
+ taker_balance_live_contract,
Amount::from_btc(0.1498284).unwrap()
);
assert_eq!(
taker_balance_descriptor_utxo,
Amount::from_btc(0.14497).unwrap()
);
assert_eq!(
taker_balance_swap_coins,
Amount::from_btc(0.0048584).unwrap()
);
assert_eq!(taker_balance_fidelity, Amount::from_btc(0.0).unwrap());
assert_eq!(taker_balance_live_contract, Amount::from_btc(0.0).unwrap());
makers.iter().for_each(|maker| {
all_utxos = maker.get_wallet().read().unwrap().get_all_utxo().unwrap();
assert_eq!(all_utxos.len(), 10);
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 maker_total_balance = maker.get_wallet().read().unwrap().balance().unwrap();
assert!(
maker_total_balance == Amount::from_btc(0.20003044).unwrap()
|| maker_total_balance == Amount::from_btc(0.20003116).unwrap(),
"maker total balance didn't match any of the expected values"
);
assert!(
maker_balance_descriptor_utxo == Amount::from_btc(0.14503116).unwrap()
|| maker_balance_descriptor_utxo == Amount::from_btc(0.1451016).unwrap(),
"maker_balance_descriptor_utxo does not match any of the expected values"
);
assert!(
maker_balance_swap_coins == Amount::from_btc(0.00492884).unwrap()
|| maker_balance_swap_coins == Amount::from_btc(0.005).unwrap(),
"maker_balance_swap_coins does not match any of the expected values"
);
assert_eq!(maker_balance_fidelity, Amount::from_btc(0.05).unwrap());
assert_eq!(maker_balance_live_contract, Amount::from_btc(0.0).unwrap());
let maker_spendable_balance = maker_balance_descriptor_utxo + maker_balance_swap_coins;
assert!(
maker_spendable_balance == Amount::from_btc(0.15003116).unwrap()
|| maker_spendable_balance == Amount::from_btc(0.15003044).unwrap(),
"maker spendable balance didn't match any of the expected values"
);
});
info!("Balance check successful.");
// Check spending from swapcoins.
info!("Checking Spend from Swapcoin");
let swap_coins = taker
.read()
.unwrap()
.get_wallet()
.list_swap_coin_utxo_spend_info(None)
.unwrap();
let tx = taker
.write()
.unwrap()
.get_wallet_mut()
.spend_from_wallet(
Amount::from_sat(1000),
SendAmount::Max,
Destination::Wallet,
&swap_coins,
)
.unwrap();
assert_eq!(
tx.input.len(),
3,
"Not all swap coin utxos got included in the spend transaction"
);
test_framework
.get_client()
.send_raw_transaction(&tx)
.unwrap();
test_framework.generate_blocks(1);
taker.write().unwrap().get_wallet_mut().sync().unwrap();
let taker_read = taker.read().unwrap();
let swap_coin_bal = taker_read.get_wallet().balance_swap_coins(None).unwrap();
let descriptor_bal = taker_read
.get_wallet()
.balance_descriptor_utxo(None)
.unwrap();
assert_eq!(swap_coin_bal, Amount::ZERO);
assert_eq!(descriptor_bal, Amount::from_btc(0.1498184).unwrap());
info!("All checks successful. Terminating integration test case");
test_framework.stop();
}