For some of my iOS application projects, I would like my CI server to be able to report the following properties:
- startup time
- frame rate
both as a graph over time, and with "low water marks" so the build fails if the measured results aren't within certain criteria. I've already found some of the things I need.
- The CI server will be Jenkins.
- I can use Transporter Chief to get the built app onto an iPad.
- To measure the startup time I could find the duration between launching
main()and leavingapplication:didFinishLaunchingWithOptions:. - To measure frame rate I can put a
CADisplayLinkinto the app and sample itsdurationproperty. - If those tests output JMeter XML, then Jenkins can display the output via the Performance plugin.
What I haven't worked out is, how should I embed those tests into my app and launch it on the iPad? As described above I can deploy the app to the iPad, but then I don't know how I would launch it to gather the results of the tests. My unit tests are running on the simulator - I don't want to run the performance tests there obviously :-).
I imagine that there's a solution involving jailbreaking the iPad and controlling the app over SSH, I'd prefer not to go down that route if it's possible. If you have done that and can explain how it works, I'd still like to hear about it.