omni-dev 0.28.0

A powerful Git commit message analysis and amendment toolkit
Documentation
//! `omni-dev completions <shell>` — emit a shell completion script generated
//! from the live clap command tree.

use anyhow::Result;
use clap::{CommandFactory, Parser};
use clap_complete::{generate, Shell};

use crate::cli::Cli;

/// Shell-completion-script generator subcommand.
#[derive(Parser)]
pub struct CompletionsCommand {
    /// Target shell (`bash`, `elvish`, `fish`, `powershell`, `zsh`).
    #[arg(value_enum)]
    pub shell: Shell,
}

impl CompletionsCommand {
    /// Writes the completion script for `self.shell` to stdout.
    pub fn execute(self) -> Result<()> {
        let mut cmd = Cli::command();
        generate(self.shell, &mut cmd, "omni-dev", &mut std::io::stdout());
        Ok(())
    }
}

#[cfg(test)]
#[allow(clippy::unwrap_used, clippy::expect_used)]
mod tests {
    use super::*;
    use crate::cli::Commands;

    fn assert_parses_to(arg: &str, expected: Shell) {
        let cli = Cli::try_parse_from(["omni-dev", "completions", arg]).unwrap();
        assert!(matches!(
            cli.command,
            Commands::Completions(CompletionsCommand { shell }) if shell == expected
        ));
    }

    #[test]
    fn clap_parses_completions_bash() {
        assert_parses_to("bash", Shell::Bash);
    }

    #[test]
    fn clap_parses_completions_zsh() {
        assert_parses_to("zsh", Shell::Zsh);
    }

    #[test]
    fn clap_parses_completions_fish() {
        assert_parses_to("fish", Shell::Fish);
    }

    #[test]
    fn clap_parses_completions_powershell() {
        assert_parses_to("powershell", Shell::PowerShell);
    }

    #[test]
    fn clap_parses_completions_elvish() {
        assert_parses_to("elvish", Shell::Elvish);
    }

    #[test]
    fn clap_rejects_unknown_shell() {
        let result = Cli::try_parse_from(["omni-dev", "completions", "banana"]);
        assert!(result.is_err());
    }
}