aboutsummaryrefslogtreecommitdiff
path: root/examples/ex4_uiautomator/src/main/java/com/google/android/mobly/snippet/example4/UiAutomatorSnippet.java
blob: d1ae1947b1f439cf70690209915dcbb0519e2351 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
 * Copyright (C) 2017 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

package com.google.android.mobly.snippet.example4;

import static org.junit.Assert.assertEquals;

import android.content.Context;
import android.content.Intent;
import android.support.test.InstrumentationRegistry;
import android.support.test.uiautomator.By;
import android.support.test.uiautomator.UiDevice;
import android.support.test.uiautomator.UiObject2;
import android.support.test.uiautomator.Until;
import com.google.android.mobly.snippet.Snippet;
import com.google.android.mobly.snippet.rpc.Rpc;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.nio.charset.Charset;

/**
 * Demonstrates how to drive an app using UIAutomator without access to the app's source code or
 * classpath.
 *
 * <p>Drives the Espresso example app from ex2 without instrumenting it.
 */
public class UiAutomatorSnippet implements Snippet {
    private static final class UiAutomatorSnippetException extends Exception {
        private static final long serialVersionUID = 1;

        public UiAutomatorSnippetException(String message) {
            super(message);
        }
    }

    private static final String MAIN_PACKAGE = "com.google.android.mobly.snippet.example2";
    private static final int LAUNCH_TIMEOUT = 5000;

    private final Context mContext;
    private final UiDevice mDevice;

    public UiAutomatorSnippet() {
        mContext = InstrumentationRegistry.getContext();
        mDevice = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation());
    }

    @Rpc(description="Opens the main activity of the app")
    public void startMainActivity() throws UiAutomatorSnippetException {
        // Send the launch intent
        Intent intent = mContext.getPackageManager().getLaunchIntentForPackage(MAIN_PACKAGE);
        if (intent == null) {
            throw new UiAutomatorSnippetException(
                "Unable to create launch intent for " + MAIN_PACKAGE + "; is the app installed?");
        }
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
        mContext.startActivity(intent);

        // Wait for the app to appear
        mDevice.wait(Until.hasObject(By.pkg(MAIN_PACKAGE).depth(0)), LAUNCH_TIMEOUT);
    }

    @Rpc(description="Pushes the main app button, and checks the label if this is the first time.")
    public void pushMainButton(boolean checkFirstRun) {
        if (checkFirstRun) {
            assertEquals(
                "Hello World!",
                // Example of finding object by id.
                mDevice.findObject(By.res(MAIN_PACKAGE, "main_text_view")).getText());
        }
        // Example of finding a button by text. Finding by ID is also possible, as above.
        UiObject2 button = mDevice.findObject(By.text("PUSH THE BUTTON!"));
        button.click();
        if (checkFirstRun) {
            assertEquals(
                "Button pressed 1 times",
                mDevice.findObject(By.res(MAIN_PACKAGE, "main_text_view")).getText());
        }
    }

    @Rpc(description="Perform a UIAutomator dump")
    public String uiautomatorDump() throws IOException {
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        try {
            mDevice.dumpWindowHierarchy(baos);
            byte[] dumpBytes = baos.toByteArray();
            String dumpStr = new String(dumpBytes, Charset.forName("UTF-8"));
            return dumpStr;
        } finally {
            baos.close();
        }
    }

    @Override
    public void shutdown() throws IOException {
        mDevice.executeShellCommand("am force-stop " + MAIN_PACKAGE);
    }
}