regtest.rs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. use std::fmt::Debug;
  2. use std::str::FromStr;
  3. use std::sync::Arc;
  4. use std::time::Duration;
  5. use anyhow::{bail, Result};
  6. use bip39::Mnemonic;
  7. use cdk::amount::{Amount, SplitTarget};
  8. use cdk::cdk_database::WalletMemoryDatabase;
  9. use cdk::nuts::nut00::ProofsMethods;
  10. use cdk::nuts::{
  11. CurrencyUnit, MeltQuoteState, MintBolt11Request, MintQuoteState, NotificationPayload,
  12. PreMintSecrets, State,
  13. };
  14. use cdk::wallet::client::{HttpClient, MintConnector};
  15. use cdk::wallet::{Wallet, WalletSubscription};
  16. use cdk_integration_tests::init_regtest::{
  17. get_cln_dir, get_lnd_dir, get_mint_url, get_mint_ws_url, LND_RPC_ADDR,
  18. };
  19. use futures::{SinkExt, StreamExt};
  20. use lightning_invoice::Bolt11Invoice;
  21. use ln_regtest_rs::ln_client::{ClnClient, LightningClient, LndClient};
  22. use ln_regtest_rs::InvoiceStatus;
  23. use serde_json::json;
  24. use tokio::time::timeout;
  25. use tokio_tungstenite::connect_async;
  26. use tokio_tungstenite::tungstenite::protocol::Message;
  27. // This is the ln wallet we use to send/receive ln payements as the wallet
  28. async fn init_lnd_client() -> LndClient {
  29. let lnd_dir = get_lnd_dir("one");
  30. let cert_file = lnd_dir.join("tls.cert");
  31. let macaroon_file = lnd_dir.join("data/chain/bitcoin/regtest/admin.macaroon");
  32. LndClient::new(
  33. format!("https://{}", LND_RPC_ADDR),
  34. cert_file,
  35. macaroon_file,
  36. )
  37. .await
  38. .unwrap()
  39. }
  40. async fn get_notification<T: StreamExt<Item = Result<Message, E>> + Unpin, E: Debug>(
  41. reader: &mut T,
  42. timeout_to_wait: Duration,
  43. ) -> (String, NotificationPayload<String>) {
  44. let msg = timeout(timeout_to_wait, reader.next())
  45. .await
  46. .expect("timeout")
  47. .unwrap()
  48. .unwrap();
  49. let mut response: serde_json::Value =
  50. serde_json::from_str(msg.to_text().unwrap()).expect("valid json");
  51. let mut params_raw = response
  52. .as_object_mut()
  53. .expect("object")
  54. .remove("params")
  55. .expect("valid params");
  56. let params_map = params_raw.as_object_mut().expect("params is object");
  57. (
  58. params_map
  59. .remove("subId")
  60. .unwrap()
  61. .as_str()
  62. .unwrap()
  63. .to_string(),
  64. serde_json::from_value(params_map.remove("payload").unwrap()).unwrap(),
  65. )
  66. }
  67. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  68. async fn test_regtest_mint_melt_round_trip() -> Result<()> {
  69. let lnd_client = init_lnd_client().await;
  70. let wallet = Wallet::new(
  71. &get_mint_url(),
  72. CurrencyUnit::Sat,
  73. Arc::new(WalletMemoryDatabase::default()),
  74. &Mnemonic::generate(12)?.to_seed_normalized(""),
  75. None,
  76. )?;
  77. let (ws_stream, _) = connect_async(get_mint_ws_url())
  78. .await
  79. .expect("Failed to connect");
  80. let (mut write, mut reader) = ws_stream.split();
  81. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  82. lnd_client.pay_invoice(mint_quote.request).await.unwrap();
  83. let proofs = wallet
  84. .mint(&mint_quote.id, SplitTarget::default(), None)
  85. .await?;
  86. let mint_amount = proofs.total_amount()?;
  87. assert!(mint_amount == 100.into());
  88. let invoice = lnd_client.create_invoice(Some(50)).await?;
  89. let melt = wallet.melt_quote(invoice, None).await?;
  90. write
  91. .send(Message::Text(serde_json::to_string(&json!({
  92. "jsonrpc": "2.0",
  93. "id": 2,
  94. "method": "subscribe",
  95. "params": {
  96. "kind": "bolt11_melt_quote",
  97. "filters": [
  98. melt.id.clone(),
  99. ],
  100. "subId": "test-sub",
  101. }
  102. }))?))
  103. .await?;
  104. assert_eq!(
  105. reader.next().await.unwrap().unwrap().to_text().unwrap(),
  106. r#"{"jsonrpc":"2.0","result":{"status":"OK","subId":"test-sub"},"id":2}"#
  107. );
  108. let melt_response = wallet.melt(&melt.id).await.unwrap();
  109. assert!(melt_response.preimage.is_some());
  110. assert!(melt_response.state == MeltQuoteState::Paid);
  111. let (sub_id, payload) = get_notification(&mut reader, Duration::from_millis(15000)).await;
  112. // first message is the current state
  113. assert_eq!("test-sub", sub_id);
  114. let payload = match payload {
  115. NotificationPayload::MeltQuoteBolt11Response(melt) => melt,
  116. _ => panic!("Wrong payload"),
  117. };
  118. assert_eq!(payload.amount + payload.fee_reserve, 100.into());
  119. assert_eq!(payload.quote.to_string(), melt.id);
  120. assert_eq!(payload.state, MeltQuoteState::Unpaid);
  121. // get current state
  122. let (sub_id, payload) = get_notification(&mut reader, Duration::from_millis(15000)).await;
  123. assert_eq!("test-sub", sub_id);
  124. let payload = match payload {
  125. NotificationPayload::MeltQuoteBolt11Response(melt) => melt,
  126. _ => panic!("Wrong payload"),
  127. };
  128. assert_eq!(payload.amount + payload.fee_reserve, 100.into());
  129. assert_eq!(payload.quote.to_string(), melt.id);
  130. assert_eq!(payload.state, MeltQuoteState::Paid);
  131. Ok(())
  132. }
  133. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  134. async fn test_regtest_mint_melt() -> Result<()> {
  135. let lnd_client = init_lnd_client().await;
  136. let wallet = Wallet::new(
  137. &get_mint_url(),
  138. CurrencyUnit::Sat,
  139. Arc::new(WalletMemoryDatabase::default()),
  140. &Mnemonic::generate(12)?.to_seed_normalized(""),
  141. None,
  142. )?;
  143. let mint_amount = Amount::from(100);
  144. let mint_quote = wallet.mint_quote(mint_amount, None).await?;
  145. assert_eq!(mint_quote.amount, mint_amount);
  146. lnd_client.pay_invoice(mint_quote.request).await?;
  147. let proofs = wallet
  148. .mint(&mint_quote.id, SplitTarget::default(), None)
  149. .await?;
  150. let mint_amount = proofs.total_amount()?;
  151. assert!(mint_amount == 100.into());
  152. Ok(())
  153. }
  154. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  155. async fn test_restore() -> Result<()> {
  156. let lnd_client = init_lnd_client().await;
  157. let seed = Mnemonic::generate(12)?.to_seed_normalized("");
  158. let wallet = Wallet::new(
  159. &get_mint_url(),
  160. CurrencyUnit::Sat,
  161. Arc::new(WalletMemoryDatabase::default()),
  162. &seed,
  163. None,
  164. )?;
  165. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  166. lnd_client.pay_invoice(mint_quote.request).await?;
  167. let _mint_amount = wallet
  168. .mint(&mint_quote.id, SplitTarget::default(), None)
  169. .await?;
  170. assert!(wallet.total_balance().await? == 100.into());
  171. let wallet_2 = Wallet::new(
  172. &get_mint_url(),
  173. CurrencyUnit::Sat,
  174. Arc::new(WalletMemoryDatabase::default()),
  175. &seed,
  176. None,
  177. )?;
  178. assert!(wallet_2.total_balance().await? == 0.into());
  179. let restored = wallet_2.restore().await?;
  180. let proofs = wallet_2.get_unspent_proofs().await?;
  181. wallet_2
  182. .swap(None, SplitTarget::default(), proofs, None, false)
  183. .await?;
  184. assert!(restored == 100.into());
  185. assert!(wallet_2.total_balance().await? == 100.into());
  186. let proofs = wallet.get_unspent_proofs().await?;
  187. let states = wallet.check_proofs_spent(proofs).await?;
  188. for state in states {
  189. if state.state != State::Spent {
  190. bail!("All proofs should be spent");
  191. }
  192. }
  193. Ok(())
  194. }
  195. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  196. async fn test_pay_invoice_twice() -> Result<()> {
  197. let lnd_client = init_lnd_client().await;
  198. let seed = Mnemonic::generate(12)?.to_seed_normalized("");
  199. let wallet = Wallet::new(
  200. &get_mint_url(),
  201. CurrencyUnit::Sat,
  202. Arc::new(WalletMemoryDatabase::default()),
  203. &seed,
  204. None,
  205. )?;
  206. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  207. lnd_client.pay_invoice(mint_quote.request).await?;
  208. let proofs = wallet
  209. .mint(&mint_quote.id, SplitTarget::default(), None)
  210. .await?;
  211. let mint_amount = proofs.total_amount()?;
  212. assert_eq!(mint_amount, 100.into());
  213. let invoice = lnd_client.create_invoice(Some(10)).await?;
  214. let melt_quote = wallet.melt_quote(invoice.clone(), None).await?;
  215. let melt = wallet.melt(&melt_quote.id).await.unwrap();
  216. let melt_two = wallet.melt_quote(invoice, None).await?;
  217. let melt_two = wallet.melt(&melt_two.id).await;
  218. match melt_two {
  219. Err(err) => match err {
  220. cdk::Error::RequestAlreadyPaid => (),
  221. err => {
  222. bail!("Wrong invoice already paid: {}", err.to_string());
  223. }
  224. },
  225. Ok(_) => {
  226. bail!("Should not have allowed second payment");
  227. }
  228. }
  229. let balance = wallet.total_balance().await?;
  230. assert_eq!(balance, (Amount::from(100) - melt.fee_paid - melt.amount));
  231. Ok(())
  232. }
  233. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  234. async fn test_internal_payment() -> Result<()> {
  235. let lnd_client = init_lnd_client().await;
  236. let seed = Mnemonic::generate(12)?.to_seed_normalized("");
  237. let wallet = Wallet::new(
  238. &get_mint_url(),
  239. CurrencyUnit::Sat,
  240. Arc::new(WalletMemoryDatabase::default()),
  241. &seed,
  242. None,
  243. )?;
  244. let mint_quote = wallet.mint_quote(100.into(), None).await?;
  245. lnd_client.pay_invoice(mint_quote.request).await?;
  246. let _mint_amount = wallet
  247. .mint(&mint_quote.id, SplitTarget::default(), None)
  248. .await?;
  249. assert!(wallet.total_balance().await? == 100.into());
  250. let seed = Mnemonic::generate(12)?.to_seed_normalized("");
  251. let wallet_2 = Wallet::new(
  252. &get_mint_url(),
  253. CurrencyUnit::Sat,
  254. Arc::new(WalletMemoryDatabase::default()),
  255. &seed,
  256. None,
  257. )?;
  258. let mint_quote = wallet_2.mint_quote(10.into(), None).await?;
  259. let melt = wallet.melt_quote(mint_quote.request.clone(), None).await?;
  260. assert_eq!(melt.amount, 10.into());
  261. let _melted = wallet.melt(&melt.id).await.unwrap();
  262. let _wallet_2_mint = wallet_2
  263. .mint(&mint_quote.id, SplitTarget::default(), None)
  264. .await
  265. .unwrap();
  266. let cln_one_dir = get_cln_dir("one");
  267. let cln_client = ClnClient::new(cln_one_dir.clone(), None).await?;
  268. let payment_hash = Bolt11Invoice::from_str(&mint_quote.request)?;
  269. let check_paid = cln_client
  270. .check_incoming_payment_status(&payment_hash.payment_hash().to_string())
  271. .await?;
  272. match check_paid {
  273. InvoiceStatus::Unpaid => (),
  274. _ => {
  275. bail!("Invoice has incorrect status: {:?}", check_paid);
  276. }
  277. }
  278. let wallet_2_balance = wallet_2.total_balance().await?;
  279. assert!(wallet_2_balance == 10.into());
  280. let wallet_1_balance = wallet.total_balance().await?;
  281. assert!(wallet_1_balance == 90.into());
  282. Ok(())
  283. }
  284. #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
  285. async fn test_cached_mint() -> Result<()> {
  286. let lnd_client = init_lnd_client().await;
  287. let wallet = Wallet::new(
  288. &get_mint_url(),
  289. CurrencyUnit::Sat,
  290. Arc::new(WalletMemoryDatabase::default()),
  291. &Mnemonic::generate(12)?.to_seed_normalized(""),
  292. None,
  293. )?;
  294. let mint_amount = Amount::from(100);
  295. let quote = wallet.mint_quote(mint_amount, None).await?;
  296. lnd_client.pay_invoice(quote.request).await?;
  297. let mut subscription = wallet
  298. .subscribe(WalletSubscription::Bolt11MintQuoteState(vec![quote
  299. .id
  300. .clone()]))
  301. .await;
  302. while let Some(msg) = subscription.recv().await {
  303. if let NotificationPayload::MintQuoteBolt11Response(response) = msg {
  304. if response.state == MintQuoteState::Paid {
  305. break;
  306. }
  307. }
  308. }
  309. let active_keyset_id = wallet.get_active_mint_keyset().await?.id;
  310. let http_client = HttpClient::new(get_mint_url().as_str().parse()?);
  311. let premint_secrets =
  312. PreMintSecrets::random(active_keyset_id, 31.into(), &SplitTarget::default()).unwrap();
  313. let mut request = MintBolt11Request {
  314. quote: quote.id,
  315. outputs: premint_secrets.blinded_messages(),
  316. signature: None,
  317. };
  318. let secret_key = quote.secret_key;
  319. request.sign(secret_key.expect("Secret key on quote"))?;
  320. let response = http_client.post_mint(request.clone()).await?;
  321. let response1 = http_client.post_mint(request).await?;
  322. assert!(response == response1);
  323. Ok(())
  324. }