UiAutomator锁定设备并停止响应adb命令

时间:2016-12-22 07:07:07

标签: android uiautomator nanohttpd

我目前正在尝试通过UIautomator创建一个非常简单的UI转储器,但有一些非常奇怪的问题。在我目前的设计中,我使用nanohttpd与我的apk进行通信。

所以我的uiautomator测试看起来像这样:

@RunWith(AndroidJUnit4.class)
@SdkSuppress(minSdkVersion = 18)
public class Start {

    public static final String Tag = "UiDuper";
    private int port;
    private UiAutomatorHttpServer server;

    public Start() {
        Bundle extras = InstrumentationRegistry.getArguments();
        port = 9008;
        if(extras.containsKey("port")) {
            port = Integer.parseInt(extras.getString("port"));
            Log.i(Tag, "UIAutomator server port is " + port);
        }

    }

    @Before
    public void setUp() throws IOException, RemoteException {
        Log.i(Tag, "Start server with port " + port);
        server = new UiAutomatorHttpServer(port);
        server.start();
    }

    @After
    public void TearDown() {
        Log.i(Tag, "Tear down server");
        if(server != null) {
            server.stop();
        }
    }

    @Test
    @LargeTest
    public void RunServer() throws InterruptedException {
        while(true) {
            Thread.sleep(100);
            if(server == null)
                return;
            if(!server.isAlive()) {
                return;
            }
            if(server.ShouldStopServer()) {
                return;
            }
        }
    }
}

我的"服务器"看起来像这样:

public class UiAutomatorHttpServer extends NanoHTTPD {

    private final String stop = "/stop";
    private final String ping = "/ping";
    private final String dump = "/dump";

    private UiAutomatorService service;
    private boolean shouldStopServer;


    public UiAutomatorHttpServer(int port) throws RemoteException {
        super(port);
        service = new UiAutomatorService();
        stop = false;
    }

    @Override
    public Response serve(IHTTPSession session) {
        Log.i(Start.Tag, "New request");
        if(session.getUri().equals(ping)) {
            Log.i(Start.Tag, "Sending ping response");
            return newFixedLengthResponse(Response.Status.OK, MIME_PLAINTEXT, "Hello human.");
        }

        if(session.getUri().equals(dump)) {
            Log.i(Start.Tag, "Sending dump response");
            return newFixedLengthResponse(Response.Status.OK, MIME_PLAINTEXT,  service.dumpWindowHierarchy());
        }

        if(session.getUri().equals(stop)) {
            stopServer();
            return newFixedLengthResponse(Response.Status.OK, MIME_PLAINTEXT, "Stop");
        }

        Log.e(Start.Tag, "Something went wrong!");
        Log.e(Start.Tag, session.getUri());
        return newFixedLengthResponse(Response.Status.NOT_FOUND, MIME_PLAINTEXT, "Not found.");
    }

    public void stopServer() {
        Log.i(Start.Tag, "Stopping server");
        shouldStopServer = true;
    }

    public boolean ShouldStopServer() {
        return shouldStopServer;
    }

}

在设备上安装apk后,我做了一个adb转发:

adb forward tcp:9008 tcp:9030

然后我可以像这样启动服务器:

 adb shell am instrument -w -r -e debug false -e port 9030 -e class   com.dumper.screenDumperServer.Start#RunServer com.dumper.screenDumperServer.test/android.support.test.runner.AndroidJUnitRunner

像这样转储UI:

http://localhost:9008/dump

问题是它似乎在一段时间后停止工作,我可以看到以下内容:

  • http://localhost:9008/ping停止回复
  • 所有adb命令都停止工作(adb logcat,adb shell等)。他们没有给出任何错误但没有任何反应。

然后我可以关闭测试/服务器窗口,但它无法解决问题 - adb仍然无法响应。有时它会在一段时间后开始响应,但随后服务器再次无法工作(我可以开始测试,但我无法ping或转储)。

Adb kill / start也会让它再次响应adb命令,但在那里我可以再次ping服务器。

似乎唯一让它再次起作用的是:

  • 将USB插入和拔出(大部分时间都在工作)
  • 重启设备

重新安装APK似乎没什么用。

所以我开始认为我在这里做了一些非常错误的事情,因为这不应该是一件大事(或者说uiautomator真的很糟糕?)。 logcat或uiautomator事件日志也没有说什么。

我试图在服务器循环中添加一些睡眠,但这似乎也没有改变任何东西。

0 个答案:

没有答案