forked from bitcoin-teleport/teleport-transactions
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathabort1.rs
176 lines (152 loc) · 7 KB
/
abort1.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
#![cfg(feature = "integration-test")]
use bitcoin::Amount;
use coinswap::{
maker::{start_maker_server, MakerBehavior},
taker::{SwapParams, TakerBehavior},
utill::ConnectionType,
};
mod test_framework;
use log::{info, warn};
use std::{
assert_eq,
sync::{atomic::Ordering::Relaxed, Arc},
thread,
time::Duration,
};
use test_framework::*;
/// Abort 1: TAKER Drops After Full Setup.
/// This test demonstrates the situation where the Taker drops connection after broadcasting all the
/// funding transactions. The Makers identifies this and waits for a timeout (5mins in prod, 30 secs in test)
/// for the Taker to come back. If the Taker doesn't come back within timeout, the Makers broadcasts the contract
/// transactions and reclaims their funds via timelock.
///
/// The Taker after coming live again will see unfinished coinswaps in his wallet. He can reclaim his funds via
/// broadcasting his contract transactions and claiming via timelock.
#[test]
fn test_stop_taker_after_setup() {
// ---- Setup ----
// 2 Makers with Normal behavior.
let makers_config_map = [
((6102, None), MakerBehavior::Normal),
((16102, None), MakerBehavior::Normal),
];
// Initiate test framework, Makers.
// Taker has a special behavior DropConnectionAfterFullSetup.
let (test_framework, mut taker, makers, directory_server_instance, block_generation_handle) =
TestFramework::init(
makers_config_map.into(),
TakerBehavior::DropConnectionAfterFullSetup,
ConnectionType::CLEARNET,
);
warn!("Running Test: Taker Cheats on Everybody.");
// Fund the Taker with 3 utxos of 0.05 btc each and do basic checks on the balance
let org_taker_spend_balance = fund_and_verify_taker(
&mut taker,
&test_framework.bitcoind,
3,
Amount::from_btc(0.05).unwrap(),
);
// Fund the Maker with 4 utxos of 0.05 btc each and do basic checks on the balance.
let makers_ref = makers.iter().map(Arc::as_ref).collect::<Vec<_>>();
fund_and_verify_maker(
makers_ref,
&test_framework.bitcoind,
4,
Amount::from_btc(0.05).unwrap(),
);
// Start the Maker Server threads
log::info!("Initiating Maker...");
let maker_threads = makers
.iter()
.map(|maker| {
let maker_clone = maker.clone();
thread::spawn(move || {
start_maker_server(maker_clone).unwrap();
})
})
.collect::<Vec<_>>();
// Makers take time to fully setup.
let org_maker_spend_balances = makers
.iter()
.map(|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;
}
// Check balance after setting up maker server.
let wallet = maker.wallet.read().unwrap();
let all_utxos = wallet.get_all_utxo().unwrap();
let balances = wallet.get_balances(Some(&all_utxos)).unwrap();
assert_eq!(balances.regular, Amount::from_btc(0.14999).unwrap());
assert_eq!(balances.fidelity, Amount::from_btc(0.05).unwrap());
assert_eq!(balances.swap, Amount::ZERO);
assert_eq!(balances.contract, Amount::ZERO);
balances.spendable
})
.collect::<Vec<_>>();
// Initiate Coinswap
log::info!("Initiating coinswap protocol");
// Swap params for coinswap.
let swap_params = SwapParams {
send_amount: Amount::from_sat(500000),
maker_count: 2,
tx_count: 3,
required_confirms: 1,
};
taker.do_coinswap(swap_params).unwrap();
// After Swap is done, wait for maker threads to conclude.
makers
.iter()
.for_each(|maker| maker.shutdown.store(true, Relaxed));
// After Swap is done, wait for maker threads to conclude.
maker_threads
.into_iter()
.for_each(|thread| thread.join().unwrap());
log::info!("All coinswaps processed successfully. Transaction complete.");
// Shutdown Directory Server
directory_server_instance.shutdown.store(true, Relaxed);
thread::sleep(Duration::from_secs(10));
//Run Recovery script
// TODO: do something about this?
warn!("Starting Taker recovery process");
taker.recover_from_swap().unwrap();
// ## Fee Tracking and Workflow:
//
// ### Fee Breakdown:
//
// +------------------+-------------------------+--------------------------+------------+----------------------------+-------------------+
// | Participant | Amount Received (Sats) | Amount Forwarded (Sats) | Fee (Sats) | Funding Mining Fees (Sats) | Total Fees (Sats) |
// +------------------+-------------------------+--------------------------+------------+----------------------------+-------------------+
// | Taker | _ | 500,000 | _ | 3,000 | 3,000 |
// | Maker16102 | 500,000 | 463,500 | 33,500 | 3,000 | 36,500 |
// | Maker6102 | 463,500 | 438,642 | 21,858 | 3,000 | 24,858 |
// +------------------+-------------------------+--------------------------+------------+----------------------------+-------------------+
//
//
// **Taker** => DropConnectionAfterFullSetup
//
// Participants regain their initial funding amounts but incur a total loss of **6,768 sats**
// due to mining fees (recovery + initial transaction fees).
//
// ### Recovery Fees Breakdown:
//
// +------------------+------------------------------------+---------------------+--------------------+----------------------------+
// | Participant | Mining Fee for Contract txes (Sats) | Timelock Fee (Sats) | Funding Fee (Sats) | Total Recovery Fees (Sats) |
// +------------------+------------------------------------+---------------------+--------------------+----------------------------+
// | Taker | 3,000 | 768 | 3,000 | 6,768 |
// | Maker16102 | 3,000 | 768 | 3,000 | 6,768 |
// | Maker6102 | 3,000 | 768 | 3,000 | 6,768 |
// +------------------+------------------------------------+---------------------+--------------------+----------------------------+
//
verify_swap_results(
&taker,
&makers,
org_taker_spend_balance,
org_maker_spend_balances,
);
info!("All checks successful. Terminating integration test case");
test_framework.stop();
block_generation_handle.join().unwrap();
}