-
Notifications
You must be signed in to change notification settings - Fork 609
Breaking change introduced in #558 #571
Comments
Thank you for the report. Will get a hot fix out for this sometime this weekend hopefully. If this is affecting you please continue to use 1.5 for now. Sorry for the inconvenience! |
Just got a chance to looks at this a little more. Although this is a behavior change and validation is more strict I think this better aligns with what the original intention for Do was. The func passed into do should have the same signature as the function being mocked. In the example provided the code could be refactored to: m.EXPECT().UpdateAndWait(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).
Return(nil).
Do(func(_, template string, _ ...stackset.CreateOrUpdateOption) {
configToDeploy, err := stack.AppConfigFrom(&template)
require.NoError(t, err)
require.ElementsMatch(t, []string{"firsttest"}, configToDeploy.Services)
require.Empty(t, configToDeploy.Accounts, "config account list should be empty")
require.Equal(t, 2, configToDeploy.Version)
}) This should make the validation pass and now the signature exactly matched the method being mocked. The function supplied to Do should not match the args passed to the mock, but the original function being mocked. If I am missing something or there are other use-cases that are broken though please let me know. |
Thanks for the reply @codyoss ! |
@efekarakus There is a way to check for variadic functions, yes. There could be special validation on if a function is variadic to do just a little to no validation but I am unclear if this is the best decision to move forward with. I think I would rather lean toward the mock code being written being more correct from the onset. This also keeps the semantics of the func passed to type Foo interface {
Bar(string, ...int)
}
type ValidImpl struct {}
func (ValidImpl) Bar(string, ...int) {}
type InvalidImpl struct {}
func (InvalidImpl) Bar(string, int, int, int) {}
func DoSomething(Foo) {}
func DoSomethingFunc(func(string, ...int)) {}
func main() {
DoSomething(ValidImpl{})
DoSomethingFunc(ValidImpl{}.Bar)
DoSomething(InvalidImpl{})
DoSomethingFunc(InvalidImpl{}.Bar)
// Output: cannot use InvalidImpl{} (type InvalidImpl) as type Foo in argument to DoSomething:
// InvalidImpl does not implement Foo (wrong type for Bar method)
// have Bar(string, int, int, int)
// want Bar(string, ...int)
// cannot use InvalidImpl{}.Bar (type func(string, int, int, int)) as type func(string, ...int) in argument to DoSomethingFunc
} You would not expect the above code to compile, so I am am not sure we should allow a similar case with |
Sounds good! We fixed it from our end :) |
Closing this issue as by design, please see my comments above. |
Thanks for making breaking changes in a minor version... Shame on you guys for breaking your promise. |
Actual behavior A clear and concise description of what the bug is.
After #558, it forces a check for the number of argument for
Do
function. However, it doesn't work for variadic params. For example we haveand in the unit test we check
simply there's no way for us to use
Do
to validate one of the variadic param we pass.Additional Information
The text was updated successfully, but these errors were encountered: