Add TEST_MAPPING to schedule auto test

Test: atest :postsubmit
Change-Id: Ied8e241ef223ea5e87ca6ee0f04f4128c51ddb87
Merged-In: I0847d1dea352d0e3b87b1bb95d5c2600a80a7438
This commit is contained in:
Raff Tsai
2020-02-05 18:32:33 +08:00
parent e9b3f3303e
commit 55422c7517
4 changed files with 114 additions and 0 deletions

15
TEST_MAPPING Normal file
View File

@@ -0,0 +1,15 @@
{
"postsubmit": [
{
"name": "SettingsUnitTests",
"options": [
{
"exclude-annotation": "androidx.test.filters.FlakyTest"
}
]
},
{
"name": "SettingsPerfTests"
}
]
}

View File

@@ -0,0 +1,22 @@
android_test {
name: "SettingsPerfTests",
certificate: "platform",
libs: [
"android.test.runner",
],
static_libs: [
"androidx.test.rules",
"ub-uiautomator",
],
// Include all test java files.
srcs: ["src/**/*.java"],
platform_apis: true,
test_suites: ["device-tests"],
instrumentation_for: "Settings",
}

View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2020 The Android Open Source Project
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.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.settings.tests.perf">
<application>
<uses-library android:name="android.test.runner" />
</application>
<instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
android:targetPackage="com.android.settings"
android:label="Settings Performance Test Cases">
</instrumentation>
</manifest>

View File

@@ -0,0 +1,48 @@
/*
* Copyright (C) 2020 The Android Open Source Project
*
* 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.android.settings.tests.perf;
import android.app.Instrumentation;
import android.os.Bundle;
import androidx.test.InstrumentationRegistry;
import androidx.test.runner.AndroidJUnit4;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
@RunWith(AndroidJUnit4.class)
public class LaunchSettingsTest {
@Before
public void setUp() throws Exception {
}
@After
public void tearDown() throws Exception {
}
@Test
public void testReportMetrics() throws Exception {
Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation();
final Bundle result = new Bundle();
result.putString("LaunchSettingsTest_metric_key1", "1000");
result.putString("LaunchSettingsTest_metric_key2", "5000");
instrumentation.sendStatus(0, result);
}
}