integration_tests_pure.rs 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895
  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. println!("{:?}", err);
  289. panic!("Wrong error returned in swap overflow")
  290. }
  291. },
  292. }
  293. }
  294. /// Tests that the mint correctly rejects unbalanced swap requests:
  295. /// 1. Attempts to swap for less than the input amount (95 < 100)
  296. /// 2. Attempts to swap for more than the input amount (101 > 100)
  297. /// 3. Both should fail with TransactionUnbalanced error
  298. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  299. async fn test_swap_unbalanced() {
  300. setup_tracing();
  301. let mint_bob = create_and_start_test_mint()
  302. .await
  303. .expect("Failed to create test mint");
  304. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  305. .await
  306. .expect("Failed to create test wallet");
  307. // Alice gets 100 sats
  308. fund_wallet(wallet_alice.clone(), 100, None)
  309. .await
  310. .expect("Failed to fund wallet");
  311. let proofs = wallet_alice
  312. .get_unspent_proofs()
  313. .await
  314. .expect("Could not get proofs");
  315. let keyset_id = get_keyset_id(&mint_bob).await;
  316. // Try to swap for less than the input amount (95 < 100)
  317. let preswap = PreMintSecrets::random(keyset_id, 95.into(), &SplitTarget::default())
  318. .expect("Failed to create preswap");
  319. let swap_request = SwapRequest::new(proofs.clone(), preswap.blinded_messages());
  320. match mint_bob.process_swap_request(swap_request).await {
  321. Ok(_) => panic!("Swap was allowed unbalanced"),
  322. Err(err) => match err {
  323. cdk::Error::TransactionUnbalanced(_, _, _) => (),
  324. _ => panic!("Wrong error returned"),
  325. },
  326. }
  327. // Try to swap for more than the input amount (101 > 100)
  328. let preswap = PreMintSecrets::random(keyset_id, 101.into(), &SplitTarget::default())
  329. .expect("Failed to create preswap");
  330. let swap_request = SwapRequest::new(proofs.clone(), preswap.blinded_messages());
  331. match mint_bob.process_swap_request(swap_request).await {
  332. Ok(_) => panic!("Swap was allowed unbalanced"),
  333. Err(err) => match err {
  334. cdk::Error::TransactionUnbalanced(_, _, _) => (),
  335. _ => panic!("Wrong error returned"),
  336. },
  337. }
  338. }
  339. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  340. pub async fn test_p2pk_swap() {
  341. setup_tracing();
  342. let mint_bob = create_and_start_test_mint()
  343. .await
  344. .expect("Failed to create test mint");
  345. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  346. .await
  347. .expect("Failed to create test wallet");
  348. // Alice gets 100 sats
  349. fund_wallet(wallet_alice.clone(), 100, None)
  350. .await
  351. .expect("Failed to fund wallet");
  352. let proofs = wallet_alice
  353. .get_unspent_proofs()
  354. .await
  355. .expect("Could not get proofs");
  356. let keyset_id = get_keyset_id(&mint_bob).await;
  357. let secret = SecretKey::generate();
  358. let spending_conditions = SpendingConditions::new_p2pk(secret.public_key(), None);
  359. let pre_swap = PreMintSecrets::with_conditions(
  360. keyset_id,
  361. 100.into(),
  362. &SplitTarget::default(),
  363. &spending_conditions,
  364. )
  365. .unwrap();
  366. let swap_request = SwapRequest::new(proofs.clone(), pre_swap.blinded_messages());
  367. let keys = mint_bob.pubkeys().keysets.first().cloned().unwrap().keys;
  368. let post_swap = mint_bob.process_swap_request(swap_request).await.unwrap();
  369. let mut proofs = construct_proofs(
  370. post_swap.signatures,
  371. pre_swap.rs(),
  372. pre_swap.secrets(),
  373. &keys,
  374. )
  375. .unwrap();
  376. let pre_swap = PreMintSecrets::random(keyset_id, 100.into(), &SplitTarget::default()).unwrap();
  377. let swap_request = SwapRequest::new(proofs.clone(), pre_swap.blinded_messages());
  378. // Listen for status updates on all input proof pks
  379. let public_keys_to_listen: Vec<_> = swap_request
  380. .inputs()
  381. .ys()
  382. .unwrap()
  383. .iter()
  384. .map(|pk| pk.to_string())
  385. .collect();
  386. let mut listener = mint_bob
  387. .pubsub_manager()
  388. .try_subscribe::<IndexableParams>(
  389. Params {
  390. kind: cdk::nuts::nut17::Kind::ProofState,
  391. filters: public_keys_to_listen.clone(),
  392. id: "test".into(),
  393. }
  394. .into(),
  395. )
  396. .await
  397. .expect("valid subscription");
  398. match mint_bob.process_swap_request(swap_request).await {
  399. Ok(_) => panic!("Proofs spent without sig"),
  400. Err(err) => match err {
  401. cdk::Error::NUT11(cdk::nuts::nut11::Error::SignaturesNotProvided) => (),
  402. _ => {
  403. println!("{:?}", err);
  404. panic!("Wrong error returned")
  405. }
  406. },
  407. }
  408. for proof in &mut proofs {
  409. proof.sign_p2pk(secret.clone()).unwrap();
  410. }
  411. let swap_request = SwapRequest::new(proofs.clone(), pre_swap.blinded_messages());
  412. let attempt_swap = mint_bob.process_swap_request(swap_request).await;
  413. assert!(attempt_swap.is_ok());
  414. sleep(Duration::from_secs(1)).await;
  415. let mut msgs = HashMap::new();
  416. while let Ok((sub_id, msg)) = listener.try_recv() {
  417. assert_eq!(sub_id, "test".into());
  418. match msg {
  419. NotificationPayload::ProofState(ProofState { y, state, .. }) => {
  420. msgs.entry(y.to_string())
  421. .or_insert_with(Vec::new)
  422. .push(state);
  423. }
  424. _ => panic!("Wrong message received"),
  425. }
  426. }
  427. for (i, key) in public_keys_to_listen.into_iter().enumerate() {
  428. let statuses = msgs.remove(&key).expect("some events");
  429. // Every input pk receives two state updates, as there are only two state transitions
  430. assert_eq!(
  431. statuses,
  432. vec![State::Pending, State::Spent],
  433. "failed to test key {:?} (pos {})",
  434. key,
  435. i,
  436. );
  437. }
  438. assert!(listener.try_recv().is_err(), "no other event is happening");
  439. assert!(msgs.is_empty(), "Only expected key events are received");
  440. }
  441. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  442. async fn test_swap_overpay_underpay_fee() {
  443. setup_tracing();
  444. let mint_bob = create_and_start_test_mint()
  445. .await
  446. .expect("Failed to create test mint");
  447. mint_bob
  448. .rotate_keyset(CurrencyUnit::Sat, 32, 1)
  449. .await
  450. .unwrap();
  451. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  452. .await
  453. .expect("Failed to create test wallet");
  454. // Alice gets 100 sats
  455. fund_wallet(wallet_alice.clone(), 1000, None)
  456. .await
  457. .expect("Failed to fund wallet");
  458. let proofs = wallet_alice
  459. .get_unspent_proofs()
  460. .await
  461. .expect("Could not get proofs");
  462. let keys = mint_bob.pubkeys().keysets.first().unwrap().clone().keys;
  463. let keyset_id = Id::v1_from_keys(&keys);
  464. let preswap = PreMintSecrets::random(keyset_id, 9998.into(), &SplitTarget::default()).unwrap();
  465. let swap_request = SwapRequest::new(proofs.clone(), preswap.blinded_messages());
  466. // Attempt to swap overpaying fee
  467. match mint_bob.process_swap_request(swap_request).await {
  468. Ok(_) => panic!("Swap was allowed unbalanced"),
  469. Err(err) => match err {
  470. cdk::Error::TransactionUnbalanced(_, _, _) => (),
  471. _ => {
  472. println!("{:?}", err);
  473. panic!("Wrong error returned")
  474. }
  475. },
  476. }
  477. let preswap = PreMintSecrets::random(keyset_id, 1000.into(), &SplitTarget::default()).unwrap();
  478. let swap_request = SwapRequest::new(proofs.clone(), preswap.blinded_messages());
  479. // Attempt to swap underpaying fee
  480. match mint_bob.process_swap_request(swap_request).await {
  481. Ok(_) => panic!("Swap was allowed unbalanced"),
  482. Err(err) => match err {
  483. cdk::Error::TransactionUnbalanced(_, _, _) => (),
  484. _ => {
  485. println!("{:?}", err);
  486. panic!("Wrong error returned")
  487. }
  488. },
  489. }
  490. }
  491. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  492. async fn test_mint_enforce_fee() {
  493. setup_tracing();
  494. let mint_bob = create_and_start_test_mint()
  495. .await
  496. .expect("Failed to create test mint");
  497. mint_bob
  498. .rotate_keyset(CurrencyUnit::Sat, 32, 1)
  499. .await
  500. .unwrap();
  501. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  502. .await
  503. .expect("Failed to create test wallet");
  504. // Alice gets 100 sats
  505. fund_wallet(
  506. wallet_alice.clone(),
  507. 1010,
  508. Some(SplitTarget::Value(Amount::ONE)),
  509. )
  510. .await
  511. .expect("Failed to fund wallet");
  512. let mut proofs = wallet_alice
  513. .get_unspent_proofs()
  514. .await
  515. .expect("Could not get proofs");
  516. let keys = mint_bob.pubkeys().keysets.first().unwrap().clone();
  517. let keyset_id = keys.id;
  518. let five_proofs: Vec<_> = proofs.drain(..5).collect();
  519. let preswap = PreMintSecrets::random(keyset_id, 5.into(), &SplitTarget::default()).unwrap();
  520. let swap_request = SwapRequest::new(five_proofs.clone(), preswap.blinded_messages());
  521. // Attempt to swap underpaying fee
  522. match mint_bob.process_swap_request(swap_request).await {
  523. Ok(_) => panic!("Swap was allowed unbalanced"),
  524. Err(err) => match err {
  525. cdk::Error::TransactionUnbalanced(_, _, _) => (),
  526. _ => {
  527. println!("{:?}", err);
  528. panic!("Wrong error returned")
  529. }
  530. },
  531. }
  532. let preswap = PreMintSecrets::random(keyset_id, 4.into(), &SplitTarget::default()).unwrap();
  533. let swap_request = SwapRequest::new(five_proofs.clone(), preswap.blinded_messages());
  534. let res = mint_bob.process_swap_request(swap_request).await;
  535. assert!(res.is_ok());
  536. let thousnad_proofs: Vec<_> = proofs.drain(..1001).collect();
  537. let preswap = PreMintSecrets::random(keyset_id, 1000.into(), &SplitTarget::default()).unwrap();
  538. let swap_request = SwapRequest::new(thousnad_proofs.clone(), preswap.blinded_messages());
  539. // Attempt to swap underpaying fee
  540. match mint_bob.process_swap_request(swap_request).await {
  541. Ok(_) => panic!("Swap was allowed unbalanced"),
  542. Err(err) => match err {
  543. cdk::Error::TransactionUnbalanced(_, _, _) => (),
  544. _ => {
  545. println!("{:?}", err);
  546. panic!("Wrong error returned")
  547. }
  548. },
  549. }
  550. let preswap = PreMintSecrets::random(keyset_id, 999.into(), &SplitTarget::default()).unwrap();
  551. let swap_request = SwapRequest::new(thousnad_proofs.clone(), preswap.blinded_messages());
  552. let _ = mint_bob.process_swap_request(swap_request).await.unwrap();
  553. }
  554. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  555. async fn test_mint_change_with_fee_melt() {
  556. setup_tracing();
  557. let mint_bob = create_and_start_test_mint()
  558. .await
  559. .expect("Failed to create test mint");
  560. mint_bob
  561. .rotate_keyset(CurrencyUnit::Sat, 32, 1)
  562. .await
  563. .unwrap();
  564. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  565. .await
  566. .expect("Failed to create test wallet");
  567. // Alice gets 100 sats
  568. fund_wallet(
  569. wallet_alice.clone(),
  570. 100,
  571. Some(SplitTarget::Value(Amount::ONE)),
  572. )
  573. .await
  574. .expect("Failed to fund wallet");
  575. let proofs = wallet_alice
  576. .get_unspent_proofs()
  577. .await
  578. .expect("Could not get proofs");
  579. let fake_invoice = create_fake_invoice(1000, "".to_string());
  580. let melt_quote = wallet_alice
  581. .melt_quote(fake_invoice.to_string(), None)
  582. .await
  583. .unwrap();
  584. let w = wallet_alice
  585. .melt_proofs(&melt_quote.id, proofs)
  586. .await
  587. .unwrap();
  588. assert_eq!(w.change.unwrap().total_amount().unwrap(), 97.into());
  589. }
  590. /// Tests concurrent double-spending attempts by trying to use the same proofs
  591. /// in 3 swap transactions simultaneously using tokio tasks
  592. #[tokio::test(flavor = "multi_thread", worker_threads = 3)]
  593. async fn test_concurrent_double_spend_swap() {
  594. setup_tracing();
  595. let mint_bob = create_and_start_test_mint()
  596. .await
  597. .expect("Failed to create test mint");
  598. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  599. .await
  600. .expect("Failed to create test wallet");
  601. // Alice gets 100 sats
  602. fund_wallet(wallet_alice.clone(), 100, None)
  603. .await
  604. .expect("Failed to fund wallet");
  605. let proofs = wallet_alice
  606. .get_unspent_proofs()
  607. .await
  608. .expect("Could not get proofs");
  609. let keyset_id = get_keyset_id(&mint_bob).await;
  610. // Create 3 identical swap requests with the same proofs
  611. let preswap1 = PreMintSecrets::random(keyset_id, 100.into(), &SplitTarget::default())
  612. .expect("Failed to create preswap");
  613. let swap_request1 = SwapRequest::new(proofs.clone(), preswap1.blinded_messages());
  614. let preswap2 = PreMintSecrets::random(keyset_id, 100.into(), &SplitTarget::default())
  615. .expect("Failed to create preswap");
  616. let swap_request2 = SwapRequest::new(proofs.clone(), preswap2.blinded_messages());
  617. let preswap3 = PreMintSecrets::random(keyset_id, 100.into(), &SplitTarget::default())
  618. .expect("Failed to create preswap");
  619. let swap_request3 = SwapRequest::new(proofs.clone(), preswap3.blinded_messages());
  620. // Spawn 3 concurrent tasks to process the swap requests
  621. let mint_clone1 = mint_bob.clone();
  622. let mint_clone2 = mint_bob.clone();
  623. let mint_clone3 = mint_bob.clone();
  624. let task1 = tokio::spawn(async move { mint_clone1.process_swap_request(swap_request1).await });
  625. let task2 = tokio::spawn(async move { mint_clone2.process_swap_request(swap_request2).await });
  626. let task3 = tokio::spawn(async move { mint_clone3.process_swap_request(swap_request3).await });
  627. // Wait for all tasks to complete
  628. let results = tokio::try_join!(task1, task2, task3).expect("Tasks failed to complete");
  629. // Count successes and failures
  630. let mut success_count = 0;
  631. let mut token_already_spent_count = 0;
  632. for result in [results.0, results.1, results.2] {
  633. match result {
  634. Ok(_) => success_count += 1,
  635. Err(err) => match err {
  636. cdk::Error::TokenAlreadySpent | cdk::Error::TokenPending => {
  637. token_already_spent_count += 1
  638. }
  639. other_err => panic!("Unexpected error: {:?}", other_err),
  640. },
  641. }
  642. }
  643. // Only one swap should succeed, the other two should fail with TokenAlreadySpent
  644. assert_eq!(1, success_count, "Expected exactly one successful swap");
  645. assert_eq!(
  646. 2, token_already_spent_count,
  647. "Expected exactly two TokenAlreadySpent errors"
  648. );
  649. // Verify that all proofs are marked as spent in the mint
  650. let states = mint_bob
  651. .localstore()
  652. .get_proofs_states(&proofs.iter().map(|p| p.y().unwrap()).collect::<Vec<_>>())
  653. .await
  654. .expect("Failed to get proof state");
  655. for state in states {
  656. assert_eq!(
  657. State::Spent,
  658. state.expect("Known state"),
  659. "Expected proof to be marked as spent, but got {:?}",
  660. state
  661. );
  662. }
  663. }
  664. /// Tests concurrent double-spending attempts by trying to use the same proofs
  665. /// in 3 melt transactions simultaneously using tokio tasks
  666. #[tokio::test(flavor = "multi_thread", worker_threads = 3)]
  667. async fn test_concurrent_double_spend_melt() {
  668. setup_tracing();
  669. let mint_bob = create_and_start_test_mint()
  670. .await
  671. .expect("Failed to create test mint");
  672. let wallet_alice = create_test_wallet_for_mint(mint_bob.clone())
  673. .await
  674. .expect("Failed to create test wallet");
  675. // Alice gets 100 sats
  676. fund_wallet(wallet_alice.clone(), 100, None)
  677. .await
  678. .expect("Failed to fund wallet");
  679. let proofs = wallet_alice
  680. .get_unspent_proofs()
  681. .await
  682. .expect("Could not get proofs");
  683. // Create a Lightning invoice for the melt
  684. let invoice = create_fake_invoice(1000, "".to_string());
  685. // Create a melt quote
  686. let melt_quote = wallet_alice
  687. .melt_quote(invoice.to_string(), None)
  688. .await
  689. .expect("Failed to create melt quote");
  690. // Get the quote ID and payment request
  691. let quote_id = melt_quote.id.clone();
  692. // Create 3 identical melt requests with the same proofs
  693. let mint_clone1 = mint_bob.clone();
  694. let mint_clone2 = mint_bob.clone();
  695. let mint_clone3 = mint_bob.clone();
  696. let melt_request = MeltRequest::new(quote_id.parse().unwrap(), proofs.clone(), None);
  697. let melt_request2 = melt_request.clone();
  698. let melt_request3 = melt_request.clone();
  699. // Spawn 3 concurrent tasks to process the melt requests
  700. let task1 = tokio::spawn(async move { mint_clone1.melt(&melt_request).await });
  701. let task2 = tokio::spawn(async move { mint_clone2.melt(&melt_request2).await });
  702. let task3 = tokio::spawn(async move { mint_clone3.melt(&melt_request3).await });
  703. // Wait for all tasks to complete
  704. let results = tokio::try_join!(task1, task2, task3).expect("Tasks failed to complete");
  705. // Count successes and failures
  706. let mut success_count = 0;
  707. let mut token_already_spent_count = 0;
  708. for result in [results.0, results.1, results.2] {
  709. match result {
  710. Ok(_) => success_count += 1,
  711. Err(err) => match err {
  712. cdk::Error::TokenAlreadySpent | cdk::Error::TokenPending => {
  713. token_already_spent_count += 1;
  714. println!("Got expected error: {:?}", err);
  715. }
  716. other_err => {
  717. println!("Got unexpected error: {:?}", other_err);
  718. token_already_spent_count += 1;
  719. }
  720. },
  721. }
  722. }
  723. // Only one melt should succeed, the other two should fail
  724. assert_eq!(1, success_count, "Expected exactly one successful melt");
  725. assert_eq!(
  726. 2, token_already_spent_count,
  727. "Expected exactly two TokenAlreadySpent errors"
  728. );
  729. // Verify that all proofs are marked as spent in the mint
  730. let states = mint_bob
  731. .localstore()
  732. .get_proofs_states(&proofs.iter().map(|p| p.y().unwrap()).collect::<Vec<_>>())
  733. .await
  734. .expect("Failed to get proof state");
  735. for state in states {
  736. assert_eq!(
  737. State::Spent,
  738. state.expect("Known state"),
  739. "Expected proof to be marked as spent, but got {:?}",
  740. state
  741. );
  742. }
  743. }
  744. async fn get_keyset_id(mint: &Mint) -> Id {
  745. let keys = mint.pubkeys().keysets.first().unwrap().clone();
  746. keys.verify_id()
  747. .expect("Keyset ID generation is successful");
  748. keys.id
  749. }