Compare commits
2 commits
cd8d236940
...
a3c52c7761
Author | SHA1 | Date | |
---|---|---|---|
a3c52c7761 | |||
cb0a7f7cd7 |
2 changed files with 12 additions and 12 deletions
|
@ -1,6 +1,6 @@
|
|||
[forge.default]
|
||||
type = "forgejo"
|
||||
url = "https://git.example.net"
|
||||
forge_type = "forgejo"
|
||||
hostname = "git.example.net"
|
||||
user = "git-next" # the user to perform actions as
|
||||
# API token for user?
|
||||
# path to private SSH key for user?
|
||||
|
|
|
@ -5,8 +5,8 @@ use crate::filesystem::FileSystem;
|
|||
|
||||
#[derive(Debug, PartialEq, Eq, Deserialize)]
|
||||
pub struct Config {
|
||||
r#type: ForgeType,
|
||||
url: String,
|
||||
forge_type: ForgeType,
|
||||
hostname: String,
|
||||
user: String,
|
||||
// API Token
|
||||
// Private SSH Key Path
|
||||
|
@ -26,11 +26,11 @@ impl Config {
|
|||
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 const fn forge_type(&self) -> &ForgeType {
|
||||
&self.forge_type
|
||||
}
|
||||
pub fn url(&self) -> &str {
|
||||
self.url.as_str()
|
||||
pub fn hostname(&self) -> &str {
|
||||
self.hostname.as_str()
|
||||
}
|
||||
pub fn user(&self) -> &str {
|
||||
self.user.as_str()
|
||||
|
@ -49,15 +49,15 @@ mod tests {
|
|||
fs.write_file(
|
||||
"git-next-server.toml",
|
||||
r#"
|
||||
type = "ForgeJo"
|
||||
url = "https://forge.jo"
|
||||
forge_type = "ForgeJo"
|
||||
hostname = "git.example.net"
|
||||
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.forge_type(), &ForgeType::ForgeJo);
|
||||
assert_eq!(config.hostname(), "git.example.net".to_string());
|
||||
assert_eq!(config.user(), "Bob".to_string());
|
||||
|
||||
Ok(())
|
||||
|
|
Loading…
Reference in a new issue