iOS自动化测试:OC和Swift项目,猴子测试SwiftMonkey
前话
公司对项目的要求越来越来高,崩溃率,卡顿等等都有明确的指标限制。 所以作为开发人员的自己也需要投入很大的精力去自测。但是即使这样,也很难保证涵盖的所有的测试场景。 前段时间,了解到猴子测试,年前正好有一点点空闲,有时间试验一下。
所谓的猴子测试,就是模拟用户随机操作我们的app,以求暴露问题。
最开始最有名的是ui-auto-monkey,执行代码是js。可惜在XCode7之后,XCode的Profile里,移除了UI Automation
, 没有了明确的入口。自己试了几下,没有试出来。 不过不晓得放到'Run Script'里是否可行。
基于ui-auto-monkey,后来的开发者们,也开发了很多monkey,功能也更加丰富,这次我用的是SwiftMonkey。
话不多说,写个demo实操起来。
一.OC项目运行SwiftMonkey
创建项目
把SwiftMonkey中的SwiftMonkeyPaws和SwiftMonkey拖入到工程
创建UI测试
记住选择语言是:Swift
这一步很关键,引入库
主工程中设置允许Swift运行
主工程导入SwiftMonkeyPaws,这是为了显示出猴子的爪子
把显示爪子的Swift混编进AppDelegate
最后把UI Test代码替换SMonkeyUITestUITests.swift
文件中的代码
```
import XCTest
import SwiftMonkey
class SMonkeyUITestUITests: XCTestCase {
override func setUp() {
super.setUp()
XCUIApplication().launch()
}
override func tearDown() {
super.tearDown()
}
func testMonkey() {
let application = XCUIApplication()
// Workaround for bug in Xcode 7.3. Snapshots are not properly updated
// when you initially call app.frame, resulting in a zero-sized rect.
// Doing a random query seems to update everything properly.
// TODO: Remove this when the Xcode bug is fixed!
_ = application.descendants(matching: .any).element(boundBy: 0).frame
// Initialise the monkey tester with the current device
// frame. Giving an explicit seed will make it generate
// the same sequence of events on each run, and leaving it
// out will generate a new sequence on each run.
let monkey = Monkey(frame: application.frame)
//let monkey = Monkey(seed: 123, frame: application.frame)
// Add actions for the monkey to perform. We just use a
// default set of actions for this, which is usually enough.
// Use either one of these but maybe not both.
// XCTest private actions seem to work better at the moment.
// UIAutomation actions seem to work only on the simulator.
monkey.addDefaultXCTestPrivateActions()
//monkey.addDefaultUIAutomationActions()
// Occasionally, use the regular XCTest functionality
// to check if an alert is shown, and click a random
// button on it.
monkey.addXCTestTapAlertAction(interval: 100, application: application)
// Run the monkey test indefinitely.
monkey.monkeyAround()
}
}
点击这两个地方开始录制运行猴子测试
需要特别注意
-
第五步很关键,否则你会出现下边这种报错
``` 2019-01-30 14:06:28.435245+0800 SMonkey2UITests-Runner[19083:829278] [AXMediaCommon] Unable to look up screen scale 2019-01-30 14:06:28.435344+0800 SMonkey2UITests-Runner[19083:829278] [AXMediaCommon] Unexpected physical screen orientation 2019-01-30 14:06:28.467172+0800 SMonkey2UITests-Runner[19083:829278] [AXMediaCommon] Unable to look up screen scale 2019-01-30 14:06:28.483581+0800 SMonkey2UITests-Runner[19083:829278] [AXMediaCommon] Unable to look up screen scale 2019-01-30 14:06:28.483717+0800 SMonkey2UITests-Runner[19083:829278] [AXMediaCommon] Unexpected physical screen orientation 2019-01-30 14:06:28.513119+0800 SMonkey2UITests-Runner[19083:829278] Running tests... 2019-01-30 14:06:28.596410+0800 SMonkey2UITests-Runner[19083:829278] The bundle “SMonkey2UITests” couldn’t be loaded because it is damaged or missing necessary resources. Try reinstalling the bundle. 2019-01-30 14:06:28.596650+0800 SMonkey2UITests-Runner[19083:829278] (dlopen_preflight(/Users/yiche/Library/Developer/Xcode/DerivedData/SMonkey2-hkrzlpioecqhkkdqstkqwvygwggs/Build/Products/Debug-iphonesimulator/SMonkey2UITests-Runner.app/PlugIns/SMonkey2UITests.xctest/SMonkey2UITests): Library not loaded: @rpath/libswiftSwiftOnoneSupport.dylib Referenced from: /Users/yiche/Library/Developer/Xcode/DerivedData/SMonkey2-hkrzlpioecqhkkdqstkqwvygwggs/Build/Products/Debug-iphonesimulator/SwiftMonkey.framework/SwiftMonkey Reason: no suitable image found. Did find: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/libswiftSwiftOnoneSupport.dylib: mach-o, but not built for iOS simulator)
如果在
SMonkeyUITestUITests.swift
文件中出现提示No such module 'SwiftMonkey'
之类的提示, 点击录制按钮, 运行一下测试文件, 可以消除。
二.Swift项目运行SwiftMonkey
Swift项目运行SwiftMonkey更简单了,这里不做介绍了,步骤和OC项目基本一样,除去OC专门混编的步骤即可。
后话
除了SwiftMonkey这个猴子测试项目外, 还有其他的具有测试步骤截图、测试结果上传等功能更加丰富的MonkeyTest。感兴趣,大家可以自己多研究一下。
比如这个:《基于 XCTestWD,swiftmonkey 二次开发,实现无需插桩的 iOS monkey 自动化工具 fastmonkey》
参考文章
《OC-测试:monkey For OC(iOS 猴子测试)》
交流
希望能和大家交流技术
Blog:http://www.lilongcnc.cc