clap/clap_derive/tests
Ed Page 1cdb2250e8 fix(derive): Define multiple policy for Special Types
Before:
- `bool`: a flag
- `Option<_>`: not required
- `Option<Option<_>>` is not required and when it is present, the value
  is not required
- `Vec<_>`: multiple values, optional
- `Option<Vec<_>>`: multiple values, min values of 0, optional

After:
- `bool`: a flag
- `Option<_>`: not required
- `Option<Option<_>>` is not required and when it is present, the value
  is not required
- `Vec<_>`: multiple occurrences, optional
  - optional: `Vec` implies 0 or more, so should not imply required
- `Option<Vec<_>>`: multiple occurrences, optional
  - optional: Use over `Vec` to detect when no option being present when
    using multiple values

Motivations:

My priorities were:
1. Are we getting in the users way?
2. Does the API make sense?
3. Does the API encourage best practices?

I was originally concerned about the lack of composability with
`Option<Option<_>>` and `Option<Vec<_>>` (and eventually `Vec<Vec<_>>`).
It prescribes special meaning to each type depending on where it shows
up, rather than providing a single meaning for a type generally.  You
then can't do things like have `Option<_>` mean "required argument with
optional value" without hand constructing it.  However, in practice the
outer type correlates with the argument occurrence and the inner type
with the value.   It is rare to want the value behavior without also the
occurrence behavior.  So I figure it is probably fine as long as people
can set the flags to manually get the behavior they want.

`Vec<_>` implies multiple occurrences, rather than multiple values.
Anecdotally, whenever I've used the old `Arg::multiple`, I thought I was
getting `Arg::multiple_occurrences` only.  `Arg::multiple_values`,
without any bounds or delimiter requirement, can lead to a confusing
user experience and isn't a good default for these.  On top of that, if
someone does have an unbounded or a delimiter multiple values, they are
probably also using multiple occurrences.

`Vec<_>` is optional because a `Vec` implies 0 or more, so we stick to
the meaning of the rust type.  At least for me, I also rarely need a
required with multiple occurrences argument but more often need optional
with multiple occurrences.

`Option<Vec<_>>` ends up matching `Vec<_>` which can raise the question
of why have it.  Some users might prefer the type.  Otherwise, this is
so users can detect whether the argument is present or not when using
`min_values(0)`.  Rather than defining an entire policy around this and
having users customize it, or setting `min_values(0)` without the rest
of a default policy, this gives people a blank slate to work from.

Another design option would have been to not infer any special-type
settings if someone sets a handful of settings manually, which would
have avoided the confusion in Issue clap-rs/clap 2599 but I see that
being confusing (for someone who knows the default, they will be
expecting it to be additive; which flags disable inferred settings?) and
brittle (as flags are added or changed, how do we ensure we keep this
up?).

Tests were added to ensure we support people customizing the behavior to
match their needs.

This is not solving:
- `Vec<Vec<_>>`, see clap-rs/clap 2924
- `(T1, T2)`, `Vec<(T1, T2)>`, etc, see clap-rs/clap 1717
- `Vec<Option<_>>` and many other potential combinations

Fixes clap-rs/clap 1772
Fixes clap-rs/clap 2599
See also clap-rs/clap 2195
2021-11-29 13:16:12 -06:00
..
ui fix: Rename to Arg::ignore_case like ArgSettings 2021-11-29 10:34:42 -06:00
app_name.rs fix(derive)!: Rename Clap to Parser. 2021-10-09 20:12:03 -05:00
arg_enum.rs fix(derive): Define multiple policy for Special Types 2021-11-29 13:16:12 -06:00
argument_naming.rs test(derive): Provide better error info 2021-10-30 10:00:34 -05:00
arguments.rs refactor(tests): Prepare for Special Type experiments 2021-11-04 13:12:01 -05:00
author_version_about.rs fix(derive)!: Rename Clap to Parser. 2021-10-09 20:12:03 -05:00
basic.rs refactor(tests): Prepare for Special Type experiments 2021-11-04 13:12:01 -05:00
boxed.rs test(derive): Provide better error info 2021-10-30 10:00:34 -05:00
custom-string-parsers.rs test(derive): Provide better error info 2021-10-30 10:00:34 -05:00
default_value.rs test(derive): Provide better error info 2021-10-30 10:00:34 -05:00
deny-warnings.rs test(derive): Provide better error info 2021-10-30 10:00:34 -05:00
doc-comments-help.rs Revert "Deprecate Arg::help in favour of Arg::about" 2021-11-18 12:25:49 -06:00
explicit_name_no_renaming.rs refactor(tests): Prepare for Special Type experiments 2021-11-04 13:12:01 -05:00
flags.rs refactor(tests): Prepare for Special Type experiments 2021-11-04 13:12:01 -05:00
flatten.rs test(derive): Provide better error info 2021-10-30 10:00:34 -05:00
generic.rs feat(derive): Generic support 2021-11-17 15:33:59 -06:00
help.rs style: Address warnings 2021-11-17 14:23:32 -06:00
issues.rs refactor(tests): Prepare for Special Type experiments 2021-11-04 13:12:01 -05:00
macros.rs refactor(tests): Prepare for Special Type experiments 2021-11-04 13:12:01 -05:00
nested-subcommands.rs test(derive): Provide better error info 2021-10-30 10:00:34 -05:00
non_literal_attributes.rs fix: Rename App's AllowLeadingHyphen to AllowHyphenValues 2021-11-24 11:25:48 -06:00
options.rs fix(derive): Define multiple policy for Special Types 2021-11-29 13:16:12 -06:00
privacy.rs refactor(tests): Prepare for Special Type experiments 2021-11-04 13:12:01 -05:00
raw_bool_literal.rs test(derive): Provide better error info 2021-10-30 10:00:34 -05:00
raw_idents.rs refactor(tests): Prepare for Special Type experiments 2021-11-04 13:12:01 -05:00
rename_all_env.rs feat(doc): Fix many typos in docs, comments and codes found by typos-cli 2021-10-19 10:38:22 +09:00
skip.rs Revert "Deprecate Arg::help in favour of Arg::about" 2021-11-18 12:25:49 -06:00
subcommands.rs test(derive): Provide better error info 2021-10-30 10:00:34 -05:00
ui.rs Bump MSRV to 1.54.0 2021-07-30 10:19:21 +01:00
utf8.rs fix(derive)!: Rename Clap to Parser. 2021-10-09 20:12:03 -05:00
utils.rs Fix test 2020-07-06 17:26:53 +03:00