-
Notifications
You must be signed in to change notification settings - Fork 609
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
va_arg()
causes EXC_BAD_ACCESS
in mocked objects
#524
Comments
Same here! Any news ? |
Still don't have access to a Mac with Apple Silicon. |
I've looked a little at this and it seems like I have no experience with |
The best workaround I have is to get OCPartialMock to ignore (or "demock") specific selectors. When mocking an object, OCM adds all the methods of the real object to call objc_msgForward. This allows OCM to handle the stubs. but because _objc_msgForward wraps the message into an NSInvocation, it will fail for variadic args. The thing I do is redirect specific methods on the mockObject back to the original implementation of the real object. so that any calls to the variadic argument method is calling the actual method, rather than forwarding using an NSInvocation. While it means there is no test mocking for that method 😔, it also means that things won't crash 😃 I have written a category on OCPartialMockObject to do this and a macro "OCMIgnore" for convenience: and added it to the top of my XCTTest Class.
BTW this can be used for any method, not just ones that have variadic arguments. |
Actually in further use it is more complicated than this because stubbing new methods will rewire implementation pointers after an ignore :( Wince my comment yesterday, I reworked things so that you can ignore mocking a specific selector for a class (and its descendent classes). OCMIgnore([MyClass class],@selector(log:)); now registers the log: selector for the class as to be ignored. When mocking, stubbing and message forwarding, OCM mock will lookup the selector to by forwarded and ensure it is not forwarded in the mocking process. an that the real object gets the message: The changes are multifold but can be found in pull request #539 |
Executing a variadic method on a mocked object results in an "EXC_BAD_ACCESS" crash.
The variadic method does not have to be executed with OCMock (#191). It occurs even if called directly.
Executed on an iOS Simulator running on a Macbook Pro with M1, not reproducible with i5.
OCMock v3.9.1
The text was updated successfully, but these errors were encountered: