這一系列文章是我的讀書筆記频伤,方便以后回顧
一、 什么是Monkey
Monkey是Android SDK中自帶的一個命令行工具芝此,可以在模擬器里或?qū)嶋H設(shè)備中運(yùn)行憋肖,它向系統(tǒng)發(fā)送偽隨機(jī)的用戶事件流,如按鍵輸入婚苹、觸摸屏輸入岸更、手勢輸入等,實(shí)現(xiàn)對正在開發(fā)的應(yīng)用程序進(jìn)行壓力測試膊升。
二怎炊、 Monkey的特征
1、 測試的對象僅為應(yīng)用程序包廓译,有一定的局限性评肆。
2、 Monky測試使用的事件流數(shù)據(jù)流是隨機(jī)的非区,不能進(jìn)行自定義糟港。
3、 可對MonkeyTest的對象院仿,事件數(shù)量秸抚,類型,頻率等進(jìn)行設(shè)置歹垫。
三剥汤、Monkey的基本使用
1. 進(jìn)入monkey
命令:adb shell/system/bin/monkey
2. 運(yùn)行monkey
命令:adb shell monkey <event-count> ,<event-count>是指隨機(jī)發(fā)送事件數(shù)
adb shell monkey 100排惨,運(yùn)行monkey并執(zhí)行了100件隨機(jī)事件吭敢。
3. monkey常規(guī)類命令
adb shell monkey -h 顯示monkey參數(shù)幫助信息usage
adb shell monkey -v 打印出日志信息,每個-v將增加反饋信息的級別暮芭,最多支持3個-v
4. monkey事件類命令
adb shell monkey -f <scriptfile> <event-count> 讓monkey運(yùn)行指定monkey腳本鹿驼,<scriptfile> 為測試腳本名,<event-count>是指循環(huán)次數(shù)辕宏。
adb shell monkey -s <seed> <event-count> 可以重復(fù)之前的隨機(jī)操作畜晰,-s 后接隨機(jī)數(shù)的生成器的seed值。
adb shell monkey --throttle <milliseconds> 表示每個事件之間的固定延遲事件瑞筐,時(shí)間的單位為ms凄鼻,若后面不接時(shí)間,monkey將不會延遲
事件百分比
adb shell monkey --ptc-touch <percent> 設(shè)定觸摸事件的百分比
adb shell monkey --ptc-motion <percent> 設(shè)定動作事件的百分比
adb shell monkey --ptc-trackball <percent> 設(shè)定軌跡球事件的百分比
adb shell monkey --ptc-nav <percent> 設(shè)定基本導(dǎo)航事件的百分比
adb shell monkey --ptc-majornav <percent> 設(shè)定主要導(dǎo)航事件的百分比
adb shell monkey --ptc-syskeys <percent> 設(shè)定按鍵事件的百分比
adb shell monkey --ptc-appswitch <percent> 設(shè)定啟動事件的百分比
adb shell monkey --ptc-anyevent <percent> 其他類型事件的百分比,包括keypress块蚌、不常用button以及其他未提及事件
5. monkey約束類命令
adb shell monkey -p <allowed-package-name> <event-count>闰非, 測試一個或多個包名,每個-p對應(yīng)一個包峭范。
adb shell monkey -p <main-category> <event-count>财松, 測試一個或多個類別。
6. monkey調(diào)試類命令
adb shell monkey --dbg-no-events <event-count> 監(jiān)視應(yīng)用程序所調(diào)用的包之間的轉(zhuǎn)換
adb shell monkey --hprof <event-count> 在事件序列前后立即生成profiling report
adb shell monkey --ignore-crashes <event-count> 讓monkey在應(yīng)用崩潰或異常后繼續(xù)發(fā)送事件直到計(jì)數(shù)完成
adb shell monkey --ignore-timeouts <event-count> 讓monkey在任何超時(shí)錯誤發(fā)生后繼續(xù)發(fā)送事件直到計(jì)數(shù)完成
adb shell monkey --ignore-security-exceptions <event-count> 讓monkey在應(yīng)用權(quán)限錯誤發(fā)生后繼續(xù)發(fā)送事件直到計(jì)數(shù)完成
adb shell monkey --kill-process-after-error <event-count> 讓monkey因?yàn)閼?yīng)用發(fā)生錯誤而停止時(shí)纱控,將會通知系統(tǒng)停止發(fā)送錯誤進(jìn)程
adb shell monkey --monitor-native-crashes <event-count> 讓監(jiān)視并報(bào)告monkey運(yùn)行時(shí)Android系統(tǒng)native code的崩潰事件
adb shell monkey --wait-dbg <event-count> 暫停執(zhí)行中的monkey辆毡,直到有調(diào)試器與它連接
7. monkey API
軌跡球事件
DispatchTrackball(long downTime, long eventTime, int action, float x, float y, float pressure, float size, int metaState, float xPrecision, float yPrecision, int device, int edgeFlags)
輸入字符串事件
DispatchString(String text)
點(diǎn)擊事件
DispatchPointer(long downTime, long eventTime, int action, float x, float y, float pressure, float size, int metaState, float xPrecision, float yPrecision, int device, int edgeFlags)
啟動應(yīng)用
LaunchActivity(String pkg_name, String cl_name)
等待事件
UserWait(long sleeptime)
按下按鍵
DispatchPress(int keyCode)
長按按鍵
LongPress(int keyCode)
發(fā)送按鍵
DispatchKey(long downTime, long eventTime, int action, int code, int repeat, int metaState, int device, int scancode)