integration_tests_pure.rs 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894
  1. //! This file contains integration tests for the Cashu Development Kit (CDK)
  2. //!
  3. //! These tests verify the interaction between mint and wallet components, simulating real-world usage scenarios.
  4. //! They test the complete flow of operations including wallet funding, token swapping, sending tokens between wallets,
  5. //! and other operations that require client-mint interaction.
  6. //!
  7. //! Test Environment:
  8. //! - Uses pure in-memory mint instances for fast execution
  9. //! - Tests run concurrently with multi-threaded tokio runtime
  10. //! - No external dependencies (Lightning nodes, databases) required
  11. use std::assert_eq;
  12. use std::collections::{HashMap, HashSet};
  13. use std::hash::RandomState;
  14. use std::str::FromStr;
  15. use std::time::Duration;
  16. use cashu::amount::SplitTarget;
  17. use cashu::dhke::construct_proofs;
  18. use cashu::mint_url::MintUrl;
  19. use cashu::{
  20. CurrencyUnit, Id, MeltRequest, NotificationPayload, PreMintSecrets, ProofState, SecretKey,
  21. SpendingConditions, State, SwapRequest,
  22. };
  23. use cdk::mint::Mint;
  24. use cdk::nuts::nut00::ProofsMethods;
  25. use cdk::subscription::{IndexableParams, Params};
  26. use cdk::wallet::types::{TransactionDirection, TransactionId};
  27. use cdk::wallet::{ReceiveOptions, SendMemo, SendOptions};
  28. use cdk::Amount;
  29. use cdk_fake_wallet::create_fake_invoice;
  30. use cdk_integration_tests::init_pure_tests::*;
  31. use tokio::time::sleep;
  32. /// Tests the token swap and send functionality:
  33. /// 1. Alice gets funded with 64 sats
  34. /// 2. Alice prepares to send 40 sats (which requires internal swapping)
  35. /// 3. Alice sends the token
  36. /// 4. Carol receives the token and has the correct balance
  37. #[tokio::test]
  38. async fn test_swap_to_send() {
  39. setup_tracing();
  40. let mint_bob = create_and_start_test_mint()
  41. .await
  42. .expect("Failed to create test mint");
  43. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  44. .await
  45. .expect("Failed to create test wallet");
  46. // Alice gets 64 sats
  47. fund_wallet(wallet_alice.clone(), 64, None)
  48. .await
  49. .expect("Failed to fund wallet");
  50. let balance_alice = wallet_alice
  51. .total_balance()
  52. .await
  53. .expect("Failed to get balance");
  54. assert_eq!(Amount::from(64), balance_alice);
  55. // Alice wants to send 40 sats, which internally swaps
  56. let prepared_send = wallet_alice
  57. .prepare_send(Amount::from(40), SendOptions::default())
  58. .await
  59. .expect("Failed to prepare send");
  60. assert_eq!(
  61. HashSet::<_, RandomState>::from_iter(
  62. prepared_send.proofs().ys().expect("Failed to get ys")
  63. ),
  64. HashSet::from_iter(
  65. wallet_alice
  66. .get_reserved_proofs()
  67. .await
  68. .expect("Failed to get reserved proofs")
  69. .ys()
  70. .expect("Failed to get ys")
  71. )
  72. );
  73. let token = prepared_send
  74. .confirm(Some(SendMemo::for_token("test_swapt_to_send")))
  75. .await
  76. .expect("Failed to send token");
  77. let keysets_info = wallet_alice.get_mint_keysets().await.unwrap();
  78. let token_proofs = token.proofs(&keysets_info).unwrap();
  79. assert_eq!(
  80. Amount::from(40),
  81. token_proofs
  82. .total_amount()
  83. .expect("Failed to get total amount")
  84. );
  85. assert_eq!(
  86. Amount::from(24),
  87. wallet_alice
  88. .total_balance()
  89. .await
  90. .expect("Failed to get balance")
  91. );
  92. assert_eq!(
  93. HashSet::<_, RandomState>::from_iter(token_proofs.ys().expect("Failed to get ys")),
  94. HashSet::from_iter(
  95. wallet_alice
  96. .get_pending_spent_proofs()
  97. .await
  98. .expect("Failed to get pending spent proofs")
  99. .ys()
  100. .expect("Failed to get ys")
  101. )
  102. );
  103. let transaction_id =
  104. TransactionId::from_proofs(token_proofs.clone()).expect("Failed to get tx id");
  105. let transaction = wallet_alice
  106. .get_transaction(transaction_id)
  107. .await
  108. .expect("Failed to get transaction")
  109. .expect("Transaction not found");
  110. assert_eq!(wallet_alice.mint_url, transaction.mint_url);
  111. assert_eq!(TransactionDirection::Outgoing, transaction.direction);
  112. assert_eq!(Amount::from(40), transaction.amount);
  113. assert_eq!(Amount::from(0), transaction.fee);
  114. assert_eq!(CurrencyUnit::Sat, transaction.unit);
  115. assert_eq!(token_proofs.ys().unwrap(), transaction.ys);
  116. // Alice sends cashu, Carol receives
  117. let wallet_carol = create_test_wallet_for_mint(mint_bob.clone())
  118. .await
  119. .expect("Failed to create Carol's wallet");
  120. let received_amount = wallet_carol
  121. .receive_proofs(
  122. token_proofs.clone(),
  123. ReceiveOptions::default(),
  124. token.memo().clone(),
  125. )
  126. .await
  127. .expect("Failed to receive proofs");
  128. assert_eq!(Amount::from(40), received_amount);
  129. assert_eq!(
  130. Amount::from(40),
  131. wallet_carol
  132. .total_balance()
  133. .await
  134. .expect("Failed to get Carol's balance")
  135. );
  136. let transaction = wallet_carol
  137. .get_transaction(transaction_id)
  138. .await
  139. .expect("Failed to get transaction")
  140. .expect("Transaction not found");
  141. assert_eq!(wallet_carol.mint_url, transaction.mint_url);
  142. assert_eq!(TransactionDirection::Incoming, transaction.direction);
  143. assert_eq!(Amount::from(40), transaction.amount);
  144. assert_eq!(Amount::from(0), transaction.fee);
  145. assert_eq!(CurrencyUnit::Sat, transaction.unit);
  146. assert_eq!(token_proofs.ys().unwrap(), transaction.ys);
  147. assert_eq!(token.memo().clone(), transaction.memo);
  148. }
  149. /// Tests the NUT-06 functionality (mint discovery):
  150. /// 1. Alice gets funded with 64 sats
  151. /// 2. Verifies the initial mint URL is in the mint info
  152. /// 3. Updates the mint URL to a new value
  153. /// 4. Verifies the wallet balance is maintained after changing the mint URL
  154. #[tokio::test]
  155. async fn test_mint_nut06() {
  156. setup_tracing();
  157. let mint_bob = create_and_start_test_mint()
  158. .await
  159. .expect("Failed to create test mint");
  160. let mut wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  161. .await
  162. .expect("Failed to create test wallet");
  163. // Alice gets 64 sats
  164. fund_wallet(wallet_alice.clone(), 64, None)
  165. .await
  166. .expect("Failed to fund wallet");
  167. let balance_alice = wallet_alice
  168. .total_balance()
  169. .await
  170. .expect("Failed to get balance");
  171. assert_eq!(Amount::from(64), balance_alice);
  172. let transaction = wallet_alice
  173. .list_transactions(None)
  174. .await
  175. .expect("Failed to list transactions")
  176. .pop()
  177. .expect("No transactions found");
  178. assert_eq!(wallet_alice.mint_url, transaction.mint_url);
  179. assert_eq!(TransactionDirection::Incoming, transaction.direction);
  180. assert_eq!(Amount::from(64), transaction.amount);
  181. assert_eq!(Amount::from(0), transaction.fee);
  182. assert_eq!(CurrencyUnit::Sat, transaction.unit);
  183. let initial_mint_url = wallet_alice.mint_url.clone();
  184. let mint_info_before = wallet_alice
  185. .get_mint_info()
  186. .await
  187. .expect("Failed to get mint info")
  188. .unwrap();
  189. assert!(mint_info_before
  190. .urls
  191. .unwrap()
  192. .contains(&initial_mint_url.to_string()));
  193. // Wallet updates mint URL
  194. let new_mint_url = MintUrl::from_str("https://new-mint-url").expect("Failed to parse mint URL");
  195. wallet_alice
  196. .update_mint_url(new_mint_url.clone())
  197. .await
  198. .expect("Failed to update mint URL");
  199. // Check balance after mint URL was updated
  200. let balance_alice_after = wallet_alice
  201. .total_balance()
  202. .await
  203. .expect("Failed to get balance after URL update");
  204. assert_eq!(Amount::from(64), balance_alice_after);
  205. }
  206. /// Attempt to double spend proofs on swap
  207. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  208. async fn test_mint_double_spend() {
  209. setup_tracing();
  210. let mint_bob = create_and_start_test_mint()
  211. .await
  212. .expect("Failed to create test mint");
  213. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  214. .await
  215. .expect("Failed to create test wallet");
  216. // Alice gets 64 sats
  217. fund_wallet(wallet_alice.clone(), 64, None)
  218. .await
  219. .expect("Failed to fund wallet");
  220. let proofs = wallet_alice
  221. .get_unspent_proofs()
  222. .await
  223. .expect("Could not get proofs");
  224. let keys = mint_bob.pubkeys().keysets.first().unwrap().clone();
  225. let keyset_id = keys.id;
  226. let preswap = PreMintSecrets::random(
  227. keyset_id,
  228. proofs.total_amount().unwrap(),
  229. &SplitTarget::default(),
  230. )
  231. .unwrap();
  232. let swap_request = SwapRequest::new(proofs.clone(), preswap.blinded_messages());
  233. let swap = mint_bob.process_swap_request(swap_request).await;
  234. assert!(swap.is_ok());
  235. let preswap_two = PreMintSecrets::random(
  236. keyset_id,
  237. proofs.total_amount().unwrap(),
  238. &SplitTarget::default(),
  239. )
  240. .unwrap();
  241. let swap_two_request = SwapRequest::new(proofs, preswap_two.blinded_messages());
  242. match mint_bob.process_swap_request(swap_two_request).await {
  243. Ok(_) => panic!("Proofs double spent"),
  244. Err(err) => match err {
  245. cdk::Error::TokenAlreadySpent => (),
  246. _ => panic!("Wrong error returned"),
  247. },
  248. }
  249. }
  250. /// This attempts to swap for more outputs then inputs.
  251. /// This will work if the mint does not check for outputs amounts overflowing
  252. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  253. async fn test_attempt_to_swap_by_overflowing() {
  254. setup_tracing();
  255. let mint_bob = create_and_start_test_mint()
  256. .await
  257. .expect("Failed to create test mint");
  258. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  259. .await
  260. .expect("Failed to create test wallet");
  261. // Alice gets 64 sats
  262. fund_wallet(wallet_alice.clone(), 64, None)
  263. .await
  264. .expect("Failed to fund wallet");
  265. let proofs = wallet_alice
  266. .get_unspent_proofs()
  267. .await
  268. .expect("Could not get proofs");
  269. let amount = 2_u64.pow(63);
  270. let keys = mint_bob.pubkeys().keysets.first().unwrap().clone();
  271. let keyset_id = keys.id;
  272. let pre_mint_amount =
  273. PreMintSecrets::random(keyset_id, amount.into(), &SplitTarget::default()).unwrap();
  274. let pre_mint_amount_two =
  275. PreMintSecrets::random(keyset_id, amount.into(), &SplitTarget::default()).unwrap();
  276. let mut pre_mint =
  277. PreMintSecrets::random(keyset_id, 1.into(), &SplitTarget::default()).unwrap();
  278. pre_mint.combine(pre_mint_amount);
  279. pre_mint.combine(pre_mint_amount_two);
  280. let swap_request = SwapRequest::new(proofs.clone(), pre_mint.blinded_messages());
  281. match mint_bob.process_swap_request(swap_request).await {
  282. Ok(_) => panic!("Swap occurred with overflow"),
  283. Err(err) => match err {
  284. cdk::Error::NUT03(cdk::nuts::nut03::Error::Amount(_)) => (),
  285. cdk::Error::AmountOverflow => (),
  286. cdk::Error::AmountError(_) => (),
  287. _ => {
  288. panic!("Wrong error returned in swap overflow {:?}", err);
  289. }
  290. },
  291. }
  292. }
  293. /// Tests that the mint correctly rejects unbalanced swap requests:
  294. /// 1. Attempts to swap for less than the input amount (95 < 100)
  295. /// 2. Attempts to swap for more than the input amount (101 > 100)
  296. /// 3. Both should fail with TransactionUnbalanced error
  297. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  298. async fn test_swap_unbalanced() {
  299. setup_tracing();
  300. let mint_bob = create_and_start_test_mint()
  301. .await
  302. .expect("Failed to create test mint");
  303. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  304. .await
  305. .expect("Failed to create test wallet");
  306. // Alice gets 100 sats
  307. fund_wallet(wallet_alice.clone(), 100, None)
  308. .await
  309. .expect("Failed to fund wallet");
  310. let proofs = wallet_alice
  311. .get_unspent_proofs()
  312. .await
  313. .expect("Could not get proofs");
  314. let keyset_id = get_keyset_id(&mint_bob).await;
  315. // Try to swap for less than the input amount (95 < 100)
  316. let preswap = PreMintSecrets::random(keyset_id, 95.into(), &SplitTarget::default())
  317. .expect("Failed to create preswap");
  318. let swap_request = SwapRequest::new(proofs.clone(), preswap.blinded_messages());
  319. match mint_bob.process_swap_request(swap_request).await {
  320. Ok(_) => panic!("Swap was allowed unbalanced"),
  321. Err(err) => match err {
  322. cdk::Error::TransactionUnbalanced(_, _, _) => (),
  323. _ => panic!("Wrong error returned"),
  324. },
  325. }
  326. // Try to swap for more than the input amount (101 > 100)
  327. let preswap = PreMintSecrets::random(keyset_id, 101.into(), &SplitTarget::default())
  328. .expect("Failed to create preswap");
  329. let swap_request = SwapRequest::new(proofs.clone(), preswap.blinded_messages());
  330. match mint_bob.process_swap_request(swap_request).await {
  331. Ok(_) => panic!("Swap was allowed unbalanced"),
  332. Err(err) => match err {
  333. cdk::Error::TransactionUnbalanced(_, _, _) => (),
  334. _ => panic!("Wrong error returned"),
  335. },
  336. }
  337. }
  338. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  339. pub async fn test_p2pk_swap() {
  340. setup_tracing();
  341. let mint_bob = create_and_start_test_mint()
  342. .await
  343. .expect("Failed to create test mint");
  344. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  345. .await
  346. .expect("Failed to create test wallet");
  347. // Alice gets 100 sats
  348. fund_wallet(wallet_alice.clone(), 100, None)
  349. .await
  350. .expect("Failed to fund wallet");
  351. let proofs = wallet_alice
  352. .get_unspent_proofs()
  353. .await
  354. .expect("Could not get proofs");
  355. let keyset_id = get_keyset_id(&mint_bob).await;
  356. let secret = SecretKey::generate();
  357. let spending_conditions = SpendingConditions::new_p2pk(secret.public_key(), None);
  358. let pre_swap = PreMintSecrets::with_conditions(
  359. keyset_id,
  360. 100.into(),
  361. &SplitTarget::default(),
  362. &spending_conditions,
  363. )
  364. .unwrap();
  365. let swap_request = SwapRequest::new(proofs.clone(), pre_swap.blinded_messages());
  366. let keys = mint_bob.pubkeys().keysets.first().cloned().unwrap().keys;
  367. let post_swap = mint_bob.process_swap_request(swap_request).await.unwrap();
  368. let mut proofs = construct_proofs(
  369. post_swap.signatures,
  370. pre_swap.rs(),
  371. pre_swap.secrets(),
  372. &keys,
  373. )
  374. .unwrap();
  375. let pre_swap = PreMintSecrets::random(keyset_id, 100.into(), &SplitTarget::default()).unwrap();
  376. let swap_request = SwapRequest::new(proofs.clone(), pre_swap.blinded_messages());
  377. // Listen for status updates on all input proof pks
  378. let public_keys_to_listen: Vec<_> = swap_request
  379. .inputs()
  380. .ys()
  381. .unwrap()
  382. .iter()
  383. .map(|pk| pk.to_string())
  384. .collect();
  385. let mut listener = mint_bob
  386. .pubsub_manager()
  387. .try_subscribe::<IndexableParams>(
  388. Params {
  389. kind: cdk::nuts::nut17::Kind::ProofState,
  390. filters: public_keys_to_listen.clone(),
  391. id: "test".into(),
  392. }
  393. .into(),
  394. )
  395. .await
  396. .expect("valid subscription");
  397. match mint_bob.process_swap_request(swap_request).await {
  398. Ok(_) => panic!("Proofs spent without sig"),
  399. Err(err) => match err {
  400. cdk::Error::NUT11(cdk::nuts::nut11::Error::SignaturesNotProvided) => (),
  401. _ => {
  402. println!("{:?}", err);
  403. panic!("Wrong error returned")
  404. }
  405. },
  406. }
  407. for proof in &mut proofs {
  408. proof.sign_p2pk(secret.clone()).unwrap();
  409. }
  410. let swap_request = SwapRequest::new(proofs.clone(), pre_swap.blinded_messages());
  411. let attempt_swap = mint_bob.process_swap_request(swap_request).await;
  412. assert!(attempt_swap.is_ok());
  413. sleep(Duration::from_secs(1)).await;
  414. let mut msgs = HashMap::new();
  415. while let Ok((sub_id, msg)) = listener.try_recv() {
  416. assert_eq!(sub_id, "test".into());
  417. match msg {
  418. NotificationPayload::ProofState(ProofState { y, state, .. }) => {
  419. msgs.entry(y.to_string())
  420. .or_insert_with(Vec::new)
  421. .push(state);
  422. }
  423. _ => panic!("Wrong message received"),
  424. }
  425. }
  426. for (i, key) in public_keys_to_listen.into_iter().enumerate() {
  427. let statuses = msgs.remove(&key).expect("some events");
  428. // Every input pk receives two state updates, as there are only two state transitions
  429. assert_eq!(
  430. statuses,
  431. vec![State::Pending, State::Spent],
  432. "failed to test key {:?} (pos {})",
  433. key,
  434. i,
  435. );
  436. }
  437. assert!(listener.try_recv().is_err(), "no other event is happening");
  438. assert!(msgs.is_empty(), "Only expected key events are received");
  439. }
  440. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  441. async fn test_swap_overpay_underpay_fee() {
  442. setup_tracing();
  443. let mint_bob = create_and_start_test_mint()
  444. .await
  445. .expect("Failed to create test mint");
  446. mint_bob
  447. .rotate_keyset(CurrencyUnit::Sat, 32, 1)
  448. .await
  449. .unwrap();
  450. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  451. .await
  452. .expect("Failed to create test wallet");
  453. // Alice gets 100 sats
  454. fund_wallet(wallet_alice.clone(), 1000, None)
  455. .await
  456. .expect("Failed to fund wallet");
  457. let proofs = wallet_alice
  458. .get_unspent_proofs()
  459. .await
  460. .expect("Could not get proofs");
  461. let keys = mint_bob.pubkeys().keysets.first().unwrap().clone().keys;
  462. let keyset_id = Id::v1_from_keys(&keys);
  463. let preswap = PreMintSecrets::random(keyset_id, 9998.into(), &SplitTarget::default()).unwrap();
  464. let swap_request = SwapRequest::new(proofs.clone(), preswap.blinded_messages());
  465. // Attempt to swap overpaying fee
  466. match mint_bob.process_swap_request(swap_request).await {
  467. Ok(_) => panic!("Swap was allowed unbalanced"),
  468. Err(err) => match err {
  469. cdk::Error::TransactionUnbalanced(_, _, _) => (),
  470. _ => {
  471. println!("{:?}", err);
  472. panic!("Wrong error returned")
  473. }
  474. },
  475. }
  476. let preswap = PreMintSecrets::random(keyset_id, 1000.into(), &SplitTarget::default()).unwrap();
  477. let swap_request = SwapRequest::new(proofs.clone(), preswap.blinded_messages());
  478. // Attempt to swap underpaying fee
  479. match mint_bob.process_swap_request(swap_request).await {
  480. Ok(_) => panic!("Swap was allowed unbalanced"),
  481. Err(err) => match err {
  482. cdk::Error::TransactionUnbalanced(_, _, _) => (),
  483. _ => {
  484. println!("{:?}", err);
  485. panic!("Wrong error returned")
  486. }
  487. },
  488. }
  489. }
  490. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  491. async fn test_mint_enforce_fee() {
  492. setup_tracing();
  493. let mint_bob = create_and_start_test_mint()
  494. .await
  495. .expect("Failed to create test mint");
  496. mint_bob
  497. .rotate_keyset(CurrencyUnit::Sat, 32, 1)
  498. .await
  499. .unwrap();
  500. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  501. .await
  502. .expect("Failed to create test wallet");
  503. // Alice gets 100 sats
  504. fund_wallet(
  505. wallet_alice.clone(),
  506. 1010,
  507. Some(SplitTarget::Value(Amount::ONE)),
  508. )
  509. .await
  510. .expect("Failed to fund wallet");
  511. let mut proofs = wallet_alice
  512. .get_unspent_proofs()
  513. .await
  514. .expect("Could not get proofs");
  515. let keys = mint_bob.pubkeys().keysets.first().unwrap().clone();
  516. let keyset_id = keys.id;
  517. let five_proofs: Vec<_> = proofs.drain(..5).collect();
  518. let preswap = PreMintSecrets::random(keyset_id, 5.into(), &SplitTarget::default()).unwrap();
  519. let swap_request = SwapRequest::new(five_proofs.clone(), preswap.blinded_messages());
  520. // Attempt to swap underpaying fee
  521. match mint_bob.process_swap_request(swap_request).await {
  522. Ok(_) => panic!("Swap was allowed unbalanced"),
  523. Err(err) => match err {
  524. cdk::Error::TransactionUnbalanced(_, _, _) => (),
  525. _ => {
  526. println!("{:?}", err);
  527. panic!("Wrong error returned")
  528. }
  529. },
  530. }
  531. let preswap = PreMintSecrets::random(keyset_id, 4.into(), &SplitTarget::default()).unwrap();
  532. let swap_request = SwapRequest::new(five_proofs.clone(), preswap.blinded_messages());
  533. let res = mint_bob.process_swap_request(swap_request).await;
  534. assert!(res.is_ok());
  535. let thousnad_proofs: Vec<_> = proofs.drain(..1001).collect();
  536. let preswap = PreMintSecrets::random(keyset_id, 1000.into(), &SplitTarget::default()).unwrap();
  537. let swap_request = SwapRequest::new(thousnad_proofs.clone(), preswap.blinded_messages());
  538. // Attempt to swap underpaying fee
  539. match mint_bob.process_swap_request(swap_request).await {
  540. Ok(_) => panic!("Swap was allowed unbalanced"),
  541. Err(err) => match err {
  542. cdk::Error::TransactionUnbalanced(_, _, _) => (),
  543. _ => {
  544. println!("{:?}", err);
  545. panic!("Wrong error returned")
  546. }
  547. },
  548. }
  549. let preswap = PreMintSecrets::random(keyset_id, 999.into(), &SplitTarget::default()).unwrap();
  550. let swap_request = SwapRequest::new(thousnad_proofs.clone(), preswap.blinded_messages());
  551. let _ = mint_bob.process_swap_request(swap_request).await.unwrap();
  552. }
  553. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  554. async fn test_mint_change_with_fee_melt() {
  555. setup_tracing();
  556. let mint_bob = create_and_start_test_mint()
  557. .await
  558. .expect("Failed to create test mint");
  559. mint_bob
  560. .rotate_keyset(CurrencyUnit::Sat, 32, 1)
  561. .await
  562. .unwrap();
  563. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  564. .await
  565. .expect("Failed to create test wallet");
  566. // Alice gets 100 sats
  567. fund_wallet(
  568. wallet_alice.clone(),
  569. 100,
  570. Some(SplitTarget::Value(Amount::ONE)),
  571. )
  572. .await
  573. .expect("Failed to fund wallet");
  574. let proofs = wallet_alice
  575. .get_unspent_proofs()
  576. .await
  577. .expect("Could not get proofs");
  578. let fake_invoice = create_fake_invoice(1000, "".to_string());
  579. let melt_quote = wallet_alice
  580. .melt_quote(fake_invoice.to_string(), None)
  581. .await
  582. .unwrap();
  583. let w = wallet_alice
  584. .melt_proofs(&melt_quote.id, proofs)
  585. .await
  586. .unwrap();
  587. assert_eq!(w.change.unwrap().total_amount().unwrap(), 97.into());
  588. }
  589. /// Tests concurrent double-spending attempts by trying to use the same proofs
  590. /// in 3 swap transactions simultaneously using tokio tasks
  591. #[tokio::test(flavor = "multi_thread", worker_threads = 3)]
  592. async fn test_concurrent_double_spend_swap() {
  593. setup_tracing();
  594. let mint_bob = create_and_start_test_mint()
  595. .await
  596. .expect("Failed to create test mint");
  597. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  598. .await
  599. .expect("Failed to create test wallet");
  600. // Alice gets 100 sats
  601. fund_wallet(wallet_alice.clone(), 100, None)
  602. .await
  603. .expect("Failed to fund wallet");
  604. let proofs = wallet_alice
  605. .get_unspent_proofs()
  606. .await
  607. .expect("Could not get proofs");
  608. let keyset_id = get_keyset_id(&mint_bob).await;
  609. // Create 3 identical swap requests with the same proofs
  610. let preswap1 = PreMintSecrets::random(keyset_id, 100.into(), &SplitTarget::default())
  611. .expect("Failed to create preswap");
  612. let swap_request1 = SwapRequest::new(proofs.clone(), preswap1.blinded_messages());
  613. let preswap2 = PreMintSecrets::random(keyset_id, 100.into(), &SplitTarget::default())
  614. .expect("Failed to create preswap");
  615. let swap_request2 = SwapRequest::new(proofs.clone(), preswap2.blinded_messages());
  616. let preswap3 = PreMintSecrets::random(keyset_id, 100.into(), &SplitTarget::default())
  617. .expect("Failed to create preswap");
  618. let swap_request3 = SwapRequest::new(proofs.clone(), preswap3.blinded_messages());
  619. // Spawn 3 concurrent tasks to process the swap requests
  620. let mint_clone1 = mint_bob.clone();
  621. let mint_clone2 = mint_bob.clone();
  622. let mint_clone3 = mint_bob.clone();
  623. let task1 = tokio::spawn(async move { mint_clone1.process_swap_request(swap_request1).await });
  624. let task2 = tokio::spawn(async move { mint_clone2.process_swap_request(swap_request2).await });
  625. let task3 = tokio::spawn(async move { mint_clone3.process_swap_request(swap_request3).await });
  626. // Wait for all tasks to complete
  627. let results = tokio::try_join!(task1, task2, task3).expect("Tasks failed to complete");
  628. // Count successes and failures
  629. let mut success_count = 0;
  630. let mut token_already_spent_count = 0;
  631. for result in [results.0, results.1, results.2] {
  632. match result {
  633. Ok(_) => success_count += 1,
  634. Err(err) => match err {
  635. cdk::Error::TokenAlreadySpent | cdk::Error::TokenPending => {
  636. token_already_spent_count += 1
  637. }
  638. other_err => panic!("Unexpected error: {:?}", other_err),
  639. },
  640. }
  641. }
  642. // Only one swap should succeed, the other two should fail with TokenAlreadySpent
  643. assert_eq!(1, success_count, "Expected exactly one successful swap");
  644. assert_eq!(
  645. 2, token_already_spent_count,
  646. "Expected exactly two TokenAlreadySpent errors"
  647. );
  648. // Verify that all proofs are marked as spent in the mint
  649. let states = mint_bob
  650. .localstore()
  651. .get_proofs_states(&proofs.iter().map(|p| p.y().unwrap()).collect::<Vec<_>>())
  652. .await
  653. .expect("Failed to get proof state");
  654. for state in states {
  655. assert_eq!(
  656. State::Spent,
  657. state.expect("Known state"),
  658. "Expected proof to be marked as spent, but got {:?}",
  659. state
  660. );
  661. }
  662. }
  663. /// Tests concurrent double-spending attempts by trying to use the same proofs
  664. /// in 3 melt transactions simultaneously using tokio tasks
  665. #[tokio::test(flavor = "multi_thread", worker_threads = 3)]
  666. async fn test_concurrent_double_spend_melt() {
  667. setup_tracing();
  668. let mint_bob = create_and_start_test_mint()
  669. .await
  670. .expect("Failed to create test mint");
  671. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  672. .await
  673. .expect("Failed to create test wallet");
  674. // Alice gets 100 sats
  675. fund_wallet(wallet_alice.clone(), 100, None)
  676. .await
  677. .expect("Failed to fund wallet");
  678. let proofs = wallet_alice
  679. .get_unspent_proofs()
  680. .await
  681. .expect("Could not get proofs");
  682. // Create a Lightning invoice for the melt
  683. let invoice = create_fake_invoice(1000, "".to_string());
  684. // Create a melt quote
  685. let melt_quote = wallet_alice
  686. .melt_quote(invoice.to_string(), None)
  687. .await
  688. .expect("Failed to create melt quote");
  689. // Get the quote ID and payment request
  690. let quote_id = melt_quote.id.clone();
  691. // Create 3 identical melt requests with the same proofs
  692. let mint_clone1 = mint_bob.clone();
  693. let mint_clone2 = mint_bob.clone();
  694. let mint_clone3 = mint_bob.clone();
  695. let melt_request = MeltRequest::new(quote_id.parse().unwrap(), proofs.clone(), None);
  696. let melt_request2 = melt_request.clone();
  697. let melt_request3 = melt_request.clone();
  698. // Spawn 3 concurrent tasks to process the melt requests
  699. let task1 = tokio::spawn(async move { mint_clone1.melt(&melt_request).await });
  700. let task2 = tokio::spawn(async move { mint_clone2.melt(&melt_request2).await });
  701. let task3 = tokio::spawn(async move { mint_clone3.melt(&melt_request3).await });
  702. // Wait for all tasks to complete
  703. let results = tokio::try_join!(task1, task2, task3).expect("Tasks failed to complete");
  704. // Count successes and failures
  705. let mut success_count = 0;
  706. let mut token_already_spent_count = 0;
  707. for result in [results.0, results.1, results.2] {
  708. match result {
  709. Ok(_) => success_count += 1,
  710. Err(err) => match err {
  711. cdk::Error::TokenAlreadySpent | cdk::Error::TokenPending => {
  712. token_already_spent_count += 1;
  713. println!("Got expected error: {:?}", err);
  714. }
  715. other_err => {
  716. println!("Got unexpected error: {:?}", other_err);
  717. token_already_spent_count += 1;
  718. }
  719. },
  720. }
  721. }
  722. // Only one melt should succeed, the other two should fail
  723. assert_eq!(1, success_count, "Expected exactly one successful melt");
  724. assert_eq!(
  725. 2, token_already_spent_count,
  726. "Expected exactly two TokenAlreadySpent errors"
  727. );
  728. // Verify that all proofs are marked as spent in the mint
  729. let states = mint_bob
  730. .localstore()
  731. .get_proofs_states(&proofs.iter().map(|p| p.y().unwrap()).collect::<Vec<_>>())
  732. .await
  733. .expect("Failed to get proof state");
  734. for state in states {
  735. assert_eq!(
  736. State::Spent,
  737. state.expect("Known state"),
  738. "Expected proof to be marked as spent, but got {:?}",
  739. state
  740. );
  741. }
  742. }
  743. async fn get_keyset_id(mint: &Mint) -> Id {
  744. let keys = mint.pubkeys().keysets.first().unwrap().clone();
  745. keys.verify_id()
  746. .expect("Keyset ID generation is successful");
  747. keys.id
  748. }