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

update!: changed OptCfg::make_cfgs_for to make_opt_cfgs_for #47

Merged
merged 1 commit into from
Oct 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
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,7 @@ pub use help::HelpIter;
pub use opt_cfg::validators;

mod parse;
pub use parse::make_opt_cfgs_for;
pub use parse::OptStore;

extern crate cliargs_derive;
Expand Down
1 change: 1 addition & 0 deletions src/parse/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ mod parse;
mod parse_with;

mod parse_for;
pub use parse_for::make_opt_cfgs_for;
pub use parse_for::OptStore;

use crate::errors::InvalidOption;
Expand Down
19 changes: 10 additions & 9 deletions src/parse/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -801,26 +801,27 @@ mod tests_of_parse_until_sub_cmd {
}

#[test]
fn test_if_sub_command_is_like_path() { // for the fix of issue #39
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()
"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();
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!(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);
assert_eq!(sub_cmd.name(), "path/to/bar");
assert_eq!(sub_cmd.args(), &["qux"]);
assert_eq!(sub_cmd.has_opt("baz"), true);
}
}
}
44 changes: 21 additions & 23 deletions src/parse/parse_for.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,23 @@ pub trait OptStore {
fn set_field_values(&mut self, m: &HashMap<&str, Vec<&str>>) -> Result<(), InvalidOption>;
}

impl OptCfg {
/// Makes a vector of [OptCfg] struct instances from the field definitions and `opt` field
/// attributes of the struct instnace of which type is `T`.
///
/// One [OptCfg] struct instance is made for each field.
/// The field name is set to `store_key`.
/// If the field's data type is `bool`, `has_arg` is set to `false`, otherwise, it is set to
/// `true`.
/// If the field is a vector type, `is_array` is set to `true`; otherwise, it is set to
/// `false`.
///
/// Additionally, `names`, `defaults`, `desc`, and `arg_in_help` are set with extracted from
/// the `opt` attribute attached to the field.
///
/// For `validator`, if the field's data type is numeric, it is set to the `validate_number`
/// function pointer corresponding to the data type.
pub fn make_cfgs_for<T: OptStore>(opt_store: &mut T) -> Vec<OptCfg> {
opt_store.make_opt_cfgs()
}
/// Makes a vector of [OptCfg] struct instances from the field definitions and `opt` field
/// attributes of the struct instnace of which type is `T`.
///
/// One [OptCfg] struct instance is made for each field.
/// The field name is set to `store_key`.
/// If the field's data type is `bool`, `has_arg` is set to `false`, otherwise, it is set to
/// `true`.
/// If the field is a vector type, `is_array` is set to `true`; otherwise, it is set to
/// `false`.
///
/// Additionally, `names`, `defaults`, `desc`, and `arg_in_help` are set with extracted from
/// the `opt` attribute attached to the field.
///
/// For `validator`, if the field's data type is numeric, it is set to the `validate_number`
/// function pointer corresponding to the data type.
pub fn make_opt_cfgs_for<T: OptStore>(opt_store: &mut T) -> Vec<OptCfg> {
opt_store.make_opt_cfgs()
}

impl<'b> Cmd<'_> {
Expand Down Expand Up @@ -180,7 +178,7 @@ impl<'b> Cmd<'_> {
}

#[cfg(test)]
mod tests_of_make_cfgs_for {
mod tests_of_make_opt_cfgs_for {
use super::*;
use crate as cliargs;
extern crate cliargs_derive;
Expand Down Expand Up @@ -304,7 +302,7 @@ mod tests_of_make_cfgs_for {
#[test]
fn test_make_opt_cfgs_for_opt_store() {
let mut store = NoAttrOptions::with_defaults();
let cfgs = cliargs::OptCfg::make_cfgs_for(&mut store);
let cfgs = cliargs::make_opt_cfgs_for(&mut store);
assert_eq!(cfgs.len(), 40);

let cfg = &cfgs[0];
Expand Down Expand Up @@ -1084,7 +1082,7 @@ mod tests_of_make_cfgs_for {
#[test]
fn test_make_opt_cfgs_for_store() {
let mut store = WithAttrOptions::with_defaults();
let cfgs = cliargs::OptCfg::make_cfgs_for(&mut store);
let cfgs = cliargs::make_opt_cfgs_for(&mut store);
assert_eq!(cfgs.len(), 40);

let cfg = &cfgs[0];
Expand Down Expand Up @@ -1501,7 +1499,7 @@ mod tests_of_make_cfgs_for {
empty_str: Vec<String>,
}
let mut store = MyOptions::with_defaults();
let cfgs = cliargs::OptCfg::make_cfgs_for(&mut store);
let cfgs = cliargs::make_opt_cfgs_for(&mut store);
assert_eq!(cfgs.len(), 4);
assert_eq!(cfgs[0].store_key, "empty".to_string());
assert_eq!(cfgs[0].defaults, Some(Vec::<String>::new()));
Expand Down
4 changes: 2 additions & 2 deletions tests/parse_for_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ mod tests_of_parse_for {
}

#[test]
fn make_cfgs_for_my_options() {
fn make_opt_cfgs_for_my_options() {
let mut my_options = MyOptions::with_defaults();
assert_eq!(my_options.foo_bar, false);

let cfgs = cliargs::OptCfg::make_cfgs_for(&mut my_options);
let cfgs = cliargs::make_opt_cfgs_for(&mut my_options);
assert_eq!(cfgs.len(), 1);

let cfg = &cfgs[0];
Expand Down