capsula-core 0.12.1

The core library for Capsula.
Documentation
//! Small pure-helper utilities shared across Capsula crates.

use std::path::{Path, PathBuf};

/// Encode bytes as a lowercase hexadecimal string.
#[must_use]
pub fn hex_encode(bytes: &[u8]) -> String {
    bytes
        .iter()
        .fold(String::with_capacity(bytes.len() * 2), |mut output, b| {
            use std::fmt::Write;
            let _ = write!(output, "{b:02x}");
            output
        })
}

/// Resolve a path that may be absolute or relative to `project_root`.
///
/// For absolute paths, returns a clone. For relative paths, joins against
/// `project_root` and canonicalizes (which requires the path to exist).
pub fn resolve_relative(path: &Path, project_root: &Path) -> std::io::Result<PathBuf> {
    if path.is_absolute() {
        Ok(path.to_path_buf())
    } else {
        project_root.join(path).canonicalize()
    }
}

#[cfg(test)]
#[expect(clippy::unwrap_used, reason = "tests may use unwrap for brevity")]
mod tests {
    use super::{hex_encode, resolve_relative};
    use std::path::Path;

    #[test]
    fn hex_encode_empty() {
        assert_eq!(hex_encode(&[]), "");
    }

    #[test]
    fn hex_encode_single_bytes() {
        assert_eq!(hex_encode(&[0x00]), "00");
        assert_eq!(hex_encode(&[0xff]), "ff");
        assert_eq!(hex_encode(&[0xab, 0xcd, 0xef]), "abcdef");
    }

    #[test]
    fn resolve_relative_passes_absolute_through() {
        let abs = Path::new("/does/not/exist/absolute");
        let resolved = resolve_relative(abs, Path::new("/tmp")).unwrap();
        assert_eq!(resolved, abs);
    }

    #[test]
    fn resolve_relative_joins_relative_and_canonicalizes() {
        // project_root = cwd so canonicalize can resolve it.
        let cwd = std::env::current_dir().unwrap();
        let resolved = resolve_relative(Path::new("."), &cwd).unwrap();
        // canonicalize resolves symlinks; on macOS this is /private/var/... etc.
        assert_eq!(resolved, cwd.canonicalize().unwrap());
    }
}