init_pure_tests.rs 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. use std::collections::{HashMap, HashSet};
  2. use std::fmt::{Debug, Formatter};
  3. use std::str::FromStr;
  4. use std::sync::Arc;
  5. use async_trait::async_trait;
  6. use bip39::Mnemonic;
  7. use cdk::amount::SplitTarget;
  8. use cdk::cdk_database::mint_memory::MintMemoryDatabase;
  9. use cdk::cdk_database::{MintDatabase, WalletMemoryDatabase};
  10. use cdk::mint::{FeeReserve, MintBuilder, MintMeltLimits};
  11. use cdk::nuts::nut00::ProofsMethods;
  12. use cdk::nuts::{
  13. CheckStateRequest, CheckStateResponse, CurrencyUnit, Id, KeySet, KeysetResponse,
  14. MeltBolt11Request, MeltQuoteBolt11Request, MeltQuoteBolt11Response, MintBolt11Request,
  15. MintBolt11Response, MintInfo, MintQuoteBolt11Request, MintQuoteBolt11Response, PaymentMethod,
  16. RestoreRequest, RestoreResponse, SwapRequest, SwapResponse,
  17. };
  18. use cdk::types::QuoteTTL;
  19. use cdk::util::unix_time;
  20. use cdk::wallet::client::MintConnector;
  21. use cdk::wallet::Wallet;
  22. use cdk::{Amount, Error, Mint};
  23. use cdk_fake_wallet::FakeWallet;
  24. use tokio::sync::Notify;
  25. use tracing_subscriber::EnvFilter;
  26. use uuid::Uuid;
  27. use crate::wait_for_mint_to_be_paid;
  28. pub struct DirectMintConnection {
  29. pub mint: Arc<Mint>,
  30. }
  31. impl DirectMintConnection {
  32. pub fn new(mint: Arc<Mint>) -> Self {
  33. Self { mint }
  34. }
  35. }
  36. impl Debug for DirectMintConnection {
  37. fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
  38. write!(f, "DirectMintConnection",)
  39. }
  40. }
  41. /// Implements the generic [MintConnector] (i.e. use the interface that expects to communicate
  42. /// to a generic mint, where we don't know that quote ID's are [Uuid]s) for [DirectMintConnection],
  43. /// where we know we're dealing with a mint that uses [Uuid]s for quotes.
  44. /// Convert the requests and responses between the [String] and [Uuid] variants as necessary.
  45. #[async_trait]
  46. impl MintConnector for DirectMintConnection {
  47. async fn get_mint_keys(&self) -> Result<Vec<KeySet>, Error> {
  48. self.mint.pubkeys().await.map(|pks| pks.keysets)
  49. }
  50. async fn get_mint_keyset(&self, keyset_id: Id) -> Result<KeySet, Error> {
  51. self.mint
  52. .keyset(&keyset_id)
  53. .await
  54. .and_then(|res| res.ok_or(Error::UnknownKeySet))
  55. }
  56. async fn get_mint_keysets(&self) -> Result<KeysetResponse, Error> {
  57. self.mint.keysets().await
  58. }
  59. async fn post_mint_quote(
  60. &self,
  61. request: MintQuoteBolt11Request,
  62. ) -> Result<MintQuoteBolt11Response<String>, Error> {
  63. self.mint
  64. .get_mint_bolt11_quote(request)
  65. .await
  66. .map(Into::into)
  67. }
  68. async fn get_mint_quote_status(
  69. &self,
  70. quote_id: &str,
  71. ) -> Result<MintQuoteBolt11Response<String>, Error> {
  72. let quote_id_uuid = Uuid::from_str(quote_id).unwrap();
  73. self.mint
  74. .check_mint_quote(&quote_id_uuid)
  75. .await
  76. .map(Into::into)
  77. }
  78. async fn post_mint(
  79. &self,
  80. request: MintBolt11Request<String>,
  81. ) -> Result<MintBolt11Response, Error> {
  82. let request_uuid = request.try_into().unwrap();
  83. self.mint.process_mint_request(request_uuid).await
  84. }
  85. async fn post_melt_quote(
  86. &self,
  87. request: MeltQuoteBolt11Request,
  88. ) -> Result<MeltQuoteBolt11Response<String>, Error> {
  89. self.mint
  90. .get_melt_bolt11_quote(&request)
  91. .await
  92. .map(Into::into)
  93. }
  94. async fn get_melt_quote_status(
  95. &self,
  96. quote_id: &str,
  97. ) -> Result<MeltQuoteBolt11Response<String>, Error> {
  98. let quote_id_uuid = Uuid::from_str(quote_id).unwrap();
  99. self.mint
  100. .check_melt_quote(&quote_id_uuid)
  101. .await
  102. .map(Into::into)
  103. }
  104. async fn post_melt(
  105. &self,
  106. request: MeltBolt11Request<String>,
  107. ) -> Result<MeltQuoteBolt11Response<String>, Error> {
  108. let request_uuid = request.try_into().unwrap();
  109. self.mint.melt_bolt11(&request_uuid).await.map(Into::into)
  110. }
  111. async fn post_swap(&self, swap_request: SwapRequest) -> Result<SwapResponse, Error> {
  112. self.mint.process_swap_request(swap_request).await
  113. }
  114. async fn get_mint_info(&self) -> Result<MintInfo, Error> {
  115. Ok(self.mint.mint_info().await?.clone().time(unix_time()))
  116. }
  117. async fn post_check_state(
  118. &self,
  119. request: CheckStateRequest,
  120. ) -> Result<CheckStateResponse, Error> {
  121. self.mint.check_state(&request).await
  122. }
  123. async fn post_restore(&self, request: RestoreRequest) -> Result<RestoreResponse, Error> {
  124. self.mint.restore(request).await
  125. }
  126. }
  127. pub async fn create_and_start_test_mint() -> anyhow::Result<Arc<Mint>> {
  128. let default_filter = "debug";
  129. let sqlx_filter = "sqlx=warn";
  130. let hyper_filter = "hyper=warn";
  131. let env_filter = EnvFilter::new(format!(
  132. "{},{},{}",
  133. default_filter, sqlx_filter, hyper_filter
  134. ));
  135. tracing_subscriber::fmt().with_env_filter(env_filter).init();
  136. let mut mint_builder = MintBuilder::new();
  137. let database = MintMemoryDatabase::default();
  138. let localstore = Arc::new(database);
  139. mint_builder = mint_builder.with_localstore(localstore.clone());
  140. let fee_reserve = FeeReserve {
  141. min_fee_reserve: 1.into(),
  142. percent_fee_reserve: 1.0,
  143. };
  144. let ln_fake_backend = Arc::new(FakeWallet::new(
  145. fee_reserve.clone(),
  146. HashMap::default(),
  147. HashSet::default(),
  148. 0,
  149. ));
  150. mint_builder = mint_builder.add_ln_backend(
  151. CurrencyUnit::Sat,
  152. PaymentMethod::Bolt11,
  153. MintMeltLimits::new(1, 1_000),
  154. ln_fake_backend,
  155. );
  156. let mnemonic = Mnemonic::generate(12)?;
  157. mint_builder = mint_builder
  158. .with_name("pure test mint".to_string())
  159. .with_description("pure test mint".to_string())
  160. .with_seed(mnemonic.to_seed_normalized("").to_vec());
  161. localstore
  162. .set_mint_info(mint_builder.mint_info.clone())
  163. .await?;
  164. let quote_ttl = QuoteTTL::new(10000, 10000);
  165. localstore.set_quote_ttl(quote_ttl).await?;
  166. let mint = mint_builder.build().await?;
  167. let mint_arc = Arc::new(mint);
  168. let mint_arc_clone = Arc::clone(&mint_arc);
  169. let shutdown = Arc::new(Notify::new());
  170. tokio::spawn({
  171. let shutdown = Arc::clone(&shutdown);
  172. async move { mint_arc_clone.wait_for_paid_invoices(shutdown).await }
  173. });
  174. Ok(mint_arc)
  175. }
  176. pub fn create_test_wallet_for_mint(mint: Arc<Mint>) -> anyhow::Result<Arc<Wallet>> {
  177. let connector = DirectMintConnection::new(mint);
  178. let seed = Mnemonic::generate(12)?.to_seed_normalized("");
  179. let mint_url = "http://aa".to_string();
  180. let unit = CurrencyUnit::Sat;
  181. let localstore = WalletMemoryDatabase::default();
  182. let mut wallet = Wallet::new(&mint_url, unit, Arc::new(localstore), &seed, None)?;
  183. wallet.set_client(connector);
  184. Ok(Arc::new(wallet))
  185. }
  186. /// Creates a mint quote for the given amount and checks its state in a loop. Returns when
  187. /// amount is minted.
  188. pub async fn fund_wallet(wallet: Arc<Wallet>, amount: u64) -> anyhow::Result<Amount> {
  189. let desired_amount = Amount::from(amount);
  190. let quote = wallet.mint_quote(desired_amount, None).await?;
  191. wait_for_mint_to_be_paid(&wallet, &quote.id, 60).await?;
  192. Ok(wallet
  193. .mint(&quote.id, SplitTarget::default(), None)
  194. .await?
  195. .total_amount()?)
  196. }