1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-10-30 06:34:13 +00:00

Benchmarkpi: Updated to uiautomator2

This commit is contained in:
Marc Bonnici
2017-05-31 16:46:12 +01:00
parent b84550d981
commit ef3b80d296
14 changed files with 385 additions and 134 deletions

View File

@@ -0,0 +1,35 @@
apply plugin: 'com.android.application'
def packageName = "com.arm.wa.uiauto.benchmarkpi"
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "${packageName}"
minSdkVersion 18
targetSdkVersion 25
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
applicationVariants.all { variant ->
variant.outputs.each { output ->
output.outputFile = file("$project.buildDir/apk/${packageName}.apk")
}
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support.test:runner:0.5'
compile 'com.android.support.test:rules:0.5'
compile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
compile(name: 'uiauto', ext:'aar')
}
repositories {
flatDir {
dirs 'libs'
}
}

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.arm.wlauto.uiauto.benchmarkpi"
android:versionCode="1"
android:versionName="1.0">
<instrumentation
android:name="android.support.test.runner.AndroidJUnitRunner"
android:targetPackage="${applicationId}"/>
</manifest>

View File

@@ -0,0 +1,63 @@
/* Copyright 2013-2015 ARM Limited
*
* 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.arm.wa.uiauto.benchmarkpi;
import android.app.Activity;
import android.os.Bundle;
import android.support.test.runner.AndroidJUnit4;
import android.support.test.uiautomator.UiObject;
import android.support.test.uiautomator.UiSelector;
import android.util.Log;
import com.arm.wa.uiauto.BaseUiAutomation;
import org.junit.Test;
import org.junit.runner.RunWith;
@RunWith(AndroidJUnit4.class)
public class UiAutomation extends BaseUiAutomation {
public static String TAG = "benchmarkpi";
@Test
public void runWorkload() throws Exception {
startTest();
waitForResults();
}
@Test
public void extractResults() throws Exception {
UiSelector selector = new UiSelector();
UiObject resultsText = mDevice.findObject(selector.textContains("You calculated Pi in")
.className("android.widget.TextView"));
Log.v(TAG, resultsText.getText());
}
public void startTest() throws Exception{
UiSelector selector = new UiSelector();
UiObject benchButton = mDevice.findObject(selector.text("Benchmark my Android!")
.className("android.widget.Button"));
benchButton.click();
}
public void waitForResults() throws Exception{
UiSelector selector = new UiSelector();
UiObject submitButton = mDevice.findObject(selector.text("Submit")
.className("android.widget.Button"));
submitButton.waitForExists(10 * 1000);
}
}