命令行编译运行测试应用与被测应用
参考:
http://blog.csdn.net/tlb203/article/details/8131707
前提:xcodebuild命令所在路径:/usr/bin
若没有配置其环境变量,则运用的时候用/usr/bin/xcodebuild,否则可以直接实用xcodebuild
一、在终端跳转到项目(IosTest.xcodeproj)所在路径,即以.xcodeproj结尾文件所在的路径。如:
cd /Applications/work/workspace/IosTest
二、编译app文件
据说第一步先做清理工作:
xcodebuild -target IosTest clean
第二步:
xcodebuild -target IosTest
build后会在项目根路径下生成build文件夹,里面有生成的app文件 。
三、将app文件打包成ipa文件。如下:
xcrun -sdk iphoneos PackageApplication -v build/Release-iphoneos/ IosTest.app -o /work/ IosTest.ipa
然后会在/work目录下生成IosTest.ipa文件
通过iTunes方式将app转为ipa格式的方法可以参考如下网址:
http://502317120.blog.51cto.com/4062300/1074445
四、命令行安装app文件(借助于fruitstrap工具)参考:
http://www.stewgleadow.com/blog/2011/11/05/installing-ios-apps-on-the-device-from-the-command-line/
1、确保你的Mac安装了git(可以在网上下载一个git的dmg包安装,下载后双击即可安装),然后在终端依次运行如下三条命令,用于下载并编译fruitstrap:
git clone git://github.com/ghughes/fruitstrap.git
cd fruitstrap
make fruitstrap
2、配置fruitstrap的环境变量,这样你可以随地直接用fruitstrap命令,而不用转到它所在的目录。方法如下:
如果Mac上的~目录下已经有.bash_profile文件则忽略此步,否则执行touch ~/.bash_profile命令,以便在~目录下生成.bash_profile文件。
执行open –e ~/.bash_profile命令打开.bash_profile,然后在文件中追加fruitstrap的路径,如:
export FRUIT_STRAP=/Applications/work/WorkingPaper/Fruitstrap/fruitstrap
export PATH=${PATH}:${FRUIT_STRAP}
保存后退出。并在终端执行fruitstrap命令后,回车,你将会看到如下的提示:
usage: fruitstrap [-d/--debug] [-i/--id device_id] -b/--bundle bundle.app [-a/--args arguments] [-t/--timeout timeout(seconds)]
表示fruitstrap的路径配置成功。注意,执行fruitstrap时最好不要在其源文件目录下实验。
3、安装app文件,可以执行如下命令:
fruitstrap –b /Build/Products/Debug-iphoneos/fruitstrap-demo.app
注意/Build/Products/Debug-iphoneos为你的app所在的路径,到底是绝对路径还是相对路径,取决去你执行fruitstrap命令时所在的路径。
五、命令行安装ipa文件(借助于transporter_chief.rb工具)参考:
http://gamua.com/blog/2012/03/how-to-deploy-ios-apps-to-the-iphone-via-the-command-line/
下载transporter_chief.rb这个ruby脚本,然后在其所在路径下执行以下命令进行安装:
./ transporter_chief.rb /work IosTest.ipa
安装成功后,会显示:# Transporter chief: All done, Sir.
六 命令行安装pxl文件
1、先将pxl文件打开(pxl本身是个压缩包,所以只要用解压文件打开就OK),提取其中的app文件,并通过命令将app文件安装好(或者通过iTunes安装,但将app拖动到iTunes后一定要再次同步一下,否则iTunes不会自动安装app格式的文件)。
2、通过91助手V5版本安装pxl文件。
3、卸载pxl时,如果用V3或者V5没有卸载干净,则再通过命令:进行注销卸载。
注意:其实先装app再装pxl就是为了通过app来启动pxl格式的文件,因为Athrun框架只能识别 app格式。
七 启动测试用例
<!--[if !supportLists]-->1、 <!--[endif]-->在eclipse中编译测试应用,并在终端通过instruments启动用例,用例启动的过程中会加载被测程序。命令如下:
instruments -w device_identifier -t /Applications/Xcode.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.bundle/Contents/Resources/Automation.tracetemplate -D instrumentsDriver xxx/TaoTest.app -e UIASCRIPT /Users/qinhuang/InstrumentDriver/CSRunner.js -e UIARESULTSPATH /Users/qinhuang/InstrumentDriver/log/ -v