UIAutomation with code coverage

女生的网名这么多〃 提交于 2019-12-03 13:21:14

问题


I am currently automating our iOS testing on jenkins. So far I had no problems with running unit tests, converting OCUnit into JUnit and generating code coverage in Cobertura format (lots of googling but no hard problems).

However, when creating UIAutomation job, I am stuck. The tests are running successfully (calling instruments from command line). Generating junit report was tricky but possible. The problem is that when running UIAutomation, no code coverage files are generated.

Is there a possibility to generate them? If not, could you please explain why?

What I tried so far:

  1. Attaching UIAutomation to an already running application on iOS simulator.
    • this seems impossible. Either the running application is killed by instruments and a new instance is relaunched or a cryptic error message is printed.
  2. Quit simulator at the end of js script using a combination of osascript and UIAHost. performTaskWithPathArgumentsTimeout.
    • application ended gracefully but no coverage generated.

Edit After some testing with a different framework I realized it's not enough to quit the simulator, you have to explicitely call exit() from the application. With UI Automation this is a bit tricky but you can declare an applicaton scheme, e.g. my-app://exit and call it through MobileSafari using UIAHost.performTaskWithPathArgumentsTimeout. Will check whether this is enough for the files to be generated.


回答1:


Following these steps, I was able to generate the code coverage files from UI Automation and display the information through the cobertura Jenkins plugin.

First set the “Generate Test Coverage Files” and “Instrument Program Flow” build settings to Yes. This will generate code coverage files every time you run your application in the simulator and exit the application. Add UIApplicationExitsOnSuspend in your Info.plist file and set this option to 'YES'. Run the UI automation test and at the end of it you can exit the app either by manually pressing the HOME button in the simulator or using the UIATarget.localTarget().deactivateAppForDuration() method. Note if your app has any UI Automation tests that rely on the deactivateAppForDuration() method, the tests will terminate upon running the command.

Once you have the gcda files you can generate the cobertura xml file by downloading gcovr (https://software.sandia.gov/trac/fast/wiki/gcovr) and running the command

gcovr -r your_root_directory --object-directory path_to_gcda_files --xml > coverage.xml

With that you can setup the Jenkins cobertura plugin to display the information as needed.

Source: http://blog.octo.com/en/jenkins-quality-dashboard-ios-development/#step2-2




回答2:


From my understanding code coverage files get generated when the app quits, but you can't just kill the simulator.

Have you tried creating a separate target for your app where you have the info.plist property "UIApplicationExitsOnSuspend" set to true?

There is a slightly wider problem, however. The generated coverage files aren't cumulative and get overwritten each time the application quits. So, depending on how your tests are structured (i.e. are you killing and starting the app for each distinct test) then you may struggle to get decent code coverage.



来源:https://stackoverflow.com/questions/13453715/uiautomation-with-code-coverage

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!