XCode Test Automation For IPhone - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T10:01:45Zhttp://stackoverflow.com/feeds/question/995424http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/995424/xcode-test-automation-for-iphone6XCode Test Automation For IPhone chuan2009-06-15T10:34:55Z2009-12-07T13:12:55Z
<p>Hi there,
I would like to have my iphone test app to be tested automatically in an IPhone. The following are the steps I would like to have:
1. compile, link and code sign the iphone app (Xcodebuild)
2. upload the newly built app to iphone
3. run the uploaded app in iphone automatically
4. collect the result from the gdb console
5. close the app</p>
<p>Right now, I have problem with step 2 and 3 where I cannot do it automatically (I can do it from XCode via "Build and Debug" button. This, however, will require manual clicking).</p>
<p>I did some research on automator and it does not answer my problem. Another option I am thinking about is to have the app compiled for iphone simulator and run it from there, but I am not sure how accurate the test result will be comparing to the real device.</p>
<p>I am new to Mac/IPhone development, perhaps someone has a better way of testing this. Any feedback and input are welcome. Thanks.</p>
<p>Regards,
chuan</p>
http://stackoverflow.com/questions/995424/xcode-test-automation-for-iphone/997340#9973401Answer by Rob Napier for XCode Test Automation For IPhone Rob Napier2009-06-15T17:32:26Z2009-06-15T17:32:26Z<p>The tool you probably want to use for the build and install is Applescript. Something like:</p>
<pre><code>tell application "Xcode" to launch
</code></pre>
<p>I'm not pretending that this is a complete answer; there are still a lot of things to work out. But Applescript is going to be one of your key tools I believe.</p>
http://stackoverflow.com/questions/995424/xcode-test-automation-for-iphone/998229#9982290Answer by Kendall Helmstetter Gelner for XCode Test Automation For IPhone Kendall Helmstetter Gelner2009-06-15T20:34:11Z2009-06-15T20:34:11Z<p>There's a command line tool "xcodebuild" you can call to kick off an XCode build without it being open. There are flags you can use to set targets and so on.</p>
http://stackoverflow.com/questions/995424/xcode-test-automation-for-iphone/1000538#10005380Answer by Chris Kimpton for XCode Test Automation For IPhone Chris Kimpton2009-06-16T09:56:06Z2009-06-16T09:56:06Z<p>Dr Nic's <a href="http://www.vimeo.com/1262916" rel="nofollow">testing with Ruby</a> may help with some of this</p>
http://stackoverflow.com/questions/995424/xcode-test-automation-for-iphone/1000695#10006950Answer by David Sykes for XCode Test Automation For IPhone David Sykes2009-06-16T10:31:38Z2009-06-16T10:31:38Z<p>Could you add a build phase to the target that runs a script to upload the binary to the iphone?</p>
<p>Right click the target, Add->New Build Phase->New Run Script Build Phase</p>
http://stackoverflow.com/questions/995424/xcode-test-automation-for-iphone/1007718#10077181Answer by chuan for XCode Test Automation For IPhone chuan2009-06-17T15:18:58Z2009-06-17T15:28:19Z<p>The comment section does not provide a good way of display the solution properly. Here is the summary of answer. </p>
<p>The task of building IPhone app, uploading and trigger the debug process on IPhone is done via AppleScript. Here is how the AppleScript looks like:</p>
<pre><code>tell application "Xcode"
open "Users:chuan:Desktop:iphone_manual_client:iphone_manual_client.xcodeproj"
tell project "iphone_manual_client"
clean
build
(* for some reasons, debug will hang even the debug process has completed.
The try block is created to suppress the AppleEvent timeout error
*)
try
debug
end try
end tell
quit
end tell
</code></pre>
<p>AppleScript accepts ":" instead of "/" for file and folder separator.</p>
<p>The GDB console output can be captured by setting the GDB option to write it to file. this is done by typing the following command in Terminal:</p>
<pre><code>defaults write com.apple.Xcode PBXGDBDebuggerLogToFile YES
defaults write com.apple.Xcode PBXGDBDebuggerLogFileName <path to my gdb output file>
</code></pre>
<p>Lastly, many thanks to various ppl who have helped to solve this problem. </p>
http://stackoverflow.com/questions/995424/xcode-test-automation-for-iphone/1180486#11804860Answer by Brian for XCode Test Automation For IPhone Brian2009-07-24T22:27:31Z2009-07-24T22:27:31Z<p>Check out UISpec <a href="http://code.google.com/p/uispec/" rel="nofollow">http://code.google.com/p/uispec/</a></p>
<p>It's a full automation test framework being developed for the iphone.</p>
http://stackoverflow.com/questions/995424/xcode-test-automation-for-iphone/1859891#18598910Answer by ~rzr for XCode Test Automation For IPhone ~rzr2009-12-07T13:12:55Z2009-12-07T13:12:55Z<blockquote>
<p>xcodebuild will just build the binary and it will not upload the newly compiled binary to iphone.</p>
</blockquote>
<p>actually it can upload (after signing it), but not run too bad...
maybe it can be run using gdb once connected to target but how (ip?, usb? usbnet?) ?</p>
<p>Regards</p>