Merge changes from topic "presubmit-am-57d52d57ff4341f4a6a8262caebf7e00" into tm-qpr-dev-plus-aosp am: d7f491f784

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/22599030

Change-Id: Icbad8afc6ac0d6934d00dc85078a54a663a6790c
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
William Xiao
2023-04-13 22:33:26 +00:00
committed by Automerger Merge Worker
2 changed files with 21 additions and 0 deletions

View File

@@ -184,6 +184,10 @@ public class DreamOverlayStateController implements
* Returns collection of present {@link Complication}.
*/
public Collection<Complication> getComplications(boolean filterByAvailability) {
if (isLowLightActive()) {
// Don't show complications on low light.
return Collections.emptyList();
}
return Collections.unmodifiableCollection(filterByAvailability
? mComplications
.stream()

View File

@@ -234,6 +234,23 @@ public class DreamOverlayStateControllerTest extends SysuiTestCase {
.isTrue();
}
@Test
public void testComplicationsNotShownForLowLight() {
final Complication complication = Mockito.mock(Complication.class);
final DreamOverlayStateController stateController = getDreamOverlayStateController(true);
// Add a complication and verify it's returned in getComplications.
stateController.addComplication(complication);
mExecutor.runAllReady();
assertThat(stateController.getComplications().contains(complication))
.isTrue();
stateController.setLowLightActive(true);
mExecutor.runAllReady();
assertThat(stateController.getComplications()).isEmpty();
}
@Test
public void testNotifyLowLightChanged() {
final DreamOverlayStateController stateController = getDreamOverlayStateController(true);