Converts KIF output log messages to JUnit test results for using KIF in a continuous integration environment.
Tested and working with the Publish JUnit Test Result Report post-build action in Jenkins.
- Set
TEST_SUITE_NAME
to whatever you want your test suite to show up as in Jenkins - Save the script somewhere in your Jenkins user's PATH, and make it executable with
chmod +x KIFLog2JUnit.rb
- Build your KIF target with the Xcode build plugin/step
- Run the app in the simulator (we use waxsim to launch it) and save the output to a file:
waxsim -s 6.1 -f iphone -v ${WORKSPACE}/test-run.mov "${WORKSPACE}/build/KIFTests.app" > KIF-AutomationTests.out 2>&1
- Process the file with the script:
KIFLog2JUnit.rb ${WORKSPACE}/KIF-AutomationTests.out
- Publish the xml file using the JUnit post-build publisher: