You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During many of my tests, my app is running AsyncTasks that access the database and cannot be cancelled. At the end of my tests, I close my database, delete it, then reopen it so I have a fresh database fixture.
The problem is that when the AsyncTasks happen to still be running during the time when the test is closing and deleting the database, I'll get a runtime exception in the code. This couldn't ever happen in the production code because the database is never closed in production.
If there were some way for you to modify the finishOpenedActivities to ensure that all child threads (AsyncTasks specifically) were finished as well, that would be tremendously helpful. Otherwise I probably have to go implement checks for cancelled in all my AsyncTasks just to support reliable testing. I don't even know if this is possible with the Android API though.
I'd love to.. hence the enhancement request. Most of my async tasks produce no visible artifacts because they are doing background initialization. I could sleep for several seconds at teardown tests but that would slow things down quite a bit.
From glenview...@gmail.com on August 23, 2012 05:39:18
During many of my tests, my app is running AsyncTasks that access the database and cannot be cancelled. At the end of my tests, I close my database, delete it, then reopen it so I have a fresh database fixture.
The problem is that when the AsyncTasks happen to still be running during the time when the test is closing and deleting the database, I'll get a runtime exception in the code. This couldn't ever happen in the production code because the database is never closed in production.
If there were some way for you to modify the finishOpenedActivities to ensure that all child threads (AsyncTasks specifically) were finished as well, that would be tremendously helpful. Otherwise I probably have to go implement checks for cancelled in all my AsyncTasks just to support reliable testing. I don't even know if this is possible with the Android API though.
Thanks!
Jeff
Original issue: http://code.google.com/p/robotium/issues/detail?id=316
The text was updated successfully, but these errors were encountered: