-
Notifications
You must be signed in to change notification settings - Fork 158
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
Async tests (wait) sometimes fail #46
Comments
I've just had it happen again, so this change does not fix the problem. Needs more investigation as to what the differences are between the two approaches. My SenTestKit category definitely doesn't show this behaviour, it only started showing up when converting one of our tests to expecta format. I much prefer expecta's syntax and conciseness - will try and get this to work. |
@sas71, any progress? I've started seeing this as well, although it could be related to upgrading to Xcode 5. I've tried 3 or 4 different Obj-C unit testing solutions, looking for something that can deal with asynchronicity in a robust fashion, and have yet to find it. |
Not yet, unfortunately. Have you tried the version I've linked to above? Just to get an idea if there's a working version to compare to or if there's a general problem. |
could you give specta's AsyncBlock feature a try? |
I've had some time to revisit this and just noticed that these failures only seem to happen when using Xcode 5. I'll try to dig deeper. I'll also look at AsyncBlock as soon as I find the time, Peter. |
Any progress? I have the same problems when I rig my test using an AsyncBlock from Specta. |
I’m afraid not. We’ve had to abandon this for now due to lack of time to investigate further. Dr. Sven A. Schmidt On 7 Jan 2014, at 17:56, Brennon Bortz [email protected] wrote:
|
FWIW, it appears that there may have been an underlying bug in Xcode. If you have some time, give the same tests another go under Xcode 5.1 — I'm seeing much more consistent results now. |
Nope, I'm still seeing this in Xcode 6.0.1. Something is not right, but I haven't been able to figure out what. @petejkim what are the differences in how Specta's AsyncBlock handles this compared to Expecta's |
If it hangs once, it consistently hangs. Pretty mysterious. I've not set the timeout value at all either. UPDATE: curiously still, I tried using https://github.com/hfossli/AGAsyncTestHelper to replace the will calls, but I get the nonterminating behaviour. Could it be because I'm trying to check against a Core Data attribute that's causing the loop? With Expecta: expect(recipe.needsSync).will.equal(@YES); With AGAsyncTestHelper: AGWW_WAIT_WHILE_NOT_EQUALS(recipe.needsSync, @YES, 0.5); |
Is there any update about it? I am sometimes getting random fails when using Also, it sometimes get stuck when Line 123 [[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.01]]; |
I started using Expecta very recently and was very happy and impressed, but I'm having some nondeterministic trouble using |
I've got a test set up to wait for cache to be filled based on requests being sent (mocked via OHHTTPStubs).
Sometimes this test will fail. It's not deterministic. My suspicion is that it is related to runloop event processing.
Now I'm far from an expert on this but I've compared
applyMatcher:
to my own async test extension which is based on GHUnit [1] and noticed that there's additional runloop processing going on in GHUnit.I'll submit a pull request for this, which in my testing fixed the issue (but as non-deterministic issues go, this might not be the end-all fix).
[1] http://feinstruktur.com/blog/2012/8/12/unit-testing-asynchronous-code.html
The text was updated successfully, but these errors were encountered: