-
Notifications
You must be signed in to change notification settings - Fork 25
refactor: centralize logic for parseInput tests #1033
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
Open
rubenhoenle
wants to merge
5
commits into
main
Choose a base branch
from
refactor/test-input
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Merging this branch changes the coverage (1 decrease, 9 increase)
Coverage by fileChanged files (no unit tests)
Please note that the "Total", "Covered", and "Missed" counts above refer to code statements instead of lines of code. The value in brackets refers to the test coverage of that file in the old version of the code. Changed unit test files
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
General idea
This centralizes the logic into a single func which can be re-used everywhere. Not only does this save A LOT of boilerplate code (as you can see, sorry for that big diff). It also makes sure that all checks are called properly. As you can see I had to adjust some tests, e.g. because the flag groups or required flags weren't checked at all in some test implementations.
The new central func
The new func is located in
internal/pkg/testutils/testutils.go
Explanation of additional adjustments to make this whole thing possible
Some adjustments were needed to be able to do this refactoring. To be able to use the same testutil function for all
parseInput
func tests, allparseInput
funcs need the same signature. This wasn't given.The signature of the
parseInput
func of a cobra command which take some argument(s) (mostly commands likecreate
orlist
) looks like this:The signature of the
parseInput
func of a cobra command which take no args (mostly commands likecreate
orlist
) looked like this:As you can see the
args
parameter wasn't needed here and was left out therefore.I added this
args
parameter to allparseInput
funcs now so they all share the same signature (even when theargs
param is not needed in most of them).Note: The same goes for the
error
in the return value as you can see in the diff above.Thinking ahead
For the future it may make sense to define some interface so it's required to implement a
parseInput
func with a given signature to completely enforce this implementation style.Checklist
make fmt
make generate-docs
(will be checked by CI)make test
(will be checked by CI)make lint
(will be checked by CI)