Android -- 如何检测猴子工具是否完成工作?

Android -- How to detect if Monkey Tool has finished working?

我正在开发一个应用程序,基本上是对正在生产的设备执行 stress/functional 测试。

应用程序应等到 Monkey Tool 完成工作,以便它可以生成 .log 文件并通知 UI 测试。 我一般没有问题,但我需要知道 Monkey Tool 是否已完成测试。

我查看了这里的主要文档:Monkey Android Documentation

我也有时间查看 Monkey 源代码。一个例子是:Monkey.java

不幸的是,我真的找不到任何关于检测 Monkey 完成工作的时刻的线索。

所以真正的问题是:

当 Monkey Tool 完成测试 UI 时,是否有检测或获取信息的方法?

---[编辑]---

我尝试了一个业余解决方案,方法是使用 shell 检查 运行 Monkey 进程并读取 BufferedReader 的输出。它有效,但由于它不是最佳解决方案,我仍在等待更专业的答案(如果存在)。提前致谢。

这是我试过的代码:

boolean is_monkey_running = true;
    while(is_monkey_running) {
        try {
            //checking process state
            Process process = Runtime.getRuntime().exec("ps");
            BufferedReader buffered_reader = new BufferedReader(
                    new InputStreamReader(process.getInputStream()));

            StringBuilder log = new StringBuilder();
            String line = "";

            while ((line = buffered_reader.readLine()) != null) {
                log.append(line);
            }

            if (log.indexOf("com.android.commands.monkey") == -1) {
                //Monkey process has been finished.
                Log.i("AATS", GET_DATE_AND_TIME() +  "Monkey has finished testing.");
                is_monkey_running = false;
            }

            else {
                //Monkey is still running.
                WAIT_N_MILISECONDS(1000);
            }
        }
        catch (IOException e) {
        }
    }

好的。我想这是迄今为止我尝试过的最好的解决方案。发布它以便它可以帮助任何感兴趣的人。仍然开放任何更清晰的答案。

代码如下:

    //example String monkey_options = "--ignore-crashes --throttle 500 -v 500"; 
    try {
        Process monkey_process = new ProcessBuilder().command("monkey", monkey_options).start();
        monkey_process.waitFor();
    } catch (IOException e) {
        e.printStackTrace();
    } catch (InterruptedException e) {
        e.printStackTrace();
    }

编辑: 您的应用程序必须 运行 作为系统 apk 才能在应用程序中调用猴子进程