fake_wallet.rs 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043
  1. use std::sync::Arc;
  2. use anyhow::{bail, Result};
  3. use bip39::Mnemonic;
  4. use cdk::amount::SplitTarget;
  5. use cdk::cdk_database::WalletMemoryDatabase;
  6. use cdk::nuts::nut00::ProofsMethods;
  7. use cdk::nuts::{
  8. CurrencyUnit, MeltBolt11Request, MeltQuoteState, MintBolt11Request, PreMintSecrets, Proofs,
  9. SecretKey, State, SwapRequest,
  10. };
  11. use cdk::wallet::client::{HttpClient, MintConnector};
  12. use cdk::wallet::Wallet;
  13. use cdk_fake_wallet::{create_fake_invoice, FakeInvoiceDescription};
  14. use cdk_integration_tests::{attempt_to_swap_pending, wait_for_mint_to_be_paid};
  15. const MINT_URL: &str = "http://127.0.0.1:8086";
  16. // If both pay and check return pending input proofs should remain pending
  17. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  18. async fn test_fake_tokens_pending() -> Result<()> {
  19. let wallet = Wallet::new(
  20. MINT_URL,
  21. CurrencyUnit::Sat,
  22. Arc::new(WalletMemoryDatabase::default()),
  23. &Mnemonic::generate(12)?.to_seed_normalized(""),
  24. None,
  25. )?;
  26. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  27. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  28. let _mint_amount = wallet
  29. .mint(&mint_quote.id, SplitTarget::default(), None)
  30. .await?;
  31. let fake_description = FakeInvoiceDescription {
  32. pay_invoice_state: MeltQuoteState::Pending,
  33. check_payment_state: MeltQuoteState::Pending,
  34. pay_err: false,
  35. check_err: false,
  36. };
  37. let invoice = create_fake_invoice(1000, serde_json::to_string(&fake_description).unwrap());
  38. let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
  39. let melt = wallet.melt(&melt_quote.id).await;
  40. assert!(melt.is_err());
  41. attempt_to_swap_pending(&wallet).await?;
  42. Ok(())
  43. }
  44. // If the pay error fails and the check returns unknown or failed
  45. // The inputs proofs should be unset as spending
  46. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  47. async fn test_fake_melt_payment_fail() -> Result<()> {
  48. let wallet = Wallet::new(
  49. MINT_URL,
  50. CurrencyUnit::Sat,
  51. Arc::new(WalletMemoryDatabase::default()),
  52. &Mnemonic::generate(12)?.to_seed_normalized(""),
  53. None,
  54. )?;
  55. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  56. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  57. let _mint_amount = wallet
  58. .mint(&mint_quote.id, SplitTarget::default(), None)
  59. .await?;
  60. let fake_description = FakeInvoiceDescription {
  61. pay_invoice_state: MeltQuoteState::Unknown,
  62. check_payment_state: MeltQuoteState::Unknown,
  63. pay_err: true,
  64. check_err: false,
  65. };
  66. let invoice = create_fake_invoice(1000, serde_json::to_string(&fake_description).unwrap());
  67. let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
  68. // The melt should error at the payment invoice command
  69. let melt = wallet.melt(&melt_quote.id).await;
  70. assert!(melt.is_err());
  71. let fake_description = FakeInvoiceDescription {
  72. pay_invoice_state: MeltQuoteState::Failed,
  73. check_payment_state: MeltQuoteState::Failed,
  74. pay_err: true,
  75. check_err: false,
  76. };
  77. let invoice = create_fake_invoice(1000, serde_json::to_string(&fake_description).unwrap());
  78. let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
  79. // The melt should error at the payment invoice command
  80. let melt = wallet.melt(&melt_quote.id).await;
  81. assert!(melt.is_err());
  82. // The mint should have unset proofs from pending since payment failed
  83. let all_proof = wallet.get_unspent_proofs().await?;
  84. let states = wallet.check_proofs_spent(all_proof).await?;
  85. for state in states {
  86. assert!(state.state == State::Unspent);
  87. }
  88. let wallet_bal = wallet.total_balance().await?;
  89. assert!(wallet_bal == 100.into());
  90. Ok(())
  91. }
  92. // When both the pay_invoice and check_invoice both fail
  93. // the proofs should remain as pending
  94. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  95. async fn test_fake_melt_payment_fail_and_check() -> Result<()> {
  96. let wallet = Wallet::new(
  97. MINT_URL,
  98. CurrencyUnit::Sat,
  99. Arc::new(WalletMemoryDatabase::default()),
  100. &Mnemonic::generate(12)?.to_seed_normalized(""),
  101. None,
  102. )?;
  103. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  104. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  105. let _mint_amount = wallet
  106. .mint(&mint_quote.id, SplitTarget::default(), None)
  107. .await?;
  108. let fake_description = FakeInvoiceDescription {
  109. pay_invoice_state: MeltQuoteState::Unknown,
  110. check_payment_state: MeltQuoteState::Unknown,
  111. pay_err: true,
  112. check_err: true,
  113. };
  114. let invoice = create_fake_invoice(7000, serde_json::to_string(&fake_description).unwrap());
  115. let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
  116. // The melt should error at the payment invoice command
  117. let melt = wallet.melt(&melt_quote.id).await;
  118. assert!(melt.is_err());
  119. let pending = wallet
  120. .localstore
  121. .get_proofs(None, None, Some(vec![State::Pending]), None)
  122. .await?;
  123. assert!(!pending.is_empty());
  124. Ok(())
  125. }
  126. // In the case that the ln backend returns a failed status but does not error
  127. // The mint should do a second check, then remove proofs from pending
  128. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  129. async fn test_fake_melt_payment_return_fail_status() -> Result<()> {
  130. let wallet = Wallet::new(
  131. MINT_URL,
  132. CurrencyUnit::Sat,
  133. Arc::new(WalletMemoryDatabase::default()),
  134. &Mnemonic::generate(12)?.to_seed_normalized(""),
  135. None,
  136. )?;
  137. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  138. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  139. let _mint_amount = wallet
  140. .mint(&mint_quote.id, SplitTarget::default(), None)
  141. .await?;
  142. let fake_description = FakeInvoiceDescription {
  143. pay_invoice_state: MeltQuoteState::Failed,
  144. check_payment_state: MeltQuoteState::Failed,
  145. pay_err: false,
  146. check_err: false,
  147. };
  148. let invoice = create_fake_invoice(7000, serde_json::to_string(&fake_description).unwrap());
  149. let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
  150. // The melt should error at the payment invoice command
  151. let melt = wallet.melt(&melt_quote.id).await;
  152. assert!(melt.is_err());
  153. let fake_description = FakeInvoiceDescription {
  154. pay_invoice_state: MeltQuoteState::Unknown,
  155. check_payment_state: MeltQuoteState::Unknown,
  156. pay_err: false,
  157. check_err: false,
  158. };
  159. let invoice = create_fake_invoice(7000, serde_json::to_string(&fake_description).unwrap());
  160. let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
  161. // The melt should error at the payment invoice command
  162. let melt = wallet.melt(&melt_quote.id).await;
  163. assert!(melt.is_err());
  164. let pending = wallet
  165. .localstore
  166. .get_proofs(None, None, Some(vec![State::Pending]), None)
  167. .await?;
  168. assert!(pending.is_empty());
  169. Ok(())
  170. }
  171. // In the case that the ln backend returns a failed status but does not error
  172. // The mint should do a second check, then remove proofs from pending
  173. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  174. async fn test_fake_melt_payment_error_unknown() -> Result<()> {
  175. let wallet = Wallet::new(
  176. MINT_URL,
  177. CurrencyUnit::Sat,
  178. Arc::new(WalletMemoryDatabase::default()),
  179. &Mnemonic::generate(12)?.to_seed_normalized(""),
  180. None,
  181. )?;
  182. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  183. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  184. let _mint_amount = wallet
  185. .mint(&mint_quote.id, SplitTarget::default(), None)
  186. .await?;
  187. let fake_description = FakeInvoiceDescription {
  188. pay_invoice_state: MeltQuoteState::Failed,
  189. check_payment_state: MeltQuoteState::Unknown,
  190. pay_err: true,
  191. check_err: false,
  192. };
  193. let invoice = create_fake_invoice(7000, serde_json::to_string(&fake_description).unwrap());
  194. let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
  195. // The melt should error at the payment invoice command
  196. let melt = wallet.melt(&melt_quote.id).await;
  197. assert!(melt.is_err());
  198. let fake_description = FakeInvoiceDescription {
  199. pay_invoice_state: MeltQuoteState::Unknown,
  200. check_payment_state: MeltQuoteState::Unknown,
  201. pay_err: true,
  202. check_err: false,
  203. };
  204. let invoice = create_fake_invoice(7000, serde_json::to_string(&fake_description).unwrap());
  205. let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
  206. // The melt should error at the payment invoice command
  207. let melt = wallet.melt(&melt_quote.id).await;
  208. assert!(melt.is_err());
  209. let pending = wallet
  210. .localstore
  211. .get_proofs(None, None, Some(vec![State::Pending]), None)
  212. .await?;
  213. assert!(pending.is_empty());
  214. Ok(())
  215. }
  216. // In the case that the ln backend returns an err
  217. // The mint should do a second check, that returns paid
  218. // Proofs should remain pending
  219. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  220. async fn test_fake_melt_payment_err_paid() -> Result<()> {
  221. let wallet = Wallet::new(
  222. MINT_URL,
  223. CurrencyUnit::Sat,
  224. Arc::new(WalletMemoryDatabase::default()),
  225. &Mnemonic::generate(12)?.to_seed_normalized(""),
  226. None,
  227. )?;
  228. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  229. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  230. let _mint_amount = wallet
  231. .mint(&mint_quote.id, SplitTarget::default(), None)
  232. .await?;
  233. let fake_description = FakeInvoiceDescription {
  234. pay_invoice_state: MeltQuoteState::Failed,
  235. check_payment_state: MeltQuoteState::Paid,
  236. pay_err: true,
  237. check_err: false,
  238. };
  239. let invoice = create_fake_invoice(7000, serde_json::to_string(&fake_description).unwrap());
  240. let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
  241. // The melt should error at the payment invoice command
  242. let melt = wallet.melt(&melt_quote.id).await;
  243. assert!(melt.is_err());
  244. attempt_to_swap_pending(&wallet).await?;
  245. Ok(())
  246. }
  247. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  248. async fn test_fake_melt_change_in_quote() -> Result<()> {
  249. let wallet = Wallet::new(
  250. MINT_URL,
  251. CurrencyUnit::Sat,
  252. Arc::new(WalletMemoryDatabase::default()),
  253. &Mnemonic::generate(12)?.to_seed_normalized(""),
  254. None,
  255. )?;
  256. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  257. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  258. let _mint_amount = wallet
  259. .mint(&mint_quote.id, SplitTarget::default(), None)
  260. .await?;
  261. let fake_description = FakeInvoiceDescription::default();
  262. let invoice = create_fake_invoice(9000, serde_json::to_string(&fake_description).unwrap());
  263. let proofs = wallet.get_unspent_proofs().await?;
  264. let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
  265. let keyset = wallet.get_active_mint_keyset().await?;
  266. let premint_secrets = PreMintSecrets::random(keyset.id, 100.into(), &SplitTarget::default())?;
  267. let client = HttpClient::new(MINT_URL.parse()?);
  268. let melt_request = MeltBolt11Request {
  269. quote: melt_quote.id.clone(),
  270. inputs: proofs.clone(),
  271. outputs: Some(premint_secrets.blinded_messages()),
  272. };
  273. let melt_response = client.post_melt(melt_request).await?;
  274. assert!(melt_response.change.is_some());
  275. let check = wallet.melt_quote_status(&melt_quote.id).await?;
  276. let mut melt_change = melt_response.change.unwrap();
  277. melt_change.sort_by(|a, b| a.amount.cmp(&b.amount));
  278. let mut check = check.change.unwrap();
  279. check.sort_by(|a, b| a.amount.cmp(&b.amount));
  280. assert_eq!(melt_change, check);
  281. Ok(())
  282. }
  283. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  284. async fn test_fake_mint_with_witness() -> Result<()> {
  285. let wallet = Wallet::new(
  286. MINT_URL,
  287. CurrencyUnit::Sat,
  288. Arc::new(WalletMemoryDatabase::default()),
  289. &Mnemonic::generate(12)?.to_seed_normalized(""),
  290. None,
  291. )?;
  292. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  293. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  294. let proofs = wallet
  295. .mint(&mint_quote.id, SplitTarget::default(), None)
  296. .await?;
  297. let mint_amount = proofs.total_amount()?;
  298. assert!(mint_amount == 100.into());
  299. Ok(())
  300. }
  301. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  302. async fn test_fake_mint_without_witness() -> Result<()> {
  303. let wallet = Wallet::new(
  304. MINT_URL,
  305. CurrencyUnit::Sat,
  306. Arc::new(WalletMemoryDatabase::default()),
  307. &Mnemonic::generate(12)?.to_seed_normalized(""),
  308. None,
  309. )?;
  310. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  311. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  312. let http_client = HttpClient::new(MINT_URL.parse()?);
  313. let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
  314. let premint_secrets =
  315. PreMintSecrets::random(active_keyset_id, 100.into(), &SplitTarget::default()).unwrap();
  316. let request = MintBolt11Request {
  317. quote: mint_quote.id,
  318. outputs: premint_secrets.blinded_messages(),
  319. signature: None,
  320. };
  321. let response = http_client.post_mint(request.clone()).await;
  322. match response {
  323. Err(cdk::error::Error::SignatureMissingOrInvalid) => Ok(()),
  324. Err(err) => bail!("Wrong mint response for minting without witness: {}", err),
  325. Ok(_) => bail!("Minting should not have succeed without a witness"),
  326. }
  327. }
  328. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  329. async fn test_fake_mint_with_wrong_witness() -> Result<()> {
  330. let wallet = Wallet::new(
  331. MINT_URL,
  332. CurrencyUnit::Sat,
  333. Arc::new(WalletMemoryDatabase::default()),
  334. &Mnemonic::generate(12)?.to_seed_normalized(""),
  335. None,
  336. )?;
  337. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  338. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  339. let http_client = HttpClient::new(MINT_URL.parse()?);
  340. let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
  341. let premint_secrets =
  342. PreMintSecrets::random(active_keyset_id, 100.into(), &SplitTarget::default()).unwrap();
  343. let mut request = MintBolt11Request {
  344. quote: mint_quote.id,
  345. outputs: premint_secrets.blinded_messages(),
  346. signature: None,
  347. };
  348. let secret_key = SecretKey::generate();
  349. request.sign(secret_key)?;
  350. let response = http_client.post_mint(request.clone()).await;
  351. match response {
  352. Err(cdk::error::Error::SignatureMissingOrInvalid) => Ok(()),
  353. Err(err) => bail!("Wrong mint response for minting without witness: {}", err),
  354. Ok(_) => bail!("Minting should not have succeed without a witness"),
  355. }
  356. }
  357. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  358. async fn test_fake_mint_inflated() -> Result<()> {
  359. let wallet = Wallet::new(
  360. MINT_URL,
  361. CurrencyUnit::Sat,
  362. Arc::new(WalletMemoryDatabase::default()),
  363. &Mnemonic::generate(12)?.to_seed_normalized(""),
  364. None,
  365. )?;
  366. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  367. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  368. let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
  369. let pre_mint = PreMintSecrets::random(active_keyset_id, 500.into(), &SplitTarget::None)?;
  370. let quote_info = wallet
  371. .localstore
  372. .get_mint_quote(&mint_quote.id)
  373. .await?
  374. .expect("there is a quote");
  375. let mut mint_request = MintBolt11Request {
  376. quote: mint_quote.id,
  377. outputs: pre_mint.blinded_messages(),
  378. signature: None,
  379. };
  380. if let Some(secret_key) = quote_info.secret_key {
  381. mint_request.sign(secret_key)?;
  382. }
  383. let http_client = HttpClient::new(MINT_URL.parse()?);
  384. let response = http_client.post_mint(mint_request.clone()).await;
  385. match response {
  386. Err(err) => match err {
  387. cdk::Error::TransactionUnbalanced(_, _, _) => (),
  388. err => {
  389. bail!("Wrong mint error returned: {}", err.to_string());
  390. }
  391. },
  392. Ok(_) => {
  393. bail!("Should not have allowed second payment");
  394. }
  395. }
  396. Ok(())
  397. }
  398. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  399. async fn test_fake_mint_multiple_units() -> Result<()> {
  400. let wallet = Wallet::new(
  401. MINT_URL,
  402. CurrencyUnit::Sat,
  403. Arc::new(WalletMemoryDatabase::default()),
  404. &Mnemonic::generate(12)?.to_seed_normalized(""),
  405. None,
  406. )?;
  407. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  408. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  409. let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
  410. let pre_mint = PreMintSecrets::random(active_keyset_id, 50.into(), &SplitTarget::None)?;
  411. let wallet_usd = Wallet::new(
  412. MINT_URL,
  413. CurrencyUnit::Usd,
  414. Arc::new(WalletMemoryDatabase::default()),
  415. &Mnemonic::generate(12)?.to_seed_normalized(""),
  416. None,
  417. )?;
  418. let active_keyset_id = wallet_usd.get_active_mint_keyset().await?.id;
  419. let usd_pre_mint = PreMintSecrets::random(active_keyset_id, 50.into(), &SplitTarget::None)?;
  420. let quote_info = wallet
  421. .localstore
  422. .get_mint_quote(&mint_quote.id)
  423. .await?
  424. .expect("there is a quote");
  425. let mut sat_outputs = pre_mint.blinded_messages();
  426. let mut usd_outputs = usd_pre_mint.blinded_messages();
  427. sat_outputs.append(&mut usd_outputs);
  428. let mut mint_request = MintBolt11Request {
  429. quote: mint_quote.id,
  430. outputs: sat_outputs,
  431. signature: None,
  432. };
  433. if let Some(secret_key) = quote_info.secret_key {
  434. mint_request.sign(secret_key)?;
  435. }
  436. let http_client = HttpClient::new(MINT_URL.parse()?);
  437. let response = http_client.post_mint(mint_request.clone()).await;
  438. match response {
  439. Err(err) => match err {
  440. cdk::Error::MultipleUnits => (),
  441. err => {
  442. bail!("Wrong mint error returned: {}", err.to_string());
  443. }
  444. },
  445. Ok(_) => {
  446. bail!("Should not have allowed to mint with multiple units");
  447. }
  448. }
  449. Ok(())
  450. }
  451. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  452. async fn test_fake_mint_multiple_unit_swap() -> Result<()> {
  453. let wallet = Wallet::new(
  454. MINT_URL,
  455. CurrencyUnit::Sat,
  456. Arc::new(WalletMemoryDatabase::default()),
  457. &Mnemonic::generate(12)?.to_seed_normalized(""),
  458. None,
  459. )?;
  460. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  461. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  462. let proofs = wallet.mint(&mint_quote.id, SplitTarget::None, None).await?;
  463. let wallet_usd = Wallet::new(
  464. MINT_URL,
  465. CurrencyUnit::Usd,
  466. Arc::new(WalletMemoryDatabase::default()),
  467. &Mnemonic::generate(12)?.to_seed_normalized(""),
  468. None,
  469. )?;
  470. let mint_quote = wallet_usd.mint_quote(100.into(), None).await?;
  471. wait_for_mint_to_be_paid(&wallet_usd, &mint_quote.id, 60).await?;
  472. let usd_proofs = wallet_usd
  473. .mint(&mint_quote.id, SplitTarget::None, None)
  474. .await?;
  475. let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
  476. {
  477. let inputs: Proofs = vec![
  478. proofs.first().expect("There is a proof").clone(),
  479. usd_proofs.first().expect("There is a proof").clone(),
  480. ];
  481. let pre_mint =
  482. PreMintSecrets::random(active_keyset_id, inputs.total_amount()?, &SplitTarget::None)?;
  483. let swap_request = SwapRequest {
  484. inputs,
  485. outputs: pre_mint.blinded_messages(),
  486. };
  487. let http_client = HttpClient::new(MINT_URL.parse()?);
  488. let response = http_client.post_swap(swap_request.clone()).await;
  489. match response {
  490. Err(err) => match err {
  491. cdk::Error::MultipleUnits => (),
  492. err => {
  493. bail!("Wrong mint error returned: {}", err.to_string());
  494. }
  495. },
  496. Ok(_) => {
  497. bail!("Should not have allowed to mint with multiple units");
  498. }
  499. }
  500. }
  501. {
  502. let usd_active_keyset_id = wallet_usd.get_active_mint_keyset().await?.id;
  503. let inputs: Proofs = proofs.into_iter().take(2).collect();
  504. let total_inputs = inputs.total_amount()?;
  505. let half = total_inputs / 2.into();
  506. let usd_pre_mint = PreMintSecrets::random(usd_active_keyset_id, half, &SplitTarget::None)?;
  507. let pre_mint =
  508. PreMintSecrets::random(active_keyset_id, total_inputs - half, &SplitTarget::None)?;
  509. let mut usd_outputs = usd_pre_mint.blinded_messages();
  510. let mut sat_outputs = pre_mint.blinded_messages();
  511. usd_outputs.append(&mut sat_outputs);
  512. let swap_request = SwapRequest {
  513. inputs,
  514. outputs: usd_outputs,
  515. };
  516. let http_client = HttpClient::new(MINT_URL.parse()?);
  517. let response = http_client.post_swap(swap_request.clone()).await;
  518. match response {
  519. Err(err) => match err {
  520. cdk::Error::MultipleUnits => (),
  521. err => {
  522. bail!("Wrong mint error returned: {}", err.to_string());
  523. }
  524. },
  525. Ok(_) => {
  526. bail!("Should not have allowed to mint with multiple units");
  527. }
  528. }
  529. }
  530. Ok(())
  531. }
  532. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  533. async fn test_fake_mint_multiple_unit_melt() -> Result<()> {
  534. let wallet = Wallet::new(
  535. MINT_URL,
  536. CurrencyUnit::Sat,
  537. Arc::new(WalletMemoryDatabase::default()),
  538. &Mnemonic::generate(12)?.to_seed_normalized(""),
  539. None,
  540. )?;
  541. let mint_quote = wallet.mint_quote(100.into(), None).await.unwrap();
  542. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  543. let proofs = wallet
  544. .mint(&mint_quote.id, SplitTarget::None, None)
  545. .await
  546. .unwrap();
  547. println!("Minted sat");
  548. let wallet_usd = Wallet::new(
  549. MINT_URL,
  550. CurrencyUnit::Usd,
  551. Arc::new(WalletMemoryDatabase::default()),
  552. &Mnemonic::generate(12)?.to_seed_normalized(""),
  553. None,
  554. )?;
  555. let mint_quote = wallet_usd.mint_quote(100.into(), None).await.unwrap();
  556. println!("Minted quote usd");
  557. wait_for_mint_to_be_paid(&wallet_usd, &mint_quote.id, 60).await?;
  558. let usd_proofs = wallet_usd
  559. .mint(&mint_quote.id, SplitTarget::None, None)
  560. .await
  561. .unwrap();
  562. {
  563. let inputs: Proofs = vec![
  564. proofs.first().expect("There is a proof").clone(),
  565. usd_proofs.first().expect("There is a proof").clone(),
  566. ];
  567. let input_amount: u64 = inputs.total_amount()?.into();
  568. let invoice = create_fake_invoice((input_amount - 1) * 1000, "".to_string());
  569. let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
  570. let melt_request = MeltBolt11Request {
  571. quote: melt_quote.id,
  572. inputs,
  573. outputs: None,
  574. };
  575. let http_client = HttpClient::new(MINT_URL.parse()?);
  576. let response = http_client.post_melt(melt_request.clone()).await;
  577. match response {
  578. Err(err) => match err {
  579. cdk::Error::MultipleUnits => (),
  580. err => {
  581. bail!("Wrong mint error returned: {}", err.to_string());
  582. }
  583. },
  584. Ok(_) => {
  585. bail!("Should not have allowed to melt with multiple units");
  586. }
  587. }
  588. }
  589. {
  590. let inputs: Proofs = vec![proofs.first().expect("There is a proof").clone()];
  591. let input_amount: u64 = inputs.total_amount()?.into();
  592. let invoice = create_fake_invoice((input_amount - 1) * 1000, "".to_string());
  593. let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
  594. let usd_active_keyset_id = wallet_usd.get_active_mint_keyset().await?.id;
  595. let usd_pre_mint = PreMintSecrets::random(
  596. usd_active_keyset_id,
  597. inputs.total_amount()? + 100.into(),
  598. &SplitTarget::None,
  599. )?;
  600. let pre_mint = PreMintSecrets::random(active_keyset_id, 100.into(), &SplitTarget::None)?;
  601. let mut usd_outputs = usd_pre_mint.blinded_messages();
  602. let mut sat_outputs = pre_mint.blinded_messages();
  603. usd_outputs.append(&mut sat_outputs);
  604. let quote = wallet.melt_quote(invoice.to_string(), None).await?;
  605. let melt_request = MeltBolt11Request {
  606. quote: quote.id,
  607. inputs,
  608. outputs: Some(usd_outputs),
  609. };
  610. let http_client = HttpClient::new(MINT_URL.parse()?);
  611. let response = http_client.post_melt(melt_request.clone()).await;
  612. match response {
  613. Err(err) => match err {
  614. cdk::Error::MultipleUnits => (),
  615. err => {
  616. bail!("Wrong mint error returned: {}", err.to_string());
  617. }
  618. },
  619. Ok(_) => {
  620. bail!("Should not have allowed to melt with multiple units");
  621. }
  622. }
  623. }
  624. Ok(())
  625. }
  626. /// Test swap where input unit != output unit
  627. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  628. async fn test_fake_mint_input_output_mismatch() -> Result<()> {
  629. let wallet = Wallet::new(
  630. MINT_URL,
  631. CurrencyUnit::Sat,
  632. Arc::new(WalletMemoryDatabase::default()),
  633. &Mnemonic::generate(12)?.to_seed_normalized(""),
  634. None,
  635. )?;
  636. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  637. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  638. let proofs = wallet.mint(&mint_quote.id, SplitTarget::None, None).await?;
  639. let wallet_usd = Wallet::new(
  640. MINT_URL,
  641. CurrencyUnit::Usd,
  642. Arc::new(WalletMemoryDatabase::default()),
  643. &Mnemonic::generate(12)?.to_seed_normalized(""),
  644. None,
  645. )?;
  646. let usd_active_keyset_id = wallet_usd.get_active_mint_keyset().await?.id;
  647. let inputs = proofs;
  648. let pre_mint = PreMintSecrets::random(
  649. usd_active_keyset_id,
  650. inputs.total_amount()?,
  651. &SplitTarget::None,
  652. )?;
  653. let swap_request = SwapRequest {
  654. inputs,
  655. outputs: pre_mint.blinded_messages(),
  656. };
  657. let http_client = HttpClient::new(MINT_URL.parse()?);
  658. let response = http_client.post_swap(swap_request.clone()).await;
  659. match response {
  660. Err(err) => match err {
  661. cdk::Error::UnitMismatch => (),
  662. err => {
  663. bail!("Wrong error returned: {}", err);
  664. }
  665. },
  666. Ok(_) => {
  667. bail!("Should not have allowed to mint with multiple units");
  668. }
  669. }
  670. Ok(())
  671. }
  672. /// Test swap where input is less the output
  673. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  674. async fn test_fake_mint_swap_inflated() -> Result<()> {
  675. let wallet = Wallet::new(
  676. MINT_URL,
  677. CurrencyUnit::Sat,
  678. Arc::new(WalletMemoryDatabase::default()),
  679. &Mnemonic::generate(12)?.to_seed_normalized(""),
  680. None,
  681. )?;
  682. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  683. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  684. let proofs = wallet.mint(&mint_quote.id, SplitTarget::None, None).await?;
  685. let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
  686. let pre_mint = PreMintSecrets::random(active_keyset_id, 101.into(), &SplitTarget::None)?;
  687. let swap_request = SwapRequest {
  688. inputs: proofs,
  689. outputs: pre_mint.blinded_messages(),
  690. };
  691. let http_client = HttpClient::new(MINT_URL.parse()?);
  692. let response = http_client.post_swap(swap_request.clone()).await;
  693. match response {
  694. Err(err) => match err {
  695. cdk::Error::TransactionUnbalanced(_, _, _) => (),
  696. err => {
  697. bail!("Wrong mint error returned: {}", err.to_string());
  698. }
  699. },
  700. Ok(_) => {
  701. bail!("Should not have allowed to mint with multiple units");
  702. }
  703. }
  704. Ok(())
  705. }
  706. /// Test swap where input unit != output unit
  707. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  708. async fn test_fake_mint_duplicate_proofs_swap() -> Result<()> {
  709. let wallet = Wallet::new(
  710. MINT_URL,
  711. CurrencyUnit::Sat,
  712. Arc::new(WalletMemoryDatabase::default()),
  713. &Mnemonic::generate(12)?.to_seed_normalized(""),
  714. None,
  715. )?;
  716. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  717. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  718. let proofs = wallet.mint(&mint_quote.id, SplitTarget::None, None).await?;
  719. let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
  720. let inputs = vec![proofs[0].clone(), proofs[0].clone()];
  721. let pre_mint =
  722. PreMintSecrets::random(active_keyset_id, inputs.total_amount()?, &SplitTarget::None)?;
  723. let swap_request = SwapRequest {
  724. inputs: inputs.clone(),
  725. outputs: pre_mint.blinded_messages(),
  726. };
  727. let http_client = HttpClient::new(MINT_URL.parse()?);
  728. let response = http_client.post_swap(swap_request.clone()).await;
  729. match response {
  730. Err(err) => match err {
  731. cdk::Error::DuplicateInputs => (),
  732. err => {
  733. bail!(
  734. "Wrong mint error returned, expected duplicate inputs: {}",
  735. err.to_string()
  736. );
  737. }
  738. },
  739. Ok(_) => {
  740. bail!("Should not have allowed duplicate inputs");
  741. }
  742. }
  743. let blinded_message = pre_mint.blinded_messages();
  744. let outputs = vec![blinded_message[0].clone(), blinded_message[0].clone()];
  745. let swap_request = SwapRequest { inputs, outputs };
  746. let http_client = HttpClient::new(MINT_URL.parse()?);
  747. let response = http_client.post_swap(swap_request.clone()).await;
  748. match response {
  749. Err(err) => match err {
  750. cdk::Error::DuplicateOutputs => (),
  751. err => {
  752. bail!(
  753. "Wrong mint error returned, expected duplicate outputs: {}",
  754. err.to_string()
  755. );
  756. }
  757. },
  758. Ok(_) => {
  759. bail!("Should not have allow duplicate inputs");
  760. }
  761. }
  762. Ok(())
  763. }
  764. /// Test duplicate proofs in melt
  765. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  766. async fn test_fake_mint_duplicate_proofs_melt() -> Result<()> {
  767. let wallet = Wallet::new(
  768. MINT_URL,
  769. CurrencyUnit::Sat,
  770. Arc::new(WalletMemoryDatabase::default()),
  771. &Mnemonic::generate(12)?.to_seed_normalized(""),
  772. None,
  773. )?;
  774. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  775. wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
  776. let proofs = wallet.mint(&mint_quote.id, SplitTarget::None, None).await?;
  777. let inputs = vec![proofs[0].clone(), proofs[0].clone()];
  778. let invoice = create_fake_invoice(7000, "".to_string());
  779. let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
  780. let melt_request = MeltBolt11Request {
  781. quote: melt_quote.id,
  782. inputs,
  783. outputs: None,
  784. };
  785. let http_client = HttpClient::new(MINT_URL.parse()?);
  786. let response = http_client.post_melt(melt_request.clone()).await;
  787. match response {
  788. Err(err) => match err {
  789. cdk::Error::DuplicateInputs => (),
  790. err => {
  791. bail!("Wrong mint error returned: {}", err.to_string());
  792. }
  793. },
  794. Ok(_) => {
  795. bail!("Should not have allow duplicate inputs");
  796. }
  797. }
  798. Ok(())
  799. }