fraiseql_cli/
introspection.rs1use clap::Command;
6
7use crate::output::{ArgumentHelp, CliHelp, CommandHelp, CommandSummary, get_exit_codes};
8
9pub fn extract_cli_help(cmd: &Command, version: &str) -> CliHelp {
11 CliHelp {
12 name: cmd.get_name().to_string(),
13 version: version.to_string(),
14 about: cmd.get_about().map_or_else(String::new, ToString::to_string),
15 global_options: extract_global_options(cmd),
16 subcommands: cmd
17 .get_subcommands()
18 .filter(|sub| !sub.is_hide_set())
19 .map(extract_command_help)
20 .collect(),
21 exit_codes: get_exit_codes(),
22 }
23}
24
25pub fn extract_command_help(cmd: &Command) -> CommandHelp {
27 let (arguments, options) = extract_arguments(cmd);
28
29 CommandHelp {
30 name: cmd.get_name().to_string(),
31 about: cmd.get_about().map_or_else(String::new, ToString::to_string),
32 arguments,
33 options,
34 subcommands: cmd
35 .get_subcommands()
36 .filter(|sub| !sub.is_hide_set())
37 .map(extract_command_help)
38 .collect(),
39 examples: extract_examples(cmd),
40 }
41}
42
43pub fn list_commands(cmd: &Command) -> Vec<CommandSummary> {
45 cmd.get_subcommands()
46 .filter(|sub| !sub.is_hide_set())
47 .map(|sub| CommandSummary {
48 name: sub.get_name().to_string(),
49 description: sub.get_about().map_or_else(String::new, ToString::to_string),
50 has_subcommands: sub.get_subcommands().count() > 0,
51 })
52 .collect()
53}
54
55fn extract_global_options(cmd: &Command) -> Vec<ArgumentHelp> {
57 cmd.get_arguments()
58 .filter(|arg| arg.is_global_set())
59 .map(|arg| ArgumentHelp {
60 name: arg.get_id().to_string(),
61 short: arg.get_short().map(|c| format!("-{c}")),
62 long: arg.get_long().map(|s| format!("--{s}")),
63 help: arg.get_help().map_or_else(String::new, ToString::to_string),
64 required: arg.is_required_set(),
65 default_value: arg
66 .get_default_values()
67 .first()
68 .and_then(|v| v.to_str())
69 .map(String::from),
70 takes_value: arg.get_num_args().is_some_and(|n| n.min_values() > 0),
71 possible_values: arg
72 .get_possible_values()
73 .iter()
74 .map(|v| v.get_name().to_string())
75 .collect(),
76 })
77 .collect()
78}
79
80fn extract_arguments(cmd: &Command) -> (Vec<ArgumentHelp>, Vec<ArgumentHelp>) {
82 let mut arguments = Vec::new();
83 let mut options = Vec::new();
84
85 for arg in cmd.get_arguments() {
86 if arg.is_global_set() {
88 continue;
89 }
90
91 let id = arg.get_id().as_str();
93 if id == "help" || id == "version" {
94 continue;
95 }
96
97 let arg_help = ArgumentHelp {
98 name: arg.get_id().to_string(),
99 short: arg.get_short().map(|c| format!("-{c}")),
100 long: arg.get_long().map(|s| format!("--{s}")),
101 help: arg.get_help().map_or_else(String::new, ToString::to_string),
102 required: arg.is_required_set(),
103 default_value: arg
104 .get_default_values()
105 .first()
106 .and_then(|v| v.to_str())
107 .map(String::from),
108 takes_value: arg.get_num_args().is_some_and(|n| n.min_values() > 0),
109 possible_values: arg
110 .get_possible_values()
111 .iter()
112 .map(|v| v.get_name().to_string())
113 .collect(),
114 };
115
116 if arg.get_short().is_none() && arg.get_long().is_none() {
118 arguments.push(arg_help);
119 } else {
120 options.push(arg_help);
121 }
122 }
123
124 (arguments, options)
125}
126
127fn extract_examples(cmd: &Command) -> Vec<String> {
129 if let Some(after_help) = cmd.get_after_help() {
131 let text = after_help.to_string();
132 if let Some(examples_start) = text.find("EXAMPLES:") {
133 let examples_section = &text[examples_start + 9..];
134 return examples_section
135 .lines()
136 .map(str::trim)
137 .filter(|line| !line.is_empty() && line.starts_with("fraiseql"))
138 .map(String::from)
139 .collect();
140 }
141 }
142 Vec::new()
143}
144
145#[cfg(test)]
146mod tests {
147 use clap::{Arg, Command as ClapCommand};
148
149 use super::*;
150
151 fn create_test_cli() -> ClapCommand {
152 ClapCommand::new("test-cli")
153 .version("1.0.0")
154 .about("Test CLI for unit tests")
155 .arg(
156 Arg::new("verbose")
157 .short('v')
158 .long("verbose")
159 .help("Enable verbose mode")
160 .global(true)
161 .action(clap::ArgAction::SetTrue),
162 )
163 .subcommand(
164 ClapCommand::new("compile")
165 .about("Compile files")
166 .arg(Arg::new("input").help("Input file").required(true))
167 .arg(
168 Arg::new("output")
169 .short('o')
170 .long("output")
171 .help("Output file")
172 .default_value("out.json"),
173 )
174 .after_help("EXAMPLES:\n fraiseql compile input.json\n fraiseql compile input.json -o output.json"),
175 )
176 .subcommand(
177 ClapCommand::new("hidden")
178 .about("Hidden command")
179 .hide(true),
180 )
181 }
182
183 #[test]
184 fn test_extract_cli_help() {
185 let cmd = create_test_cli();
186 let help = extract_cli_help(&cmd, "1.0.0");
187
188 assert_eq!(help.name, "test-cli");
189 assert_eq!(help.version, "1.0.0");
190 assert_eq!(help.about, "Test CLI for unit tests");
191 assert!(!help.exit_codes.is_empty());
192 }
193
194 #[test]
195 fn test_extract_global_options() {
196 let cmd = create_test_cli();
197 let help = extract_cli_help(&cmd, "1.0.0");
198
199 assert!(!help.global_options.is_empty());
200 let verbose = help.global_options.iter().find(|a| a.name == "verbose");
201 assert!(verbose.is_some());
202 let verbose = verbose.unwrap();
203 assert_eq!(verbose.short, Some("-v".to_string()));
204 assert_eq!(verbose.long, Some("--verbose".to_string()));
205 }
206
207 #[test]
208 fn test_extract_command_help() {
209 let cmd = create_test_cli();
210 let compile = cmd.get_subcommands().find(|c| c.get_name() == "compile").unwrap();
211 let help = extract_command_help(compile);
212
213 assert_eq!(help.name, "compile");
214 assert_eq!(help.about, "Compile files");
215 assert_eq!(help.arguments.len(), 1);
216 assert_eq!(help.arguments[0].name, "input");
217 assert!(help.arguments[0].required);
218 }
219
220 #[test]
221 fn test_extract_options() {
222 let cmd = create_test_cli();
223 let compile = cmd.get_subcommands().find(|c| c.get_name() == "compile").unwrap();
224 let help = extract_command_help(compile);
225
226 let output_opt = help.options.iter().find(|o| o.name == "output");
227 assert!(output_opt.is_some());
228 let output_opt = output_opt.unwrap();
229 assert_eq!(output_opt.default_value, Some("out.json".to_string()));
230 }
231
232 #[test]
233 fn test_extract_examples() {
234 let cmd = create_test_cli();
235 let compile = cmd.get_subcommands().find(|c| c.get_name() == "compile").unwrap();
236 let help = extract_command_help(compile);
237
238 assert_eq!(help.examples.len(), 2);
239 assert!(help.examples[0].contains("fraiseql compile"));
240 }
241
242 #[test]
243 fn test_list_commands() {
244 let cmd = create_test_cli();
245 let commands = list_commands(&cmd);
246
247 assert_eq!(commands.len(), 1);
249 assert_eq!(commands[0].name, "compile");
250 assert!(!commands[0].has_subcommands);
251 }
252
253 #[test]
254 fn test_hidden_commands_excluded() {
255 let cmd = create_test_cli();
256 let help = extract_cli_help(&cmd, "1.0.0");
257
258 let hidden = help.subcommands.iter().find(|s| s.name == "hidden");
260 assert!(hidden.is_none());
261 }
262}