2024-04-07 18:58:08 +01:00
|
|
|
use std::{
|
|
|
|
collections::HashMap,
|
|
|
|
fmt::{Display, Formatter},
|
|
|
|
};
|
2024-04-07 18:36:27 +01:00
|
|
|
|
2024-04-12 15:27:03 +01:00
|
|
|
use secrecy::ExposeSecret;
|
2024-04-07 13:47:39 +01:00
|
|
|
use serde::Deserialize;
|
|
|
|
use terrors::OneOf;
|
|
|
|
|
|
|
|
use crate::filesystem::FileSystem;
|
2024-04-08 08:31:45 +01:00
|
|
|
|
2024-04-13 11:31:00 +01:00
|
|
|
/// Mapped from the `git-next-server.toml` file
|
2024-04-07 16:09:16 +01:00
|
|
|
#[derive(Debug, PartialEq, Eq, Deserialize)]
|
2024-04-08 08:31:45 +01:00
|
|
|
pub struct ServerConfig {
|
2024-04-07 18:58:08 +01:00
|
|
|
forge: HashMap<String, Forge>,
|
|
|
|
}
|
2024-04-08 08:31:45 +01:00
|
|
|
impl ServerConfig {
|
2024-04-08 08:05:13 +01:00
|
|
|
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(crate) fn forges(&self) -> impl Iterator<Item = (ForgeName, &Forge)> {
|
|
|
|
self.forge
|
|
|
|
.iter()
|
|
|
|
.map(|(name, forge)| (ForgeName(name.clone()), forge))
|
|
|
|
}
|
|
|
|
}
|
2024-04-07 18:58:08 +01:00
|
|
|
|
2024-04-13 11:31:00 +01:00
|
|
|
/// Mapped from `.git-next.toml` file in target repo
|
|
|
|
/// Is also derived from the optional parameters in `git-next-server.toml` at
|
|
|
|
/// `forge.{forge}.repos.{repo}.(main|next|dev)`
|
2024-04-09 15:31:59 +01:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, Deserialize)]
|
2024-04-08 09:54:20 +01:00
|
|
|
pub struct RepoConfig {
|
|
|
|
branches: RepoBranches,
|
|
|
|
}
|
|
|
|
impl RepoConfig {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub(crate) fn load(toml: &str) -> Result<Self, OneOf<(toml::de::Error,)>> {
|
|
|
|
toml::from_str(toml).map_err(OneOf::new)
|
|
|
|
}
|
2024-04-09 14:52:12 +01:00
|
|
|
|
|
|
|
pub(crate) const fn branches(&self) -> &RepoBranches {
|
|
|
|
&self.branches
|
|
|
|
}
|
2024-04-08 09:54:20 +01:00
|
|
|
}
|
2024-04-09 10:44:01 +01:00
|
|
|
impl Display for RepoConfig {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "{:?}", self.branches)
|
|
|
|
}
|
|
|
|
}
|
2024-04-13 11:31:00 +01:00
|
|
|
|
|
|
|
/// Mapped from `.git-next.toml` file at `branches`
|
2024-04-09 15:31:59 +01:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, Deserialize)]
|
2024-04-08 09:54:20 +01:00
|
|
|
pub struct RepoBranches {
|
|
|
|
main: String,
|
|
|
|
next: String,
|
|
|
|
dev: String,
|
|
|
|
}
|
2024-04-09 14:52:12 +01:00
|
|
|
impl RepoBranches {
|
|
|
|
pub fn main(&self) -> BranchName {
|
|
|
|
BranchName(self.main.clone())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn next(&self) -> BranchName {
|
|
|
|
BranchName(self.next.clone())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn dev(&self) -> BranchName {
|
|
|
|
BranchName(self.dev.clone())
|
|
|
|
}
|
|
|
|
}
|
2024-04-09 10:44:01 +01:00
|
|
|
impl Display for RepoBranches {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "{:?}", self)
|
|
|
|
}
|
|
|
|
}
|
2024-04-08 09:54:20 +01:00
|
|
|
|
2024-04-13 11:31:00 +01:00
|
|
|
/// Defines a Forge to connect to
|
|
|
|
/// Maps from `git-next-server.toml` at `forge.{forge}`
|
2024-04-09 07:20:13 +01:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, Deserialize)]
|
2024-04-07 18:58:08 +01:00
|
|
|
pub struct Forge {
|
2024-04-07 16:11:23 +01:00
|
|
|
forge_type: ForgeType,
|
2024-04-07 16:14:05 +01:00
|
|
|
hostname: String,
|
2024-04-07 13:47:39 +01:00
|
|
|
user: String,
|
2024-04-08 12:08:42 +01:00
|
|
|
token: String,
|
2024-04-07 13:47:39 +01:00
|
|
|
// API Token
|
|
|
|
// Private SSH Key Path
|
2024-04-08 08:05:13 +01:00
|
|
|
repos: HashMap<String, Repo>,
|
2024-04-07 18:58:08 +01:00
|
|
|
}
|
|
|
|
impl Forge {
|
2024-04-09 07:20:13 +01:00
|
|
|
#[allow(dead_code)]
|
2024-04-07 18:58:08 +01:00
|
|
|
pub const fn forge_type(&self) -> &ForgeType {
|
|
|
|
&self.forge_type
|
|
|
|
}
|
|
|
|
|
2024-04-08 08:05:13 +01:00
|
|
|
pub fn hostname(&self) -> Hostname {
|
|
|
|
Hostname(self.hostname.clone())
|
2024-04-07 18:58:08 +01:00
|
|
|
}
|
|
|
|
|
2024-04-08 08:05:13 +01:00
|
|
|
pub fn user(&self) -> User {
|
|
|
|
User(self.user.clone())
|
2024-04-07 18:58:08 +01:00
|
|
|
}
|
|
|
|
|
2024-04-08 12:08:42 +01:00
|
|
|
pub fn token(&self) -> ApiToken {
|
2024-04-12 15:27:03 +01:00
|
|
|
ApiToken(self.token.clone().into())
|
2024-04-08 12:08:42 +01:00
|
|
|
}
|
|
|
|
|
2024-04-13 11:45:58 +01:00
|
|
|
pub fn repos(&self) -> impl Iterator<Item = (RepoAlias, &Repo)> {
|
2024-04-08 08:05:13 +01:00
|
|
|
self.repos
|
|
|
|
.iter()
|
2024-04-13 11:45:58 +01:00
|
|
|
.map(|(name, repo)| (RepoAlias(name.clone()), repo))
|
2024-04-07 18:58:08 +01:00
|
|
|
}
|
2024-04-07 13:47:39 +01:00
|
|
|
}
|
2024-04-09 07:20:13 +01:00
|
|
|
impl Display for Forge {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "{} - {}@{}", self.forge_type, self.user, self.hostname)
|
|
|
|
}
|
|
|
|
}
|
2024-04-07 13:47:39 +01:00
|
|
|
|
2024-04-13 11:31:00 +01:00
|
|
|
/// Defines a Repo within a Forge to be monitored by the server
|
|
|
|
/// Maps from `git-next-server.toml` at `forge.{forge}.repos.{name}`
|
2024-04-09 07:20:13 +01:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, Deserialize)]
|
2024-04-08 08:05:13 +01:00
|
|
|
pub struct Repo {
|
|
|
|
repo: String,
|
|
|
|
branch: String,
|
2024-04-13 11:44:40 +01:00
|
|
|
main: Option<String>,
|
|
|
|
next: Option<String>,
|
|
|
|
dev: Option<String>,
|
2024-04-08 08:05:13 +01:00
|
|
|
}
|
|
|
|
impl Repo {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub fn repo(&self) -> RepoPath {
|
|
|
|
RepoPath(self.repo.clone())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub fn branch(&self) -> BranchName {
|
|
|
|
BranchName(self.branch.clone())
|
|
|
|
}
|
2024-04-13 11:44:40 +01:00
|
|
|
/// Returns a RepoConfig from the server configuration if ALL THREE branches were provided
|
|
|
|
pub fn repo_config(&self) -> Option<RepoConfig> {
|
|
|
|
match (&self.main, &self.next, &self.dev) {
|
|
|
|
(Some(main), Some(next), Some(dev)) => Some(RepoConfig {
|
|
|
|
branches: RepoBranches {
|
|
|
|
main: main.to_string(),
|
|
|
|
next: next.to_string(),
|
|
|
|
dev: dev.to_string(),
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2024-04-08 08:05:13 +01:00
|
|
|
}
|
|
|
|
#[cfg(test)]
|
2024-04-08 09:54:20 +01:00
|
|
|
impl AsRef<Self> for Repo {
|
|
|
|
fn as_ref(&self) -> &Self {
|
2024-04-08 08:05:13 +01:00
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl Display for Repo {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "{} - {}", self.repo, self.branch)
|
|
|
|
}
|
|
|
|
}
|
2024-04-13 11:31:00 +01:00
|
|
|
|
|
|
|
/// The name of a Forge to connect to
|
2024-04-08 08:22:23 +01:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
2024-04-07 19:41:56 +01:00
|
|
|
pub struct ForgeName(pub String);
|
|
|
|
impl Display for ForgeName {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "{}", self.0)
|
|
|
|
}
|
|
|
|
}
|
2024-04-13 11:31:00 +01:00
|
|
|
|
|
|
|
/// The hostname of a forge
|
2024-04-08 08:22:23 +01:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
2024-04-07 19:41:56 +01:00
|
|
|
pub struct Hostname(pub String);
|
2024-04-08 08:05:13 +01:00
|
|
|
impl Display for Hostname {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "{}", self.0)
|
|
|
|
}
|
|
|
|
}
|
2024-04-13 11:31:00 +01:00
|
|
|
|
|
|
|
/// The user within the forge to connect as
|
2024-04-08 08:22:23 +01:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
2024-04-07 19:41:56 +01:00
|
|
|
pub struct User(pub String);
|
2024-04-08 08:05:13 +01:00
|
|
|
impl Display for User {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "{}", self.0)
|
|
|
|
}
|
|
|
|
}
|
2024-04-13 11:31:00 +01:00
|
|
|
|
|
|
|
/// The API Token for the [user]
|
|
|
|
/// ForgeJo: https://{hostname}/user/settings/applications
|
|
|
|
/// Github: https://github.com/settings/tokens
|
2024-04-12 15:27:03 +01:00
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub struct ApiToken(pub secrecy::Secret<String>);
|
|
|
|
impl From<String> for ApiToken {
|
|
|
|
fn from(value: String) -> Self {
|
|
|
|
Self(value.into())
|
2024-04-08 11:48:35 +01:00
|
|
|
}
|
|
|
|
}
|
2024-04-13 11:31:00 +01:00
|
|
|
/// The API Token is in effect a password, so it must be explicitly exposed to access its value
|
2024-04-12 15:27:03 +01:00
|
|
|
impl ExposeSecret<String> for ApiToken {
|
|
|
|
fn expose_secret(&self) -> &String {
|
|
|
|
self.0.expose_secret()
|
|
|
|
}
|
|
|
|
}
|
2024-04-13 11:31:00 +01:00
|
|
|
|
|
|
|
/// The derived information about a Forge, used to create interactions with it
|
2024-04-12 15:27:03 +01:00
|
|
|
#[derive(Clone, Debug)]
|
2024-04-07 19:41:56 +01:00
|
|
|
pub struct ForgeDetails {
|
|
|
|
pub name: ForgeName,
|
|
|
|
pub forge_type: ForgeType,
|
|
|
|
pub hostname: Hostname,
|
|
|
|
pub user: User,
|
2024-04-08 12:08:42 +01:00
|
|
|
pub token: ApiToken,
|
2024-04-07 19:41:56 +01:00
|
|
|
// API Token
|
|
|
|
// Private SSH Key Path
|
|
|
|
}
|
|
|
|
impl From<(&ForgeName, &Forge)> for ForgeDetails {
|
|
|
|
fn from(forge: (&ForgeName, &Forge)) -> Self {
|
|
|
|
Self {
|
|
|
|
name: forge.0.clone(),
|
|
|
|
forge_type: forge.1.forge_type.clone(),
|
2024-04-08 11:49:56 +01:00
|
|
|
hostname: forge.1.hostname(),
|
|
|
|
user: forge.1.user(),
|
2024-04-08 12:08:42 +01:00
|
|
|
token: forge.1.token(),
|
2024-04-07 19:41:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-04-13 11:31:00 +01:00
|
|
|
|
2024-04-13 11:45:58 +01:00
|
|
|
/// The alias of a repo
|
2024-04-13 11:31:00 +01:00
|
|
|
/// This is the alias for the repo within `git-next-server.toml`
|
2024-04-08 08:22:23 +01:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
2024-04-13 11:45:58 +01:00
|
|
|
pub struct RepoAlias(pub String);
|
|
|
|
impl Display for RepoAlias {
|
2024-04-07 19:41:56 +01:00
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "{}", self.0)
|
|
|
|
}
|
|
|
|
}
|
2024-04-13 11:31:00 +01:00
|
|
|
|
|
|
|
/// The path for the repo within the forge.
|
|
|
|
/// Typically this is composed of the user or organisation and the name of the repo
|
|
|
|
/// e.g. `{user}/{repo}`
|
2024-04-08 08:22:23 +01:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
2024-04-07 19:41:56 +01:00
|
|
|
pub struct RepoPath(pub String);
|
2024-04-08 08:05:13 +01:00
|
|
|
impl Display for RepoPath {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "{}", self.0)
|
|
|
|
}
|
|
|
|
}
|
2024-04-13 11:31:00 +01:00
|
|
|
|
|
|
|
/// The name of a Branch
|
2024-04-12 18:45:32 +01:00
|
|
|
#[derive(Clone, Debug, Hash, PartialEq, Eq)]
|
2024-04-08 08:05:13 +01:00
|
|
|
pub struct BranchName(pub String);
|
|
|
|
impl Display for BranchName {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "{}", self.0)
|
|
|
|
}
|
|
|
|
}
|
2024-04-13 11:31:00 +01:00
|
|
|
|
|
|
|
/// The derived information about a repo, used to interact with it
|
2024-04-12 15:27:03 +01:00
|
|
|
#[derive(Clone, Debug)]
|
2024-04-07 19:41:56 +01:00
|
|
|
pub struct RepoDetails {
|
2024-04-13 11:45:58 +01:00
|
|
|
pub name: RepoAlias,
|
2024-04-08 08:05:13 +01:00
|
|
|
pub repo: RepoPath,
|
|
|
|
pub branch: BranchName,
|
2024-04-07 19:41:56 +01:00
|
|
|
pub forge: ForgeDetails,
|
2024-04-13 11:44:40 +01:00
|
|
|
pub config: Option<RepoConfig>,
|
2024-04-07 19:41:56 +01:00
|
|
|
}
|
2024-04-08 08:05:13 +01:00
|
|
|
impl RepoDetails {
|
2024-04-13 11:45:58 +01:00
|
|
|
pub fn new(name: &RepoAlias, repo: &Repo, forge_name: &ForgeName, forge: &Forge) -> Self {
|
2024-04-08 08:05:13 +01:00
|
|
|
Self {
|
|
|
|
name: name.clone(),
|
|
|
|
repo: RepoPath(repo.repo.clone()),
|
2024-04-13 11:44:40 +01:00
|
|
|
config: repo.repo_config(),
|
2024-04-08 08:05:13 +01:00
|
|
|
branch: BranchName(repo.branch.clone()),
|
|
|
|
forge: ForgeDetails {
|
|
|
|
name: forge_name.clone(),
|
|
|
|
forge_type: forge.forge_type.clone(),
|
2024-04-08 11:49:56 +01:00
|
|
|
hostname: forge.hostname(),
|
|
|
|
user: forge.user(),
|
2024-04-08 12:08:42 +01:00
|
|
|
token: forge.token(),
|
2024-04-08 08:05:13 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-04-08 08:12:31 +01:00
|
|
|
impl Display for RepoDetails {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(
|
|
|
|
f,
|
|
|
|
"{}/{} ({}): {}:{}/{} @ {}",
|
|
|
|
self.forge.name,
|
|
|
|
self.name,
|
|
|
|
self.forge.forge_type,
|
|
|
|
self.forge.hostname,
|
|
|
|
self.forge.user,
|
|
|
|
self.repo,
|
|
|
|
self.branch,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2024-04-07 19:41:56 +01:00
|
|
|
|
2024-04-13 11:31:00 +01:00
|
|
|
/// Identifier for the type of Forge
|
2024-04-07 19:41:56 +01:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, Deserialize)]
|
2024-04-07 16:09:16 +01:00
|
|
|
pub enum ForgeType {
|
2024-04-12 20:53:55 +01:00
|
|
|
#[cfg(feature = "forgejo")]
|
2024-04-07 13:47:39 +01:00
|
|
|
ForgeJo,
|
|
|
|
// Gitea,
|
|
|
|
// GitHub,
|
|
|
|
// GitLab,
|
|
|
|
// BitBucket,
|
2024-04-12 22:41:16 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
MockForge,
|
2024-04-07 13:47:39 +01:00
|
|
|
}
|
2024-04-07 18:36:27 +01:00
|
|
|
impl Display for ForgeType {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "{:?}", self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-12 20:53:55 +01:00
|
|
|
#[cfg(feature = "forgejo")]
|
2024-04-07 13:47:39 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2024-04-07 18:58:08 +01:00
|
|
|
|
2024-04-07 13:47:39 +01:00
|
|
|
use crate::filesystem::FileSystem;
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
2024-04-12 20:53:55 +01:00
|
|
|
#[cfg(feature = "forgejo")]
|
2024-04-08 08:31:45 +01:00
|
|
|
fn test_server_config_load() -> Result<(), OneOf<(std::io::Error, toml::de::Error)>> {
|
2024-04-07 13:47:39 +01:00
|
|
|
let fs = FileSystem::new_temp().map_err(OneOf::new)?;
|
|
|
|
fs.write_file(
|
|
|
|
"git-next-server.toml",
|
|
|
|
r#"
|
2024-04-07 18:58:08 +01:00
|
|
|
[forge.default]
|
2024-04-07 16:11:23 +01:00
|
|
|
forge_type = "ForgeJo"
|
2024-04-07 16:14:05 +01:00
|
|
|
hostname = "git.example.net"
|
2024-04-07 13:47:39 +01:00
|
|
|
user = "Bob"
|
2024-04-08 12:08:42 +01:00
|
|
|
token = "API-Token"
|
2024-04-07 18:58:08 +01:00
|
|
|
|
|
|
|
[forge.default.repos]
|
2024-04-08 08:05:13 +01:00
|
|
|
hello = { repo = "user/hello", branch = "main" }
|
2024-04-13 11:44:40 +01:00
|
|
|
world = { repo = "user/world", branch = "master", main = "main", next = "next", dev = "dev" }
|
|
|
|
|
|
|
|
[forge.default.repos.sam]
|
|
|
|
repo = "user/sam"
|
|
|
|
branch = "main"
|
|
|
|
main = "master"
|
|
|
|
next = "upcoming"
|
|
|
|
dev = "sam-dev"
|
2024-04-07 13:47:39 +01:00
|
|
|
"#,
|
|
|
|
)
|
|
|
|
.map_err(OneOf::new)?;
|
2024-04-08 08:31:45 +01:00
|
|
|
let config = ServerConfig::load(&fs)?;
|
2024-04-08 12:03:19 +01:00
|
|
|
let expected = ServerConfig {
|
|
|
|
forge: HashMap::from([(
|
|
|
|
"default".to_string(),
|
|
|
|
Forge {
|
|
|
|
forge_type: ForgeType::ForgeJo,
|
|
|
|
hostname: "git.example.net".to_string(),
|
|
|
|
user: "Bob".to_string(),
|
2024-04-08 12:08:42 +01:00
|
|
|
token: "API-Token".to_string(),
|
2024-04-08 12:03:19 +01:00
|
|
|
repos: HashMap::from([
|
|
|
|
(
|
|
|
|
"hello".to_string(),
|
|
|
|
Repo {
|
|
|
|
repo: "user/hello".to_string(),
|
|
|
|
branch: "main".to_string(),
|
2024-04-13 11:44:40 +01:00
|
|
|
main: None,
|
|
|
|
next: None,
|
|
|
|
dev: None,
|
2024-04-08 12:03:19 +01:00
|
|
|
},
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"world".to_string(),
|
|
|
|
Repo {
|
|
|
|
repo: "user/world".to_string(),
|
|
|
|
branch: "master".to_string(),
|
2024-04-13 11:44:40 +01:00
|
|
|
main: Some("main".to_string()),
|
|
|
|
next: Some("next".to_string()),
|
|
|
|
dev: Some("dev".to_string()),
|
|
|
|
},
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"sam".to_string(),
|
|
|
|
Repo {
|
|
|
|
repo: "user/sam".to_string(),
|
|
|
|
branch: "main".to_string(),
|
|
|
|
main: Some("master".to_string()),
|
|
|
|
next: Some("upcoming".to_string()),
|
|
|
|
dev: Some("sam-dev".to_string()),
|
2024-04-08 12:03:19 +01:00
|
|
|
},
|
|
|
|
),
|
|
|
|
]),
|
|
|
|
},
|
|
|
|
)]),
|
|
|
|
};
|
2024-04-13 11:44:40 +01:00
|
|
|
assert_eq!(config, expected, "ServerConfig");
|
|
|
|
|
|
|
|
if let Some(forge) = config.forge.get("world") {
|
|
|
|
if let Some(repo) = forge.repos.get("sam") {
|
|
|
|
let repo_config = repo.repo_config();
|
|
|
|
let expected = Some(RepoConfig {
|
|
|
|
branches: RepoBranches {
|
|
|
|
main: "master".to_string(),
|
|
|
|
next: "upcoming".to_string(),
|
|
|
|
dev: "sam-dev".to_string(),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
assert_eq!(repo_config, expected, "RepoConfig");
|
|
|
|
}
|
|
|
|
}
|
2024-04-07 13:47:39 +01:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2024-04-08 09:54:20 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_repo_config_load() -> Result<(), OneOf<(toml::de::Error,)>> {
|
|
|
|
let toml = r#"
|
|
|
|
[branches]
|
|
|
|
main = "main"
|
|
|
|
next = "next"
|
|
|
|
dev = "dev"
|
|
|
|
|
|
|
|
[options]
|
|
|
|
"#;
|
|
|
|
let config = RepoConfig::load(toml)?;
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
config,
|
|
|
|
RepoConfig {
|
|
|
|
branches: RepoBranches {
|
|
|
|
main: "main".to_string(),
|
|
|
|
next: "next".to_string(),
|
|
|
|
dev: "dev".to_string(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2024-04-07 13:47:39 +01:00
|
|
|
}
|