lib.rs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //! Cdk mintd lib
  2. use std::path::PathBuf;
  3. use anyhow::anyhow;
  4. pub mod cli;
  5. pub mod config;
  6. pub mod env_vars;
  7. pub mod setup;
  8. fn expand_path(path: &str) -> Option<PathBuf> {
  9. if path.starts_with('~') {
  10. if let Some(home_dir) = home::home_dir().as_mut() {
  11. let remainder = &path[2..];
  12. home_dir.push(remainder);
  13. let expanded_path = home_dir;
  14. Some(expanded_path.clone())
  15. } else {
  16. None
  17. }
  18. } else {
  19. Some(PathBuf::from(path))
  20. }
  21. }
  22. /// Work dir
  23. pub fn work_dir() -> anyhow::Result<PathBuf> {
  24. let home_dir = home::home_dir().ok_or(anyhow!("Unknown home dir"))?;
  25. let dir = home_dir.join(".cdk-mintd");
  26. std::fs::create_dir_all(&dir)?;
  27. Ok(dir)
  28. }
  29. #[cfg(test)]
  30. mod test {
  31. use std::env::current_dir;
  32. use super::*;
  33. #[test]
  34. fn example_is_parsed() {
  35. let config = config::Settings::new(Some(format!(
  36. "{}/example.config.toml",
  37. current_dir().expect("cwd").to_string_lossy()
  38. )));
  39. let cache = config.info.http_cache;
  40. assert_eq!(cache.ttl, Some(60));
  41. assert_eq!(cache.tti, Some(60));
  42. }
  43. }