Merge "Add the new option for the scripted monkey profile testing." into gingerbread
This commit is contained in:
committed by
Android (Google) Code Review
commit
27d0ec1e87
@@ -172,6 +172,9 @@ public class Monkey {
|
|||||||
|
|
||||||
long mDroppedFlipEvents = 0;
|
long mDroppedFlipEvents = 0;
|
||||||
|
|
||||||
|
/** The delay between user actions. This is for the scripted monkey. **/
|
||||||
|
long mProfileWaitTime = 5000;
|
||||||
|
|
||||||
/** a filename to the setup script (if any) */
|
/** a filename to the setup script (if any) */
|
||||||
private String mSetupFileName = null;
|
private String mSetupFileName = null;
|
||||||
|
|
||||||
@@ -444,18 +447,18 @@ public class Monkey {
|
|||||||
if (mScriptFileNames != null && mScriptFileNames.size() == 1) {
|
if (mScriptFileNames != null && mScriptFileNames.size() == 1) {
|
||||||
// script mode, ignore other options
|
// script mode, ignore other options
|
||||||
mEventSource = new MonkeySourceScript(mRandom, mScriptFileNames.get(0), mThrottle,
|
mEventSource = new MonkeySourceScript(mRandom, mScriptFileNames.get(0), mThrottle,
|
||||||
mRandomizeThrottle);
|
mRandomizeThrottle, mProfileWaitTime);
|
||||||
mEventSource.setVerbose(mVerbose);
|
mEventSource.setVerbose(mVerbose);
|
||||||
|
|
||||||
mCountEvents = false;
|
mCountEvents = false;
|
||||||
} else if (mScriptFileNames != null && mScriptFileNames.size() > 1) {
|
} else if (mScriptFileNames != null && mScriptFileNames.size() > 1) {
|
||||||
if (mSetupFileName != null) {
|
if (mSetupFileName != null) {
|
||||||
mEventSource = new MonkeySourceRandomScript(mSetupFileName, mScriptFileNames,
|
mEventSource = new MonkeySourceRandomScript(mSetupFileName, mScriptFileNames,
|
||||||
mThrottle, mRandomizeThrottle, mRandom);
|
mThrottle, mRandomizeThrottle, mRandom, mProfileWaitTime);
|
||||||
mCount++;
|
mCount++;
|
||||||
} else {
|
} else {
|
||||||
mEventSource = new MonkeySourceRandomScript(mScriptFileNames, mThrottle,
|
mEventSource = new MonkeySourceRandomScript(mScriptFileNames, mThrottle,
|
||||||
mRandomizeThrottle, mRandom);
|
mRandomizeThrottle, mRandom, mProfileWaitTime);
|
||||||
}
|
}
|
||||||
mEventSource.setVerbose(mVerbose);
|
mEventSource.setVerbose(mVerbose);
|
||||||
mCountEvents = false;
|
mCountEvents = false;
|
||||||
@@ -638,6 +641,9 @@ public class Monkey {
|
|||||||
mSetupFileName = nextOptionData();
|
mSetupFileName = nextOptionData();
|
||||||
} else if (opt.equals("-f")) {
|
} else if (opt.equals("-f")) {
|
||||||
mScriptFileNames.add(nextOptionData());
|
mScriptFileNames.add(nextOptionData());
|
||||||
|
} else if (opt.equals("--profile-wait")) {
|
||||||
|
mProfileWaitTime = nextOptionLong("Profile delay" +
|
||||||
|
" (in milliseconds) to wait between user action");
|
||||||
} else if (opt.equals("-h")) {
|
} else if (opt.equals("-h")) {
|
||||||
showUsage();
|
showUsage();
|
||||||
return false;
|
return false;
|
||||||
@@ -1108,7 +1114,8 @@ public class Monkey {
|
|||||||
usage.append(" [--port port]\n");
|
usage.append(" [--port port]\n");
|
||||||
usage.append(" [-s SEED] [-v [-v] ...]\n");
|
usage.append(" [-s SEED] [-v [-v] ...]\n");
|
||||||
usage.append(" [--throttle MILLISEC] [--randomize-throttle]\n");
|
usage.append(" [--throttle MILLISEC] [--randomize-throttle]\n");
|
||||||
usage.append(" COUNT");
|
usage.append(" [--profile-wait MILLISEC]\n");
|
||||||
|
usage.append(" COUNT\n");
|
||||||
System.err.println(usage.toString());
|
System.err.println(usage.toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,16 +48,16 @@ public class MonkeySourceRandomScript implements MonkeyEventSource {
|
|||||||
* @param random The random number generator.
|
* @param random The random number generator.
|
||||||
*/
|
*/
|
||||||
public MonkeySourceRandomScript(String setupFileName, ArrayList<String> scriptFileNames,
|
public MonkeySourceRandomScript(String setupFileName, ArrayList<String> scriptFileNames,
|
||||||
long throttle, boolean randomizeThrottle, Random random) {
|
long throttle, boolean randomizeThrottle, Random random, long profileWaitTime) {
|
||||||
if (setupFileName != null) {
|
if (setupFileName != null) {
|
||||||
mSetupSource = new MonkeySourceScript(random, setupFileName, throttle,
|
mSetupSource = new MonkeySourceScript(random, setupFileName, throttle,
|
||||||
randomizeThrottle);
|
randomizeThrottle, profileWaitTime);
|
||||||
mCurrentSource = mSetupSource;
|
mCurrentSource = mSetupSource;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (String fileName: scriptFileNames) {
|
for (String fileName: scriptFileNames) {
|
||||||
mScriptSources.add(new MonkeySourceScript(random, fileName, throttle,
|
mScriptSources.add(new MonkeySourceScript(random, fileName, throttle,
|
||||||
randomizeThrottle));
|
randomizeThrottle, profileWaitTime));
|
||||||
}
|
}
|
||||||
|
|
||||||
mRandom = random;
|
mRandom = random;
|
||||||
@@ -72,8 +72,8 @@ public class MonkeySourceRandomScript implements MonkeyEventSource {
|
|||||||
* @param random The random number generator.
|
* @param random The random number generator.
|
||||||
*/
|
*/
|
||||||
public MonkeySourceRandomScript(ArrayList<String> scriptFileNames, long throttle,
|
public MonkeySourceRandomScript(ArrayList<String> scriptFileNames, long throttle,
|
||||||
boolean randomizeThrottle, Random random) {
|
boolean randomizeThrottle, Random random, long profileWaitTime) {
|
||||||
this(null, scriptFileNames, throttle, randomizeThrottle, random);
|
this(null, scriptFileNames, throttle, randomizeThrottle, random, profileWaitTime);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -106,6 +106,8 @@ public class MonkeySourceScript implements MonkeyEventSource {
|
|||||||
|
|
||||||
private static final String EVENT_KEYWORD_TAP = "Tap";
|
private static final String EVENT_KEYWORD_TAP = "Tap";
|
||||||
|
|
||||||
|
private static final String EVENT_KEYWORD_PROFILE_WAIT = "ProfileWait";
|
||||||
|
|
||||||
// a line at the end of the header
|
// a line at the end of the header
|
||||||
private static final String STARTING_DATA_LINE = "start data >>";
|
private static final String STARTING_DATA_LINE = "start data >>";
|
||||||
|
|
||||||
@@ -113,6 +115,8 @@ public class MonkeySourceScript implements MonkeyEventSource {
|
|||||||
|
|
||||||
private static int LONGPRESS_WAIT_TIME = 2000; // wait time for the long
|
private static int LONGPRESS_WAIT_TIME = 2000; // wait time for the long
|
||||||
|
|
||||||
|
private long mProfileWaitTime = 5000; //Wait time for each user profile
|
||||||
|
|
||||||
FileInputStream mFStream;
|
FileInputStream mFStream;
|
||||||
|
|
||||||
DataInputStream mInputStream;
|
DataInputStream mInputStream;
|
||||||
@@ -126,9 +130,10 @@ public class MonkeySourceScript implements MonkeyEventSource {
|
|||||||
* @param throttle The amount of time in ms to sleep between events.
|
* @param throttle The amount of time in ms to sleep between events.
|
||||||
*/
|
*/
|
||||||
public MonkeySourceScript(Random random, String filename, long throttle,
|
public MonkeySourceScript(Random random, String filename, long throttle,
|
||||||
boolean randomizeThrottle) {
|
boolean randomizeThrottle, long profileWaitTime) {
|
||||||
mScriptFileName = filename;
|
mScriptFileName = filename;
|
||||||
mQ = new MonkeyEventQueue(random, throttle, randomizeThrottle);
|
mQ = new MonkeyEventQueue(random, throttle, randomizeThrottle);
|
||||||
|
mProfileWaitTime = profileWaitTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -350,6 +355,14 @@ public class MonkeySourceScript implements MonkeyEventSource {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Handle the profile wait time
|
||||||
|
if (s.indexOf(EVENT_KEYWORD_PROFILE_WAIT) >= 0) {
|
||||||
|
MonkeyWaitEvent e = new MonkeyWaitEvent(mProfileWaitTime);
|
||||||
|
mQ.addLast(e);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Handle keypress events
|
// Handle keypress events
|
||||||
if (s.indexOf(EVENT_KEYWORD_KEYPRESS) >= 0 && args.length == 1) {
|
if (s.indexOf(EVENT_KEYWORD_KEYPRESS) >= 0 && args.length == 1) {
|
||||||
String key_name = args[0];
|
String key_name = args[0];
|
||||||
|
|||||||
Reference in New Issue
Block a user