现在的位置: 首页 > 综合 > 正文

android mokey操作简介

2014年01月14日 ⁄ 综合 ⁄ 共 10641字 ⁄ 字号 评论关闭

 

一、为什么要用Monkey 测试?
002   
003 简单在说就是象猴子一样乱点,为了测试软件的稳定性,健壮性。号称最快速有效的方法。有时候运行相同系列的测试,即使是复杂的测试,但是以相同的顺序和路径,即使一遍又一遍地运行也很少机会能发现内存和资源使用的bug。而此时猴子就比人更有效了。
004   
005 简介
006   
007 Monkey是一个命令行工具 ,可以运行在模拟器里或实际设备中。它向系统发送伪随机的用户事件流,实现对正在开发的应用程序进行压力测试。Monkey包括许多选项,它们大致分为四大类:
008   
009 · 基本配置 选项,如设置尝试的事件数量。
010   
011 · 运行约束选项,如设置只对单独的一个包进行测试。
012   
013 · 事件类型和频率。
014   
015 · 调试选项。
016   
017 在Monkey运行的时候,它生成事件,并把它们发给系统。同时,Monkey还对测试中的系统进行监测,对下列三种情况进行特殊处理:
018   
019 · 如果限定了Monkey运行在一个或几个特定的包上,那么它会监测试图转到其它包的操作,并对其进行阻止。
020   
021 · 如果应用程序崩溃或接收到任何失控异常 ,Monkey将停止并报错。
022   
023 · 如果应用程序产生了应用程序不响应(application not responding)的错误,Monkey将会停止并报错。
024   
025 按照选定的不同级别的反馈信息,在Monkey中还可以看到其执行过程报告和生成的事件。 
026   
027 二、怎么用的?
028   
029 首先用一个最简单的例子分析:
030 //p参数: 表示指定测试的程序
031 //v参数: 表示查看monkey生成的一些详细的随机的事件名
032 //数字100: 表示测试事件数为100
033 monkey -p com.example.android.apis  -v -v -v
100
034   
035   
036 结果如下:
037   
038 :Monkey: seed=0
count=100
039   
040   
041 :AllowPackage: com.example.android.apis
042 :IncludeCategory: android.intent.category.LAUNCHER
043 :IncludeCategory: android.intent.category.MONKEY
044   
045 //各种事件所占的比例。
046 //各数字分别表示:
047 [--pct-touch PERCENT]
048 [--pct-motion PERCENT]
049 [--pct-trackball PERCENT]
050 [--pct-syskeys PERCENT]
051 [--pct-nav PERCENT]
052 [--pct-majornav PERCENT]
053 [--pct-appswitch PERCENT]
054 [--pct-flip PERCENT]
055 [--pct-anyevent PERCENT]
056 // Event percentages:
057 //   0: 15.0%
058 //   1: 10.0%
059 //   2: 15.0%
060 //   3: 25.0%
061 //   4: 15.0%
062 //   5: 2.0%
063 //   6: 2.0%
064 //   7: 1.0%
065 //   8: 15.0%
066 :Switch:
067   
068 //表示跳转到com.example.android.apis 里面的ApiDemos这一个Activity里。 
069 #Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;launchFlags=0x10000000;component=com.example.android.apis/.ApiDemos;end
070   
071 //允许此Intent跳转,
072     // Allowing start of Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.example.android.apis/.ApiDemos } in package com.example.android.apis
073   
074 //发送的一些动作,如点击按下,点击放开,移动。
075 :Sending Pointer ACTION_MOVE x=-4.0
y=2.0
076 :Sending Pointer ACTION_UP x=0.0
y=0.0
077 :Sending Pointer ACTION_DOWN x=207.0
y=282.0
078 :Sending Pointer ACTION_UP x=189.0
y=289.0
079 :Sending Pointer ACTION_DOWN x=95.0
y=259.0
080 :Sending Pointer ACTION_UP x=95.0
y=259.0
081 :Sending Pointer ACTION_DOWN x=295.0
y=223.0
082 :Sending Pointer ACTION_UP x=290.0
y=213.0
083 :Sending Pointer ACTION_MOVE x=-5.0
y=3.0
084 :Sending Pointer ACTION_MOVE x=0.0
y=-5.0
085   
086 //拒绝此跳转,因为它是跳转到非它自己的包的Activity,本测试中是指写测试它程序所在的包,此跳转是跳出本程序,进入到桌面。
087     // Rejecting start of Intent { act=android.intent.action.MAIN cat=[android.intent.category.HOME] cmp=com.android.launcher/.Launcher } in package com.android.launcher
088   
089 //继续发送动作。
090 :Sending Pointer ACTION_DOWN x=74.0
y=201.0
091 :Sending Pointer ACTION_UP x=74.0
y=201.0
092 :Sending Pointer ACTION_MOVE x=3.0
y=-2.0
093 :Sending Pointer ACTION_UP x=0.0
y=0.0
094 :Sending Pointer ACTION_MOVE x=-4.0
y=2.0
095 Events injected: 100
096   
097 //丢弃的,键=0,指针=0,轨迹球=0,翻转=0
098 :Dropped: keys=0
pointers=0
trackballs=
0 flips=0
099   
100 //网络统计经过时间为4202ms,其中4202ms是用于在手机上的,0ms用于无线网络上,没有连接的时间为0ms。
101 ## Network stats: elapsed time=4202ms (4202ms mobile, 0ms wifi, 0ms not connected)
102   
103 //monkey测试完成。
104 // Monkey finished
105   
106 从例子中可以看出,该程序在这次测试中没有问题,若程序出现问题终端将打印出异常供程序员查找错误。
107   
108   
109   
110 以下是monkey命令行的一些参数:
111 -p:所在测试的包,可以是一个也可以是多个 如 monkey -p com.androd.sms -p com.androd.explorer
112 -c:如果用此参数指定了一个或几个类别,Monkey将只允许系统启动被这些类别中的某个类别列出的Activity。如果不指定任何类别,Monkey将选择下列类别中列出的Activity: Intent.CATEGORY_LAUNCHER或Intent.CATEGORY_MONKEY。要指定多个类别,需要使用多个-c选项,每个-c选项只能用于一个类别。
113 -ignore-crash:当应用程序崩溃或发生任何失控异常时,Monkey将停止运行。如果设置此选项,Monkey将继续向系统发送事件,直到计数完成。
114 -ignore-timeouts:通常,当应用程序发生任何超时错误(如“Application Not Responding”对话框)时,Monkey将停止运行。如果设置此选项,Monkey将继续向系统发送事件,直到计数完成。
115 -ignore-security-exceptions:通常,当应用程序发生许可错误(如启动一个需要某些许可的Activity)时,Monkey将停止运行。如果设置了此选项,Monkey将继续向系统发送事件,直到计数完成。
116 -monitor-native-crashes:监视并报告Android系统中本地代码的崩溃事件。如果设置了–kill-process-after-error,系统将停止运行。
117 -kill-process-after-error:如果程序出现错误,monkey将结束此程序进程。
118 -hprof:设置此项,将在monkey事件序列之前和之后立即生成profilling报告。这将会在data/misc中生成大文件(约5mb)所以要小心使用它。
119 -pct-touch:调整触摸事件的百分比(触摸事件是一个down-up事件,它发生在屏幕的某单一位置)。
120 -pct-motion:动作事件的百分比(动作事件由屏幕上某处的一个down事件、一系列的随机事件和一个up事件组成)。
121 -pct-trackball:调整轨迹事件的百分比(轨迹事件由一个或几个随机移动组成,有时还伴随着点击)。
122 -pct-syskeys:调整系统按键事件的百分比(这些按键通常被保留,由系统使用,如home,back,start call,end call及音量控制)。
123 -pct-nav 调整基本导航事件的百分比(导航事件来自方向输入设备的up/down/left/right组成)。
124 -pct-majornav:调整“主要”导航事件的百分比(这些导航事件通常引发图形界面中的动作,如:5-way键盘的中间按键、回退按键、菜单按键)
125 -pct-appswitch:调整启动Activity的百分比。在随机间隔里,Monkey将执行一个startActivity()调用,作为最大程度覆盖包中全部Activity的一种方法。
126 -pct-anyevent:调整启动Activity的百分比。它包罗了所有其它的事件类型,如:按键,其它不常用的设备按钮。
127 -pct-flip:
128 –wait-dbg:停止执行中的Monkey,直到有调试器和它相连接。
129 –dbg-no-events:设置此选项,Monkey将执行初始启动,进入到一个测试Activity,然后不会再进一步生成事件。为了得到最佳结果,把它与-v、一个或几个包约束、以及一个保持Monkey运行30秒或更长时间的非零值联合起来,从而提供一个环境,可以监视应用程序所调用的包之间的转换。
130 -setup:
131 -f:
132 -port:为monkey开启专用端口。此时只monkey不会帮你乱点击,而此时你自己就是一只monkey了,在你乱点的时候,monkey会输出你点击后回馈的信息。如果你打完命令之后模拟器上没有启动你所要启动的包,你需要自己启动,但是你只能启动你-p中指定的那几个包。ctrl+c中断。
133 --throttle :当事件起效时等待的毫秒数。
134 -s:随机数生成器的seed值。如果用相同的seed值再次运行monkey,它将生成相同的事件序列。
135 COUNT:要发送的事件数。
136 usage: monkey [-p ALLOWED_PACKAGE [-p ALLOWED_PACKAGE] ...]
137               [-c MAIN_CATEGORY [-c MAIN_CATEGORY] ...]
138               [--ignore-crashes] [--ignore-timeouts]
139               [--ignore-security-exceptions] [--monitor-native-crashes]
140               [--kill-process-after-error] [--hprof]
141               [--pct-touch PERCENT] [--pct-motion PERCENT]
142               [--pct-trackball PERCENT] [--pct-syskeys PERCENT]
143               [--pct-nav PERCENT] [--pct-majornav PERCENT]
144               [--pct-appswitch PERCENT] [--pct-flip PERCENT]
145               [--pct-anyevent PERCENT]
146               [--wait-dbg] [--dbg-no-events]
147               [--setup scriptfile] [-f scriptfile [-f scriptfile] ...]
148               [--port port]
149               [-s SEED] [-v [-v] ...] [--throttle MILLISEC]
150               COUNT
151   
152   
153   
154   
155 Monkey测试结果 :
156 # monkey -p wfh.LessonTable -v -v -v
200
157 :Monkey: seed=0
count=200
158 :AllowPackage: wfh.LessonTable
159 :IncludeCategory: android.intent.category.LAUNCHER
160 :IncludeCategory: android.intent.category.MONKEY
161 // Selecting main activities from category android.intent.category.LAUNCHER
162 //   - NOT USING main activity com.android.browser.BrowserActivity (from package com.android.browser)
163 //   - NOT USING main activity com.android.music.MusicBrowserActivity (from package com.android.music)
164 //   - NOT USING main activity com.android.contacts.DialtactsActivity (from package com.android.contacts)
165 //   - NOT USING main activity com.android.contacts.DialtactsContactsEntryActivity (from package com.android.contacts)
166 //   - NOT USING main activity com.android.mms.ui.ConversationList (from package com.android.mms)
167 //   - NOT USING main activity com.android.spare_parts.SpareParts (from package com.android.spare_parts)
168 //   - NOT USING main activity com.android.camera.Camera (from package com.android.camera)
169 //   - NOT USING main activity com.android.alarmclock.AlarmClock (from package com.android.alarmclock)
170 //   - NOT USING main activity com.android.settings.Settings (from package com.android.settings)
171 //   - NOT USING main activity com.android.camera.GalleryPicker (from package com.android.gallery)
172 //   - NOT USING main activity com.android.email.activity.Welcome (from package com.android.email)
173 //   - NOT USING main activity com.example.android.apis.ApiDemos (from package com.example.android.apis)
174 //   - NOT USING main activity com.android.calculator2.Calculator (from package com.android.calculator2)
175 //   - NOT USING main activity com.android.customlocale.CustomLocaleActivity (from package com.android.customlocale)
176 //   - NOT USING main activity com.android.development.Development (from package com.android.development)
177 //   - NOT USING main activity com.myactivity.MyActivity (from package com.myactivity)
178 //   + Using main activity wfh.LessonTable.MainTable (from package wfh.LessonTable)
179 //   - NOT USING main activity wfh.rss.MainRSS (from package wfh.rss)
180 // Selecting main activities from category android.intent.category.MONKEY
181 //   - NOT USING main activity com.android.launcher.Launcher (from package com.android.launcher)
182 //   - NOT USING main activity com.android.settings.ManageApplications (from package com.android.settings)
183 //   - NOT USING main activity com.android.settings.RunningServices (from package com.android.settings)
184 // Seeded: 0
185 // Event percentages:
186 //   0: 15.0%
187 //   1: 10.0%
188 //   2: 15.0%
189 //   3: 25.0%
190 //   4: 15.0%
191 //   5: 2.0%
192 //   6: 2.0%
193 //   7: 1.0%
194 //   8: 15.0%
195 :Switch: #Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;launchFlags=0x10000000;component=wfh.LessonTable/.MainTable;end
196     // Allowing start of Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=wfh.LessonTable/.MainTable } in package wfh.LessonTable
197 Sleeping for
0 milliseconds
198 :SendKey (ACTION_DOWN): 21   
// KEYCODE_DPAD_LEFT
199 :SendKey (ACTION_UP): 21   
// KEYCODE_DPAD_LEFT
200 Sleeping for
0 milliseconds  //------------------------------------用--throttle来设置一个起效的事件发生后时延时。
201 :Sending Pointer ACTION_MOVE x=-4.0
y=2.0
202 :Sending Pointer ACTION_MOVE x=-5.0
y=-4.0
203 :Sending Pointer ACTION_MOVE x=0.0
y=-1.0
204 :Sending Pointer ACTION_MOVE x=-3.0
y=2.0
205 :Sending Pointer ACTION_MOVE x=-4.0
y=2.0
//-------------移动事件!!!
206 :Sending Pointer ACTION_MOVE x=-2.0
y=4.0
207 :Sending Pointer ACTION_MOVE x=4.0
y=1.0
208 :Sending Pointer ACTION_MOVE x=-5.0
y=4.0
209 :Sending Pointer ACTION_MOVE x=-5.0
y=1.0
210 :Sending Pointer ACTION_MOVE x=0.0
y=-2.0
211 :Sending Pointer ACTION_DOWN x=0.0
y=0.0
212 :Sending Pointer ACTION_UP x=0.0
y=0.0
213 Sleeping for
0 milliseconds
214 :SendKey (ACTION_DOWN): 82   
// KEYCODE_MENU
215 :SendKey (ACTION_UP): 82   
// KEYCODE_MENU
216 Sleeping for
0 milliseconds
217 :SendKey (ACTION_DOWN): 64   
// KEYCODE_EXPLORER
218 :SendKey (ACTION_UP): 64   
// KEYCODE_EXPLORER
219 Sleeping for
0 milliseconds
220 :SendKey (ACTION_DOWN): 23   
// KEYCODE_DPAD_CENTER
221 :SendKey (ACTION_UP): 23   
// KEYCODE_DPAD_CENTER
222 Sleeping for
0 milliseconds
223 :SendKey (ACTION_DOWN): 91   
// KEYCODE_MUTE
224     // Allowing start of Intent { cmp=wfh.LessonTable/.EditLesson } in package wfh.LessonTable
225 :SendKey (ACTION_UP): 91   
// KEYCODE_MUTE
226 Sleeping for
0 milliseconds
227 :Sending Pointer ACTION_DOWN x=207.0
y=282.0
228 :Sending Pointer ACTION_MOVE x=210.0
y=277.0
229 :Sending Pointer ACTION_MOVE x=204.0
y=283.0
230 :Sending Pointer ACTION_MOVE x=205.0
y=278.0
231 :Sending Pointer ACTION_MOVE x=199.0
y=278.0
232 :Sending Pointer ACTION_MOVE x=199.0
y=287.0
233 :Sending Pointer ACTION_MOVE x=194.0
y=295.0
234 :Sending Pointer ACTION_MOVE x=198.0
y=290.0
235 :Sending Pointer ACTION_MOVE x=197.0
y=286.0
236 :Sending Pointer ACTION_MOVE x=189.0
y=289.0
237 :Sending Pointer ACTION_UP x=189.0
y=289.0
238 Sleeping for
0 milliseconds
239 :SendKey (ACTION_DOWN): 56   
// KEYCODE_PERIOD
240 :SendKey (ACTION_UP): 56   
// KEYCODE_PERIOD
241 Sleeping for
0 milliseconds
242 :Sending Pointer ACTION_DOWN x=95.0
y=259.0
243 :Sending Pointer ACTION_UP x=95.0
y=259.0
244 Sleeping for
0 milliseconds
245 :Sending Pointer ACTION_DOWN x=295.0
y=223.0
246 :Sending Pointer ACTION_MOVE x=291.0
y=223.0
247 :Sending Pointer ACTION_MOVE x=291.0
y=218.0
248 :Sending Pointer ACTION_MOVE x=

抱歉!评论已关闭.