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

Respect autocomplete setting when parsing subcommands #288

Merged
merged 2 commits into from
Jun 26, 2019

Conversation

atareshawty
Copy link
Contributor

In response to #287

The first commit adds tests to demonstrate what (I think) the expected behavior should be:

  • In loose mode with autocomplete = false, the parser doesn't attempt to autocomplete the sub command
    • Instead, the partial subcommand ends up as an argument to the parent command
  • In strict mode with autocomplete = true, the parser raises an error with the message: error: Too many arguments for command

I'm starting the PR as a draft because I'm not 100% sure if I'm correctly stating the expected behavior.

The next commit fixes the issue and makes the tests pass 🚀

Alex Tareshawty added 2 commits June 26, 2019 15:42
In strict mode with autocomplete = false, the expectation is an error
when validating the parent command's arguments
In loose mode with autocomplete = false, the expectation is that the
parent command gets executed
This fixes the failing specs from the previous commit
@davetron5000
Copy link
Owner

Nice catch on the strict arg handling. Your overall approach looks good.

@atareshawty atareshawty marked this pull request as ready for review June 26, 2019 21:00
@atareshawty
Copy link
Contributor Author

Thanks! This is ready for review then 😄

@davetron5000
Copy link
Owner

OK, cool. A couple of questions just to make sure I'm following it:

  1. Looks like the bug was that the autocomplete configuration was not properly being passed down when recursively finding commands, so the system defaulted to the wrong thing?
  2. Did you check this against your app to make sure it does work? The integration testing in this repo isn't very good or I'd have encouraged you to write one, but I don't think it's necessary since you ahve a good unit test and you checked it locally

@atareshawty
Copy link
Contributor Author

atareshawty commented Jun 26, 2019

Looks like the bug was that the autocomplete configuration was not properly being passed down when recursively finding commands, so the system defaulted to the wrong thing?

Correct.

Did you check this against your app to make sure it does work?

I just checked again and it does fix the issue. I'll post a branch in the reproduction repo I linked in #287

Edit: I clicked the button before typing my answer to your second question😅

@atareshawty
Copy link
Contributor Author

Here is an example when using the patched version: https://github.com/Root-App/gli-auto-complete/tree/verify-fix. I've updated the README to include how the output changes with the patch

@davetron5000
Copy link
Owner

OK, awesome. I will merge and release here in a few…

@davetron5000 davetron5000 merged commit 8fbfa50 into davetron5000:gli-2 Jun 26, 2019
@davetron5000
Copy link
Owner

Released just now as 2.18.1

Thanks again for the fix!

@atareshawty atareshawty deleted the autocomplete-sub-commands branch June 26, 2019 21:56
@atareshawty
Copy link
Contributor Author

No problem! Thank you for maintaining this great gem

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants