iOS 自动化工具测试汇总
测试按照模块分为 方法测试
、UI测试
、性能测试
。
一、方法、UI、性能测试工具 XCTest 和 UITest
Xcode自带的单元测试工具
用法:在开发完成的项目工程中新建一个 Target
,UI Testing Bundle
或者 Unit Testing Bundle
,其中的方法分别如下:
_xx_Tests
- (void)setUp {
// Put setup code here. This method is called before the invocation of each test method in the class.
}
- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the class.
}
- (void)testExample {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct results.
}
- (void)testPerformanceExample {
// This is an example of a performance test case.
[self measureBlock:^{
// Put the code you want to measure the time of here.
}];
}
_xx_UITests
- (void)setUp {
// Put setup code here. This method is called before the invocation of each test method in the class.
// In UI tests it is usually best to stop immediately when a failure occurs.
self.continueAfterFailure = NO;
// In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this.
}
- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the class.
}
- (void)testExample {
// UI tests must launch the application that they test.
XCUIApplication *app = [[XCUIApplication alloc] init];
[app launch];
// Use recording to get started writing UI tests.
// Use XCTAssert and related functions to verify your tests produce the correct results.
}
- (void)testLaunchPerformance {
if (@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 7.0, *)) {
// This measures how long it takes to launch your application.
[self measureWithMetrics:@[[[XCTApplicationLaunchMetric alloc] init]] block:^{
[[[XCUIApplication alloc] init] launch];
}];
}
}
以上每个方法都有注释,清晰地表明了每个方法的用途,在此就不翻译了。
二、UI自动化测试工具-- Appium
优点:
1、可使用多种语言进行测试;
2、Mac版本客户端,图形界面操作方便
;
3、不需要访问源代码
缺点:
1、配置复杂
;
2、多款客户端,经常出现无法适配iOS 版本
;
3、Appium Server桌面应用程序的发布不稳定;
三、UI自动化测试工具-- EarlGrey
优点:
1、语法简单(OC/Swift);
2、速度快;
3、快速嵌入工程
;
4、git及时更新,回复问题;
缺点:
1、需要工程源码
,有一定的业务及代码基础;
2、集成过多第三方库
,可能与工程产生冲突;
四、Instruments
Instrument的用途:
1、动态调试追踪,可以做性能分析和测试的工具;
2、支持多线程调试;
3、可以录制回放,图形用户界面的操作过程,并且可以保存为模板,供以后访问使用;
- Activity Monitor:可以查看所有的进程,以及进程的内存、cpu使用百分比等数据等。
- Allocations :管理内存是app开发中最重要的一个方面,对于开发者来说,在程序架构中减少内存的使用通常都是使用Allocations去定位和找出减少内存使用的方式 接下来,谈一下内存泄漏的两种情况
- 第一种:为对象A申请了内存空间,之后再也没用过对象A,也没释放过A导致内存泄漏,这种是
Leaked Memory
内存泄漏- 第二种:类似于递归,不断地申请内存空间导致的内存泄漏,这种情况是
Abandoned Momory
- Core Animation :查看图层的混合等
- Time Profiler : 是Xcode自带的工具,原理是定时抓取线程的堆栈信息,通过统计比较时间间隔之间的堆栈状态,计算一段时间内各个方法的近似耗时。精确度取决于设置的定时间隔。
关于Instruments的具体使用参考文章:
五、 MLeaksFinder
MLeaksFinder 是WeRead团队开源的iOS内存泄露检测工具。
转载自:https://juejin.cn/post/7030706541955121165