12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043 |
- use std::sync::Arc;
- use anyhow::{bail, Result};
- use bip39::Mnemonic;
- use cdk::amount::SplitTarget;
- use cdk::cdk_database::WalletMemoryDatabase;
- use cdk::nuts::nut00::ProofsMethods;
- use cdk::nuts::{
- CurrencyUnit, MeltBolt11Request, MeltQuoteState, MintBolt11Request, PreMintSecrets, Proofs,
- SecretKey, State, SwapRequest,
- };
- use cdk::wallet::client::{HttpClient, MintConnector};
- use cdk::wallet::Wallet;
- use cdk_fake_wallet::{create_fake_invoice, FakeInvoiceDescription};
- use cdk_integration_tests::{attempt_to_swap_pending, wait_for_mint_to_be_paid};
- const MINT_URL: &str = "http://127.0.0.1:8086";
- // If both pay and check return pending input proofs should remain pending
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_tokens_pending() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let _mint_amount = wallet
- .mint(&mint_quote.id, SplitTarget::default(), None)
- .await?;
- let fake_description = FakeInvoiceDescription {
- pay_invoice_state: MeltQuoteState::Pending,
- check_payment_state: MeltQuoteState::Pending,
- pay_err: false,
- check_err: false,
- };
- let invoice = create_fake_invoice(1000, serde_json::to_string(&fake_description).unwrap());
- let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
- let melt = wallet.melt(&melt_quote.id).await;
- assert!(melt.is_err());
- attempt_to_swap_pending(&wallet).await?;
- Ok(())
- }
- // If the pay error fails and the check returns unknown or failed
- // The inputs proofs should be unset as spending
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_melt_payment_fail() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let _mint_amount = wallet
- .mint(&mint_quote.id, SplitTarget::default(), None)
- .await?;
- let fake_description = FakeInvoiceDescription {
- pay_invoice_state: MeltQuoteState::Unknown,
- check_payment_state: MeltQuoteState::Unknown,
- pay_err: true,
- check_err: false,
- };
- let invoice = create_fake_invoice(1000, serde_json::to_string(&fake_description).unwrap());
- let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
- // The melt should error at the payment invoice command
- let melt = wallet.melt(&melt_quote.id).await;
- assert!(melt.is_err());
- let fake_description = FakeInvoiceDescription {
- pay_invoice_state: MeltQuoteState::Failed,
- check_payment_state: MeltQuoteState::Failed,
- pay_err: true,
- check_err: false,
- };
- let invoice = create_fake_invoice(1000, serde_json::to_string(&fake_description).unwrap());
- let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
- // The melt should error at the payment invoice command
- let melt = wallet.melt(&melt_quote.id).await;
- assert!(melt.is_err());
- // The mint should have unset proofs from pending since payment failed
- let all_proof = wallet.get_unspent_proofs().await?;
- let states = wallet.check_proofs_spent(all_proof).await?;
- for state in states {
- assert!(state.state == State::Unspent);
- }
- let wallet_bal = wallet.total_balance().await?;
- assert!(wallet_bal == 100.into());
- Ok(())
- }
- // When both the pay_invoice and check_invoice both fail
- // the proofs should remain as pending
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_melt_payment_fail_and_check() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let _mint_amount = wallet
- .mint(&mint_quote.id, SplitTarget::default(), None)
- .await?;
- let fake_description = FakeInvoiceDescription {
- pay_invoice_state: MeltQuoteState::Unknown,
- check_payment_state: MeltQuoteState::Unknown,
- pay_err: true,
- check_err: true,
- };
- let invoice = create_fake_invoice(7000, serde_json::to_string(&fake_description).unwrap());
- let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
- // The melt should error at the payment invoice command
- let melt = wallet.melt(&melt_quote.id).await;
- assert!(melt.is_err());
- let pending = wallet
- .localstore
- .get_proofs(None, None, Some(vec![State::Pending]), None)
- .await?;
- assert!(!pending.is_empty());
- Ok(())
- }
- // In the case that the ln backend returns a failed status but does not error
- // The mint should do a second check, then remove proofs from pending
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_melt_payment_return_fail_status() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let _mint_amount = wallet
- .mint(&mint_quote.id, SplitTarget::default(), None)
- .await?;
- let fake_description = FakeInvoiceDescription {
- pay_invoice_state: MeltQuoteState::Failed,
- check_payment_state: MeltQuoteState::Failed,
- pay_err: false,
- check_err: false,
- };
- let invoice = create_fake_invoice(7000, serde_json::to_string(&fake_description).unwrap());
- let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
- // The melt should error at the payment invoice command
- let melt = wallet.melt(&melt_quote.id).await;
- assert!(melt.is_err());
- let fake_description = FakeInvoiceDescription {
- pay_invoice_state: MeltQuoteState::Unknown,
- check_payment_state: MeltQuoteState::Unknown,
- pay_err: false,
- check_err: false,
- };
- let invoice = create_fake_invoice(7000, serde_json::to_string(&fake_description).unwrap());
- let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
- // The melt should error at the payment invoice command
- let melt = wallet.melt(&melt_quote.id).await;
- assert!(melt.is_err());
- let pending = wallet
- .localstore
- .get_proofs(None, None, Some(vec![State::Pending]), None)
- .await?;
- assert!(pending.is_empty());
- Ok(())
- }
- // In the case that the ln backend returns a failed status but does not error
- // The mint should do a second check, then remove proofs from pending
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_melt_payment_error_unknown() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let _mint_amount = wallet
- .mint(&mint_quote.id, SplitTarget::default(), None)
- .await?;
- let fake_description = FakeInvoiceDescription {
- pay_invoice_state: MeltQuoteState::Failed,
- check_payment_state: MeltQuoteState::Unknown,
- pay_err: true,
- check_err: false,
- };
- let invoice = create_fake_invoice(7000, serde_json::to_string(&fake_description).unwrap());
- let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
- // The melt should error at the payment invoice command
- let melt = wallet.melt(&melt_quote.id).await;
- assert!(melt.is_err());
- let fake_description = FakeInvoiceDescription {
- pay_invoice_state: MeltQuoteState::Unknown,
- check_payment_state: MeltQuoteState::Unknown,
- pay_err: true,
- check_err: false,
- };
- let invoice = create_fake_invoice(7000, serde_json::to_string(&fake_description).unwrap());
- let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
- // The melt should error at the payment invoice command
- let melt = wallet.melt(&melt_quote.id).await;
- assert!(melt.is_err());
- let pending = wallet
- .localstore
- .get_proofs(None, None, Some(vec![State::Pending]), None)
- .await?;
- assert!(pending.is_empty());
- Ok(())
- }
- // In the case that the ln backend returns an err
- // The mint should do a second check, that returns paid
- // Proofs should remain pending
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_melt_payment_err_paid() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let _mint_amount = wallet
- .mint(&mint_quote.id, SplitTarget::default(), None)
- .await?;
- let fake_description = FakeInvoiceDescription {
- pay_invoice_state: MeltQuoteState::Failed,
- check_payment_state: MeltQuoteState::Paid,
- pay_err: true,
- check_err: false,
- };
- let invoice = create_fake_invoice(7000, serde_json::to_string(&fake_description).unwrap());
- let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
- // The melt should error at the payment invoice command
- let melt = wallet.melt(&melt_quote.id).await;
- assert!(melt.is_err());
- attempt_to_swap_pending(&wallet).await?;
- Ok(())
- }
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_melt_change_in_quote() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let _mint_amount = wallet
- .mint(&mint_quote.id, SplitTarget::default(), None)
- .await?;
- let fake_description = FakeInvoiceDescription::default();
- let invoice = create_fake_invoice(9000, serde_json::to_string(&fake_description).unwrap());
- let proofs = wallet.get_unspent_proofs().await?;
- let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
- let keyset = wallet.get_active_mint_keyset().await?;
- let premint_secrets = PreMintSecrets::random(keyset.id, 100.into(), &SplitTarget::default())?;
- let client = HttpClient::new(MINT_URL.parse()?);
- let melt_request = MeltBolt11Request {
- quote: melt_quote.id.clone(),
- inputs: proofs.clone(),
- outputs: Some(premint_secrets.blinded_messages()),
- };
- let melt_response = client.post_melt(melt_request).await?;
- assert!(melt_response.change.is_some());
- let check = wallet.melt_quote_status(&melt_quote.id).await?;
- let mut melt_change = melt_response.change.unwrap();
- melt_change.sort_by(|a, b| a.amount.cmp(&b.amount));
- let mut check = check.change.unwrap();
- check.sort_by(|a, b| a.amount.cmp(&b.amount));
- assert_eq!(melt_change, check);
- Ok(())
- }
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_mint_with_witness() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let proofs = wallet
- .mint(&mint_quote.id, SplitTarget::default(), None)
- .await?;
- let mint_amount = proofs.total_amount()?;
- assert!(mint_amount == 100.into());
- Ok(())
- }
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_mint_without_witness() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let http_client = HttpClient::new(MINT_URL.parse()?);
- let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
- let premint_secrets =
- PreMintSecrets::random(active_keyset_id, 100.into(), &SplitTarget::default()).unwrap();
- let request = MintBolt11Request {
- quote: mint_quote.id,
- outputs: premint_secrets.blinded_messages(),
- signature: None,
- };
- let response = http_client.post_mint(request.clone()).await;
- match response {
- Err(cdk::error::Error::SignatureMissingOrInvalid) => Ok(()),
- Err(err) => bail!("Wrong mint response for minting without witness: {}", err),
- Ok(_) => bail!("Minting should not have succeed without a witness"),
- }
- }
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_mint_with_wrong_witness() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let http_client = HttpClient::new(MINT_URL.parse()?);
- let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
- let premint_secrets =
- PreMintSecrets::random(active_keyset_id, 100.into(), &SplitTarget::default()).unwrap();
- let mut request = MintBolt11Request {
- quote: mint_quote.id,
- outputs: premint_secrets.blinded_messages(),
- signature: None,
- };
- let secret_key = SecretKey::generate();
- request.sign(secret_key)?;
- let response = http_client.post_mint(request.clone()).await;
- match response {
- Err(cdk::error::Error::SignatureMissingOrInvalid) => Ok(()),
- Err(err) => bail!("Wrong mint response for minting without witness: {}", err),
- Ok(_) => bail!("Minting should not have succeed without a witness"),
- }
- }
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_mint_inflated() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
- let pre_mint = PreMintSecrets::random(active_keyset_id, 500.into(), &SplitTarget::None)?;
- let quote_info = wallet
- .localstore
- .get_mint_quote(&mint_quote.id)
- .await?
- .expect("there is a quote");
- let mut mint_request = MintBolt11Request {
- quote: mint_quote.id,
- outputs: pre_mint.blinded_messages(),
- signature: None,
- };
- if let Some(secret_key) = quote_info.secret_key {
- mint_request.sign(secret_key)?;
- }
- let http_client = HttpClient::new(MINT_URL.parse()?);
- let response = http_client.post_mint(mint_request.clone()).await;
- match response {
- Err(err) => match err {
- cdk::Error::TransactionUnbalanced(_, _, _) => (),
- err => {
- bail!("Wrong mint error returned: {}", err.to_string());
- }
- },
- Ok(_) => {
- bail!("Should not have allowed second payment");
- }
- }
- Ok(())
- }
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_mint_multiple_units() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
- let pre_mint = PreMintSecrets::random(active_keyset_id, 50.into(), &SplitTarget::None)?;
- let wallet_usd = Wallet::new(
- MINT_URL,
- CurrencyUnit::Usd,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let active_keyset_id = wallet_usd.get_active_mint_keyset().await?.id;
- let usd_pre_mint = PreMintSecrets::random(active_keyset_id, 50.into(), &SplitTarget::None)?;
- let quote_info = wallet
- .localstore
- .get_mint_quote(&mint_quote.id)
- .await?
- .expect("there is a quote");
- let mut sat_outputs = pre_mint.blinded_messages();
- let mut usd_outputs = usd_pre_mint.blinded_messages();
- sat_outputs.append(&mut usd_outputs);
- let mut mint_request = MintBolt11Request {
- quote: mint_quote.id,
- outputs: sat_outputs,
- signature: None,
- };
- if let Some(secret_key) = quote_info.secret_key {
- mint_request.sign(secret_key)?;
- }
- let http_client = HttpClient::new(MINT_URL.parse()?);
- let response = http_client.post_mint(mint_request.clone()).await;
- match response {
- Err(err) => match err {
- cdk::Error::MultipleUnits => (),
- err => {
- bail!("Wrong mint error returned: {}", err.to_string());
- }
- },
- Ok(_) => {
- bail!("Should not have allowed to mint with multiple units");
- }
- }
- Ok(())
- }
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_mint_multiple_unit_swap() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let proofs = wallet.mint(&mint_quote.id, SplitTarget::None, None).await?;
- let wallet_usd = Wallet::new(
- MINT_URL,
- CurrencyUnit::Usd,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet_usd.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet_usd, &mint_quote.id, 60).await?;
- let usd_proofs = wallet_usd
- .mint(&mint_quote.id, SplitTarget::None, None)
- .await?;
- let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
- {
- let inputs: Proofs = vec![
- proofs.first().expect("There is a proof").clone(),
- usd_proofs.first().expect("There is a proof").clone(),
- ];
- let pre_mint =
- PreMintSecrets::random(active_keyset_id, inputs.total_amount()?, &SplitTarget::None)?;
- let swap_request = SwapRequest {
- inputs,
- outputs: pre_mint.blinded_messages(),
- };
- let http_client = HttpClient::new(MINT_URL.parse()?);
- let response = http_client.post_swap(swap_request.clone()).await;
- match response {
- Err(err) => match err {
- cdk::Error::MultipleUnits => (),
- err => {
- bail!("Wrong mint error returned: {}", err.to_string());
- }
- },
- Ok(_) => {
- bail!("Should not have allowed to mint with multiple units");
- }
- }
- }
- {
- let usd_active_keyset_id = wallet_usd.get_active_mint_keyset().await?.id;
- let inputs: Proofs = proofs.into_iter().take(2).collect();
- let total_inputs = inputs.total_amount()?;
- let half = total_inputs / 2.into();
- let usd_pre_mint = PreMintSecrets::random(usd_active_keyset_id, half, &SplitTarget::None)?;
- let pre_mint =
- PreMintSecrets::random(active_keyset_id, total_inputs - half, &SplitTarget::None)?;
- let mut usd_outputs = usd_pre_mint.blinded_messages();
- let mut sat_outputs = pre_mint.blinded_messages();
- usd_outputs.append(&mut sat_outputs);
- let swap_request = SwapRequest {
- inputs,
- outputs: usd_outputs,
- };
- let http_client = HttpClient::new(MINT_URL.parse()?);
- let response = http_client.post_swap(swap_request.clone()).await;
- match response {
- Err(err) => match err {
- cdk::Error::MultipleUnits => (),
- err => {
- bail!("Wrong mint error returned: {}", err.to_string());
- }
- },
- Ok(_) => {
- bail!("Should not have allowed to mint with multiple units");
- }
- }
- }
- Ok(())
- }
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_mint_multiple_unit_melt() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await.unwrap();
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let proofs = wallet
- .mint(&mint_quote.id, SplitTarget::None, None)
- .await
- .unwrap();
- println!("Minted sat");
- let wallet_usd = Wallet::new(
- MINT_URL,
- CurrencyUnit::Usd,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet_usd.mint_quote(100.into(), None).await.unwrap();
- println!("Minted quote usd");
- wait_for_mint_to_be_paid(&wallet_usd, &mint_quote.id, 60).await?;
- let usd_proofs = wallet_usd
- .mint(&mint_quote.id, SplitTarget::None, None)
- .await
- .unwrap();
- {
- let inputs: Proofs = vec![
- proofs.first().expect("There is a proof").clone(),
- usd_proofs.first().expect("There is a proof").clone(),
- ];
- let input_amount: u64 = inputs.total_amount()?.into();
- let invoice = create_fake_invoice((input_amount - 1) * 1000, "".to_string());
- let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
- let melt_request = MeltBolt11Request {
- quote: melt_quote.id,
- inputs,
- outputs: None,
- };
- let http_client = HttpClient::new(MINT_URL.parse()?);
- let response = http_client.post_melt(melt_request.clone()).await;
- match response {
- Err(err) => match err {
- cdk::Error::MultipleUnits => (),
- err => {
- bail!("Wrong mint error returned: {}", err.to_string());
- }
- },
- Ok(_) => {
- bail!("Should not have allowed to melt with multiple units");
- }
- }
- }
- {
- let inputs: Proofs = vec![proofs.first().expect("There is a proof").clone()];
- let input_amount: u64 = inputs.total_amount()?.into();
- let invoice = create_fake_invoice((input_amount - 1) * 1000, "".to_string());
- let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
- let usd_active_keyset_id = wallet_usd.get_active_mint_keyset().await?.id;
- let usd_pre_mint = PreMintSecrets::random(
- usd_active_keyset_id,
- inputs.total_amount()? + 100.into(),
- &SplitTarget::None,
- )?;
- let pre_mint = PreMintSecrets::random(active_keyset_id, 100.into(), &SplitTarget::None)?;
- let mut usd_outputs = usd_pre_mint.blinded_messages();
- let mut sat_outputs = pre_mint.blinded_messages();
- usd_outputs.append(&mut sat_outputs);
- let quote = wallet.melt_quote(invoice.to_string(), None).await?;
- let melt_request = MeltBolt11Request {
- quote: quote.id,
- inputs,
- outputs: Some(usd_outputs),
- };
- let http_client = HttpClient::new(MINT_URL.parse()?);
- let response = http_client.post_melt(melt_request.clone()).await;
- match response {
- Err(err) => match err {
- cdk::Error::MultipleUnits => (),
- err => {
- bail!("Wrong mint error returned: {}", err.to_string());
- }
- },
- Ok(_) => {
- bail!("Should not have allowed to melt with multiple units");
- }
- }
- }
- Ok(())
- }
- /// Test swap where input unit != output unit
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_mint_input_output_mismatch() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let proofs = wallet.mint(&mint_quote.id, SplitTarget::None, None).await?;
- let wallet_usd = Wallet::new(
- MINT_URL,
- CurrencyUnit::Usd,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let usd_active_keyset_id = wallet_usd.get_active_mint_keyset().await?.id;
- let inputs = proofs;
- let pre_mint = PreMintSecrets::random(
- usd_active_keyset_id,
- inputs.total_amount()?,
- &SplitTarget::None,
- )?;
- let swap_request = SwapRequest {
- inputs,
- outputs: pre_mint.blinded_messages(),
- };
- let http_client = HttpClient::new(MINT_URL.parse()?);
- let response = http_client.post_swap(swap_request.clone()).await;
- match response {
- Err(err) => match err {
- cdk::Error::UnitMismatch => (),
- err => {
- bail!("Wrong error returned: {}", err);
- }
- },
- Ok(_) => {
- bail!("Should not have allowed to mint with multiple units");
- }
- }
- Ok(())
- }
- /// Test swap where input is less the output
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_mint_swap_inflated() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let proofs = wallet.mint(&mint_quote.id, SplitTarget::None, None).await?;
- let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
- let pre_mint = PreMintSecrets::random(active_keyset_id, 101.into(), &SplitTarget::None)?;
- let swap_request = SwapRequest {
- inputs: proofs,
- outputs: pre_mint.blinded_messages(),
- };
- let http_client = HttpClient::new(MINT_URL.parse()?);
- let response = http_client.post_swap(swap_request.clone()).await;
- match response {
- Err(err) => match err {
- cdk::Error::TransactionUnbalanced(_, _, _) => (),
- err => {
- bail!("Wrong mint error returned: {}", err.to_string());
- }
- },
- Ok(_) => {
- bail!("Should not have allowed to mint with multiple units");
- }
- }
- Ok(())
- }
- /// Test swap where input unit != output unit
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_mint_duplicate_proofs_swap() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let proofs = wallet.mint(&mint_quote.id, SplitTarget::None, None).await?;
- let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
- let inputs = vec![proofs[0].clone(), proofs[0].clone()];
- let pre_mint =
- PreMintSecrets::random(active_keyset_id, inputs.total_amount()?, &SplitTarget::None)?;
- let swap_request = SwapRequest {
- inputs: inputs.clone(),
- outputs: pre_mint.blinded_messages(),
- };
- let http_client = HttpClient::new(MINT_URL.parse()?);
- let response = http_client.post_swap(swap_request.clone()).await;
- match response {
- Err(err) => match err {
- cdk::Error::DuplicateInputs => (),
- err => {
- bail!(
- "Wrong mint error returned, expected duplicate inputs: {}",
- err.to_string()
- );
- }
- },
- Ok(_) => {
- bail!("Should not have allowed duplicate inputs");
- }
- }
- let blinded_message = pre_mint.blinded_messages();
- let outputs = vec![blinded_message[0].clone(), blinded_message[0].clone()];
- let swap_request = SwapRequest { inputs, outputs };
- let http_client = HttpClient::new(MINT_URL.parse()?);
- let response = http_client.post_swap(swap_request.clone()).await;
- match response {
- Err(err) => match err {
- cdk::Error::DuplicateOutputs => (),
- err => {
- bail!(
- "Wrong mint error returned, expected duplicate outputs: {}",
- err.to_string()
- );
- }
- },
- Ok(_) => {
- bail!("Should not have allow duplicate inputs");
- }
- }
- Ok(())
- }
- /// Test duplicate proofs in melt
- #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
- async fn test_fake_mint_duplicate_proofs_melt() -> Result<()> {
- let wallet = Wallet::new(
- MINT_URL,
- CurrencyUnit::Sat,
- Arc::new(WalletMemoryDatabase::default()),
- &Mnemonic::generate(12)?.to_seed_normalized(""),
- None,
- )?;
- let mint_quote = wallet.mint_quote(100.into(), None).await?;
- wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
- let proofs = wallet.mint(&mint_quote.id, SplitTarget::None, None).await?;
- let inputs = vec![proofs[0].clone(), proofs[0].clone()];
- let invoice = create_fake_invoice(7000, "".to_string());
- let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
- let melt_request = MeltBolt11Request {
- quote: melt_quote.id,
- inputs,
- outputs: None,
- };
- let http_client = HttpClient::new(MINT_URL.parse()?);
- let response = http_client.post_melt(melt_request.clone()).await;
- match response {
- Err(err) => match err {
- cdk::Error::DuplicateInputs => (),
- err => {
- bail!("Wrong mint error returned: {}", err.to_string());
- }
- },
- Ok(_) => {
- bail!("Should not have allow duplicate inputs");
- }
- }
- Ok(())
- }
|