cruise 0.1.35

YAML-driven coding agent workflow orchestrator
Documentation
use crate::config::SkipCondition;
use crate::error::Result;
use crate::variable::VariableStore;

/// Returns true if the step should be skipped.
///
/// # Errors
///
/// Returns an error if the skip condition references an undefined variable.
pub fn should_skip(skip: Option<&SkipCondition>, vars: &VariableStore) -> Result<bool> {
    match skip {
        None => Ok(false),
        Some(SkipCondition::Static(b)) => Ok(*b),
        Some(SkipCondition::Variable(name)) => {
            let val = vars.get_variable(name)?;
            Ok(val.trim() == "true")
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::variable::VariableStore;

    fn empty_vars() -> VariableStore {
        VariableStore::new(String::new())
    }

    #[test]
    fn test_should_skip_none() -> crate::error::Result<()> {
        assert!(!should_skip(None, &empty_vars())?);
        Ok(())
    }

    #[test]
    fn test_should_skip_false() -> crate::error::Result<()> {
        assert!(!should_skip(
            Some(&SkipCondition::Static(false)),
            &empty_vars()
        )?);
        Ok(())
    }

    #[test]
    fn test_should_skip_true() -> crate::error::Result<()> {
        assert!(should_skip(
            Some(&SkipCondition::Static(true)),
            &empty_vars()
        )?);
        Ok(())
    }

    #[test]
    fn test_should_skip_variable_true() -> crate::error::Result<()> {
        let mut vars = VariableStore::new(String::new());
        vars.set_prev_success(Some(true));
        assert!(should_skip(
            Some(&SkipCondition::Variable("prev.success".to_string())),
            &vars
        )?);
        Ok(())
    }

    #[test]
    fn test_should_skip_variable_false() -> crate::error::Result<()> {
        let mut vars = VariableStore::new(String::new());
        vars.set_prev_success(Some(false));
        assert!(!should_skip(
            Some(&SkipCondition::Variable("prev.success".to_string())),
            &vars
        )?);
        Ok(())
    }

    #[test]
    fn test_should_skip_variable_undefined() {
        // Undefined variable should return an error.
        let vars = VariableStore::new(String::new());
        let result = should_skip(
            Some(&SkipCondition::Variable("prev.success".to_string())),
            &vars,
        );
        assert!(result.is_err());
    }
}