git-next/src/server/config.rs

66 lines
1.5 KiB
Rust
Raw Normal View History

2024-04-07 13:47:39 +01:00
use serde::Deserialize;
use terrors::OneOf;
use crate::filesystem::FileSystem;
2024-04-07 16:09:16 +01:00
#[derive(Debug, PartialEq, Eq, Deserialize)]
pub struct Config {
2024-04-07 13:47:39 +01:00
r#type: ForgeType,
url: String,
user: String,
// API Token
// Private SSH Key Path
}
2024-04-07 16:09:16 +01:00
#[derive(Debug, PartialEq, Eq, Deserialize)]
pub enum ForgeType {
2024-04-07 13:47:39 +01:00
ForgeJo,
// Gitea,
// GitHub,
// GitLab,
// BitBucket,
}
2024-04-07 16:09:16 +01:00
#[allow(dead_code)]
2024-04-07 13:47:39 +01:00
impl Config {
pub(crate) fn load(fs: &FileSystem) -> Result<Self, OneOf<(std::io::Error, toml::de::Error)>> {
let str = fs.read_file("git-next-server.toml").map_err(OneOf::new)?;
toml::from_str(&str).map_err(OneOf::new)
}
pub const fn r#type(&self) -> &ForgeType {
&self.r#type
}
pub fn url(&self) -> &str {
self.url.as_str()
}
pub fn user(&self) -> &str {
self.user.as_str()
}
}
#[cfg(test)]
mod tests {
use crate::filesystem::FileSystem;
use super::*;
#[test]
fn test_config_load() -> Result<(), OneOf<(std::io::Error, toml::de::Error)>> {
let fs = FileSystem::new_temp().map_err(OneOf::new)?;
fs.write_file(
"git-next-server.toml",
r#"
type = "ForgeJo"
url = "https://forge.jo"
user = "Bob"
"#,
)
.map_err(OneOf::new)?;
let config = Config::load(&fs)?;
assert_eq!(config.r#type(), &ForgeType::ForgeJo);
assert_eq!(config.url(), "https://forge.jo".to_string());
assert_eq!(config.user(), "Bob".to_string());
Ok(())
}
}