Moved zenMode visual effects + automatic rule page
- Automatic zen rules have their own page like in N - Minor string changes to page and add rule dialog - Zen mode visual effects was moved into behavior settings Bug: 63077372 Test: $ make SettingsUnitTests -j40 $ adb install -r ${OUT}/data/app/SettingsUnitTests/SettingsUnitTests.apk $ adb shell am instrument -w com.android.settings.tests.unit/android.support.test.runner.AndroidJUnitRunner Change-Id: I9635f8f7969b76d036bc06ec44705815e540777a
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
package com.android.settings.notification;
|
||||
package com.android.settings;
|
||||
|
||||
import static android.support.test.espresso.Espresso.onView;
|
||||
import static android.support.test.espresso.action.ViewActions.click;
|
||||
@@ -36,12 +36,29 @@ public class ZenModeSettingsIntegrationTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testAutomaticRulesAppear() {
|
||||
public void testZenModeSettingsPreferences() {
|
||||
launchZenSettings();
|
||||
onView(withText("Automatic rules")).check(matches(isDisplayed()));
|
||||
onView(withText("Behavior")).check(matches(isDisplayed()));
|
||||
onView(withText("Turn on automatically")).check(matches(isDisplayed()));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testZenModeBehaviorPreferences() {
|
||||
launchZenBehaviorSettings();
|
||||
onView(withText("Alarms")).check(matches(isDisplayed()));
|
||||
onView(withText("Media and system feedback")).check(matches(isDisplayed()));
|
||||
onView(withText("Reminders")).check(matches(isDisplayed()));
|
||||
onView(withText("Events")).check(matches(isDisplayed()));
|
||||
onView(withText("Messages")).check(matches(isDisplayed()));
|
||||
onView(withText("Calls")).check(matches(isDisplayed()));
|
||||
onView(withText("Repeat callers")).check(matches(isDisplayed()));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testZenModeAutomationPreferences() {
|
||||
launchZenAutomationSettings();
|
||||
onView(withText("Weekend")).check(matches(isDisplayed()));
|
||||
onView(withText("Add more")).check(matches(isDisplayed())).perform(click());
|
||||
onView(withText("Choose rule type")).check(matches(isDisplayed()));
|
||||
onView(withText("Add rule")).check(matches(isDisplayed()));
|
||||
}
|
||||
|
||||
private void launchZenSettings() {
|
||||
@@ -50,4 +67,18 @@ public class ZenModeSettingsIntegrationTest {
|
||||
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
mContext.startActivity(settingsIntent);
|
||||
}
|
||||
}
|
||||
|
||||
private void launchZenAutomationSettings() {
|
||||
Intent settingsIntent = new Intent(Settings.ACTION_ZEN_MODE_AUTOMATION_SETTINGS)
|
||||
.setPackage(mContext.getPackageName())
|
||||
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
mContext.startActivity(settingsIntent);
|
||||
}
|
||||
|
||||
private void launchZenBehaviorSettings() {
|
||||
Intent settingsIntent = new Intent(Settings.ACTION_ZEN_MODE_PRIORITY_SETTINGS)
|
||||
.setPackage(mContext.getPackageName())
|
||||
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
mContext.startActivity(settingsIntent);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user