-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Hack about to fix #2796 #2797
Hack about to fix #2796 #2797
Conversation
This PR contains changes NOT intended to be committed 'as-is', but as a showcase for a potential solution to: * mockito#2796 * mockito#1593 And potentially other vararg related issues. The crux of the issue is that Mockito needs to handle the last matcher passed to a method, when that matcher aligns with a vararg parameter and has the same type as the vararg parameter. For example, ```java public interface Foo { String m1(String... args); // Vararg param at index 0 and type String[] } @test public void shouldWork2() throws Exception { // Last matcher at index 0, and with type String[]: needs special handling! given(foo.m1(any(String[].class))).willReturn("var arg method"); ... } ``` In such situations that code needs to match the raw argument, _not_ the current functionality, which is to use the last matcher to match the last _non raw_ argument. Unfortunately, I'm not aware of a way to get at the type of the matcher without adding a method to `VarargMatcher` to get this information. This is the downside of this approach.
|
||
assertThat(iMethods.objectArgMethod("first")).isEqualTo("first"); | ||
assertThat(iMethods.threeArgumentMethod(0, "second", "whatever")).isEqualTo("second"); | ||
assertThat(iMethods.threeArgumentMethod(1, "whatever", "last")).isEqualTo("last"); | ||
assertThat(iMethods.mixedVarargsReturningString(1, "a", "b")).isEqualTo("b"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this the only stub that would now start failing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unintentional removal - I'll add it back in.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah great! In that case, if all existing tests pass and these additional cases also pass, I am up for this! I have not reviewed your implementation yet, but as long as we can keep all existing regression tests passing I am happy 😄
Codecov ReportBase: 86.20% // Head: 86.20% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #2797 +/- ##
============================================
- Coverage 86.20% 86.20% -0.01%
- Complexity 2833 2839 +6
============================================
Files 320 320
Lines 8596 8602 +6
Branches 1060 1064 +4
============================================
+ Hits 7410 7415 +5
Misses 905 905
- Partials 281 282 +1
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Questions for me are:
Everything else seems internal implementation details. My personal view would be:
Would be great if anyone out there with more context / experience can raise any edge cases that may have been missed. I can see @ChristianSchwarz, @mockitoguy, @paulduffin have all worked in this area...) |
These matchers are in Looking at your implementation, I think the overall design looks fine. There are probably a couple of nits, but I like the general direction. |
I'll probably create a new PR for the actual work, starting afresh. I'm going to refactor Would you prefer I do that in a separate PR, or just a separate commit in main PR? |
@big-andy-coates Let's do separate PRs, but please keep refactoring to a minimum. Refactoring |
This PR contains changes NOT intended to be committed 'as-is', but as a showcase for a potential solution to:
any(String[].class)
doesn't work as expected #2796And potentially other vararg related issues.
The crux of the issue is that Mockito needs to handle the last matcher passed to a method, when that matcher aligns with a vararg parameter and has the same type as the vararg parameter.
For example,
In such situations that code needs to match the raw argument, not the current functionality, which is to use the last matcher to match the last non raw argument.
Unfortunately, I'm not aware of a way to get at the type of the matcher without adding a method to
VarargMatcher
to get this information. This is the downside of this approach.The PR includes the tests suggested in #1236, though one still fails (and is commented out with explanation).
Crux of the change is in
MatcherApplicationStrategy
. Obviously, it needs some refactoring. Not sure if you'd want the refactor as a separate PR or as the first commit of the main PR????Alternatively, I could resurrect #1224 and take it through to merging.