Loading services/core/java/com/android/server/notification/NotificationManagerService.java +2 −0 Original line number Diff line number Diff line Loading @@ -4081,6 +4081,8 @@ public class NotificationManagerService extends SystemService { buzz = playVibration(record, vibration, hasValidSound); } } else if ((record.getFlags() & Notification.FLAG_INSISTENT) != 0) { hasValidSound = false; } } } Loading services/tests/notification/src/com/android/server/notification/BuzzBeepBlinkTest.java +23 −0 Original line number Diff line number Diff line Loading @@ -191,6 +191,11 @@ public class BuzzBeepBlinkTest extends NotificationTestCase { true /* noisy */, false /* buzzy*/, false /* lights */); } private NotificationRecord getInsistentBeepyOnceNotification() { return getNotificationRecord(mId, true /* insistent */, true /* once */, true /* noisy */, false /* buzzy*/, false /* lights */); } private NotificationRecord getInsistentBeepyLeanbackNotification() { return getLeanbackNotificationRecord(mId, true /* insistent */, false /* once */, true /* noisy */, false /* buzzy*/, false /* lights */); Loading Loading @@ -498,6 +503,24 @@ public class BuzzBeepBlinkTest extends NotificationTestCase { verifyNeverStopAudio(); } /** * Tests the case where the user re-posts a {@link Notification} with looping sound where * {@link Notification.Builder#setOnlyAlertOnce(true)} has been called. This should silence * the sound associated with the notification. * @throws Exception */ @Test public void testNoisyOnceUpdateDoesCancelAudio() throws Exception { NotificationRecord r = getInsistentBeepyNotification(); NotificationRecord s = getInsistentBeepyOnceNotification(); s.isUpdate = true; mService.buzzBeepBlinkLocked(r); mService.buzzBeepBlinkLocked(s); verifyStopAudio(); } @Test public void testQuietUpdateDoesNotCancelAudioFromOther() throws Exception { NotificationRecord r = getBeepyNotification(); Loading Loading
services/core/java/com/android/server/notification/NotificationManagerService.java +2 −0 Original line number Diff line number Diff line Loading @@ -4081,6 +4081,8 @@ public class NotificationManagerService extends SystemService { buzz = playVibration(record, vibration, hasValidSound); } } else if ((record.getFlags() & Notification.FLAG_INSISTENT) != 0) { hasValidSound = false; } } } Loading
services/tests/notification/src/com/android/server/notification/BuzzBeepBlinkTest.java +23 −0 Original line number Diff line number Diff line Loading @@ -191,6 +191,11 @@ public class BuzzBeepBlinkTest extends NotificationTestCase { true /* noisy */, false /* buzzy*/, false /* lights */); } private NotificationRecord getInsistentBeepyOnceNotification() { return getNotificationRecord(mId, true /* insistent */, true /* once */, true /* noisy */, false /* buzzy*/, false /* lights */); } private NotificationRecord getInsistentBeepyLeanbackNotification() { return getLeanbackNotificationRecord(mId, true /* insistent */, false /* once */, true /* noisy */, false /* buzzy*/, false /* lights */); Loading Loading @@ -498,6 +503,24 @@ public class BuzzBeepBlinkTest extends NotificationTestCase { verifyNeverStopAudio(); } /** * Tests the case where the user re-posts a {@link Notification} with looping sound where * {@link Notification.Builder#setOnlyAlertOnce(true)} has been called. This should silence * the sound associated with the notification. * @throws Exception */ @Test public void testNoisyOnceUpdateDoesCancelAudio() throws Exception { NotificationRecord r = getInsistentBeepyNotification(); NotificationRecord s = getInsistentBeepyOnceNotification(); s.isUpdate = true; mService.buzzBeepBlinkLocked(r); mService.buzzBeepBlinkLocked(s); verifyStopAudio(); } @Test public void testQuietUpdateDoesNotCancelAudioFromOther() throws Exception { NotificationRecord r = getBeepyNotification(); Loading