Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remade Cmd#sub_cmd not to retrieve a base name of a path-like sub command #44

Merged
merged 1 commit into from
Sep 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 19 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -501,11 +501,25 @@ impl<'b, 'a> Cmd<'a> {
}

fn sub_cmd(&'a self, from_index: usize) -> Cmd<'b> {
Cmd::with_strings(
self._leaked_strs[from_index..(self._num_of_args)]
.into_iter()
.map(|s| s.to_string()),
)
let arg_iter = self._leaked_strs[from_index..(self._num_of_args)].into_iter();
let (size, _) = arg_iter.size_hint();
let mut _leaked_strs = Vec::with_capacity(size);

for arg in arg_iter {
let str: &'b str = arg.to_string().leak();
_leaked_strs.push(str);
}

let _num_of_args = _leaked_strs.len();

Cmd {
name: &_leaked_strs[0],
args: Vec::new(),
opts: HashMap::new(),
cfgs: Vec::new(),
_leaked_strs,
_num_of_args,
}
}

/// Returns the command name.
Expand Down
24 changes: 24 additions & 0 deletions src/parse/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -799,4 +799,28 @@ mod tests_of_parse_until_sub_cmd {
assert_eq!(cmd.has_opt("f#o"), false);
assert_eq!(cmd.opt_arg("f#o"), None);
}

#[test]
fn test_if_sub_command_is_like_path() { // for the fix of issue #39
let ui_args = vec![
"/path/to/app".to_string(),
"--foo-bar".to_string(),
"path/to/bar".to_string(),
"--baz".to_string(),
"qux".to_string()
];
let mut cmd = Cmd::with_strings(ui_args);

if let Some(mut sub_cmd) = cmd.parse_until_sub_cmd().unwrap() {
sub_cmd.parse().unwrap();

assert_eq!(cmd.name(), "app");
assert_eq!(cmd.args(), &[] as &[&str]);
assert_eq!(cmd.has_opt("foo-bar"), true);

assert_eq!(sub_cmd.name(), "path/to/bar");
assert_eq!(sub_cmd.args(), &["qux"]);
assert_eq!(sub_cmd.has_opt("baz"), true);
}
}
}