mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-11-01 07:32:13 +00:00
Caffeinemark: Updated to Uiautomator2
This commit is contained in:
37
wlauto/workloads/caffeinemark/uiauto/app/build.gradle
Normal file
37
wlauto/workloads/caffeinemark/uiauto/app/build.gradle
Normal file
@@ -0,0 +1,37 @@
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
def packageName = "com.arm.wlauto.uiauto.caffeinemark"
|
||||
|
||||
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:appcompat-v7:25.3.1'
|
||||
compile 'com.android.support:support-annotations:25.3.1'
|
||||
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'
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.arm.wlauto.uiauto.caffeinemark"
|
||||
android:versionCode="1"
|
||||
android:versionName="1.0">
|
||||
|
||||
|
||||
<instrumentation
|
||||
android:name="android.support.test.runner.AndroidJUnitRunner"
|
||||
|
||||
android:targetPackage="${applicationId}"/>
|
||||
|
||||
</manifest>
|
||||
|
||||
@@ -0,0 +1,90 @@
|
||||
/* 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.wlauto.uiauto.caffeinemark;
|
||||
|
||||
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.UiObjectNotFoundException;
|
||||
import android.support.test.uiautomator.UiSelector;
|
||||
import android.util.Log;
|
||||
|
||||
import com.arm.wlauto.uiauto.BaseUiAutomation;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
// Import the uiautomator libraries
|
||||
|
||||
@RunWith(AndroidJUnit4.class)
|
||||
public class UiAutomation extends BaseUiAutomation {
|
||||
|
||||
public static String TAG = "caffeinemark";
|
||||
public String[] categories = {"Sieve", "Loop", "Logic", "String", "Float", "Method"};
|
||||
|
||||
@Test
|
||||
public void runUiAutomation() throws Exception {
|
||||
initialize_instrumentation();
|
||||
Bundle status = new Bundle();
|
||||
status.putString("product", mDevice.getProductName());
|
||||
|
||||
UiSelector selector = new UiSelector();
|
||||
UiObject runButton = mDevice.findObject(selector.text("Run benchmark")
|
||||
.className("android.widget.Button"));
|
||||
runButton.click();
|
||||
|
||||
try {
|
||||
waitText("CaffeineMark results");
|
||||
extractOverallScore();
|
||||
extractDetailedScores();
|
||||
|
||||
|
||||
} catch(UiObjectNotFoundException e) {
|
||||
takeScreenshot("caffeine-error");
|
||||
}
|
||||
|
||||
mInstrumentation.sendStatus(Activity.RESULT_OK, status);
|
||||
}
|
||||
|
||||
public void extractOverallScore() throws Exception {
|
||||
UiSelector selector = new UiSelector();
|
||||
UiObject linearLayoutOverallScore = mDevice.findObject(selector.className("android.widget.LinearLayout")
|
||||
.instance(1));
|
||||
UiObject overallScore = linearLayoutOverallScore.getChild(selector.className("android.widget.TextView")
|
||||
.instance(2));
|
||||
Log.v(TAG, "CAFFEINEMARK RESULT: OverallScore " + overallScore.getText());
|
||||
}
|
||||
|
||||
public void extractDetailedScores() throws Exception {
|
||||
UiSelector selector = new UiSelector();
|
||||
UiObject detailsButton = mDevice.findObject(selector.text("Details")
|
||||
.className("android.widget.Button"));
|
||||
detailsButton.click();
|
||||
sleep(2);
|
||||
|
||||
UiObject linearObject;
|
||||
UiObject detailedScore;
|
||||
for (int i = 1; i <= 6; i++) {
|
||||
linearObject = mDevice.findObject(selector.className("android.widget.LinearLayout")
|
||||
.instance(i));
|
||||
detailedScore = linearObject.getChild(selector.className("android.widget.TextView")
|
||||
.instance(1));
|
||||
Log.v(TAG,"CAFFEINEMARK RESULT: " + categories[i-1] + " " + detailedScore.getText());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user