标签:
iOS code coverage test tool.
基于lcov-1.11的iOS代码覆盖率测试工具,适用与iOS真机与模拟器。
Mac OS X :10.8.5+ 建议10.9
Xcode :5.0+ 建议6.1
拷贝CodeCoverage4iOS项目到主工程根目录,即${your_proj.xcworkspace}所在目录
在Xcode中设置全局变量 NT_COVERAGE=1,用于代码覆盖率开关控制,如配置路径 iOSProj —> TARGTS -> MyApp -> Build Settings -> Preprocessor Macros -> Debug
中添加NT_COVERAGE=1
对主工程及依赖工程在Build Settings做如下配置:
例如:iOSProj —> TARGTS -> MyApp -> Build Settings -> Generate Debug Symbols
以上配置建议仅在Debug下配置为YES,避免影响Release打包
在AppDelegate.m中添加如下代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
- ( void )applicationDidEnterBackground:(UIApplication *)application { ... #if NT_COVERAGE #if !TARGET_IPHONE_SIMULATOR NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDirectory = [paths objectAtIndex:0]; setenv( "GCOV_PREFIX" , [documentsDirectory cStringUsingEncoding:NSUTF8StringEncoding], 1); setenv( "GCOV_PREFIX_STRIP" , "13" , 1); #endif extern void __gcov_flush( void ); __gcov_flush(); #endif ... } |
当程序被拉到后台时调用__gcov_flush()
生成.gcda文件,此文件中记录了代码覆盖率,注意__gcov_flush()
可重复调用,记录为追加写。
~/Library/Developer/Xcode/DerivedData/iOSProj-cndbgdtazzzhaebuyvgjsqmkvwdr/Build/Intermediates/MyApp.build/Debug-iphonesimulator/MyApp.build/Objects-normal/i386
·下Document/${CURRENT_ARCH}/
下在Build Phases中添加执行脚本:
在TARGTS -> MyApp -> Build Phases -> New Run Script Phase
中编辑Run Script 添加 CodeCoverage4iOS/exportenv.sh
注意 : 要求对主工程及依赖工程都需要做此配置,主要脚本执行路径为相对路径,比如依赖工程与主工程同级目录,那么需要将脚本路径修改为相对路径../CodeCoverage4iOS/exportenv.sh
完成以上配置可以对Xcode工程进行构建,在使用Xcode安装app前确保CodeCoverage4iOS目录下envs.sh文件已删除
注意 : 如果只执?BuildCommand+B
也会产?envs.sh文件,建议Build成功后检查删除envs.sh?件,再执?Command+R
,确保envs.sh没有上次build产生的残余内容。
生成覆盖率报告:
CodeCoverage4iOS/getcov
Document/${CURRENT_ARCH}
下拷贝.gcda文件到CodeCoverage4iOS/gcda
下,再执行CodeCoverage4iOS/getcov
执行CodeCoverage4iOS/getcov
过程中会在目录CodeCoverage4iOS/coverage
下生成coverage.info文件,根据coverage.info文件生成最终报告。PS:如果需要合并测试结果,需要保留此文件
测试报告生成路径:CodeCoverage4iOS/report/index.html
如果需要对收集的覆盖率结果进行过滤,可以编辑CodeCoverage4iOS/getcov
中的函数exclude_data()
1
2
3
4
5
6
|
exclude_data() { LCOV -- remove $COVERAGE_INFO_DIR/${LCOV_INFO} "Developer/SDKs/*" -d "${OBJ_DIR}" -o $COVERAGE_INFO_DIR/${LCOV_INFO} LCOV -- remove $COVERAGE_INFO_DIR/${LCOV_INFO} "main.m" -d "${OBJ_DIR}" -o $COVERAGE_INFO_DIR/${LCOV_INFO} # Remove other patterns here... } |
CodeCoverage4iOS/coverage
下,如 Coverage1.info、Coverage2.info、Coverage3.info
CodeCoverage4iOS/mergecov
生成合并后的报告https://developer.apple.com/library/ios/qa/qa1514/_index.html
http://qualitycoding.org/xcode-code-coverage/
标签:
原文地址:http://www.cnblogs.com/zhengah/p/4801358.html