Loading core/java/android/app/Notification.java +12 −0 Original line number Diff line number Diff line Loading @@ -2857,6 +2857,18 @@ public class Notification implements Parcelable if (person != null) { visitor.accept(person.getIconUri()); } final RemoteInputHistoryItem[] history = extras.getParcelableArray( Notification.EXTRA_REMOTE_INPUT_HISTORY_ITEMS, RemoteInputHistoryItem.class); if (history != null) { for (int i = 0; i < history.length; i++) { RemoteInputHistoryItem item = history[i]; if (item.getUri() != null) { visitor.accept(item.getUri()); } } } } if (isStyle(MessagingStyle.class) && extras != null) { Loading services/tests/uiservicestests/src/com/android/server/notification/NotificationManagerServiceTest.java +18 −0 Original line number Diff line number Diff line Loading @@ -124,6 +124,7 @@ import android.app.NotificationManager; import android.app.PendingIntent; import android.app.Person; import android.app.RemoteInput; import android.app.RemoteInputHistoryItem; import android.app.StatsManager; import android.app.admin.DevicePolicyManagerInternal; import android.app.usage.UsageStatsManagerInternal; Loading Loading @@ -5206,6 +5207,12 @@ public class NotificationManagerServiceTest extends UiServiceTestCase { .setName("People List Person 2") .setIcon(personIcon3) .build(); final Uri historyUri1 = Uri.parse("content://com.example/history1"); final Uri historyUri2 = Uri.parse("content://com.example/history2"); final RemoteInputHistoryItem historyItem1 = new RemoteInputHistoryItem(null, historyUri1, "a"); final RemoteInputHistoryItem historyItem2 = new RemoteInputHistoryItem(null, historyUri2, "b"); Bundle extras = new Bundle(); extras.putParcelable(Notification.EXTRA_AUDIO_CONTENTS_URI, audioContents); Loading @@ -5213,6 +5220,8 @@ public class NotificationManagerServiceTest extends UiServiceTestCase { extras.putParcelable(Notification.EXTRA_MESSAGING_PERSON, person1); extras.putParcelableArrayList(Notification.EXTRA_PEOPLE_LIST, new ArrayList<>(Arrays.asList(person2, person3))); extras.putParcelableArray(Notification.EXTRA_REMOTE_INPUT_HISTORY_ITEMS, new RemoteInputHistoryItem[]{historyItem1, historyItem2}); Notification n = new Notification.Builder(mContext, "a") .setContentTitle("notification with uris") Loading @@ -5221,6 +5230,13 @@ public class NotificationManagerServiceTest extends UiServiceTestCase { .addExtras(extras) .build(); // Serialize and deserialize the notification to make sure nothing breaks in the process, // since that's what will usually happen before we get to call visitUris. Parcel parcel = Parcel.obtain(); n.writeToParcel(parcel, 0); parcel.setDataPosition(0); n = new Notification(parcel); Consumer<Uri> visitor = (Consumer<Uri>) spy(Consumer.class); n.visitUris(visitor); verify(visitor, times(1)).accept(eq(audioContents)); Loading @@ -5230,6 +5246,8 @@ public class NotificationManagerServiceTest extends UiServiceTestCase { verify(visitor, times(1)).accept(eq(personIcon1.getUri())); verify(visitor, times(1)).accept(eq(personIcon2.getUri())); verify(visitor, times(1)).accept(eq(personIcon3.getUri())); verify(visitor, times(1)).accept(eq(historyUri1)); verify(visitor, times(1)).accept(eq(historyUri2)); } @Test Loading Loading
core/java/android/app/Notification.java +12 −0 Original line number Diff line number Diff line Loading @@ -2857,6 +2857,18 @@ public class Notification implements Parcelable if (person != null) { visitor.accept(person.getIconUri()); } final RemoteInputHistoryItem[] history = extras.getParcelableArray( Notification.EXTRA_REMOTE_INPUT_HISTORY_ITEMS, RemoteInputHistoryItem.class); if (history != null) { for (int i = 0; i < history.length; i++) { RemoteInputHistoryItem item = history[i]; if (item.getUri() != null) { visitor.accept(item.getUri()); } } } } if (isStyle(MessagingStyle.class) && extras != null) { Loading
services/tests/uiservicestests/src/com/android/server/notification/NotificationManagerServiceTest.java +18 −0 Original line number Diff line number Diff line Loading @@ -124,6 +124,7 @@ import android.app.NotificationManager; import android.app.PendingIntent; import android.app.Person; import android.app.RemoteInput; import android.app.RemoteInputHistoryItem; import android.app.StatsManager; import android.app.admin.DevicePolicyManagerInternal; import android.app.usage.UsageStatsManagerInternal; Loading Loading @@ -5206,6 +5207,12 @@ public class NotificationManagerServiceTest extends UiServiceTestCase { .setName("People List Person 2") .setIcon(personIcon3) .build(); final Uri historyUri1 = Uri.parse("content://com.example/history1"); final Uri historyUri2 = Uri.parse("content://com.example/history2"); final RemoteInputHistoryItem historyItem1 = new RemoteInputHistoryItem(null, historyUri1, "a"); final RemoteInputHistoryItem historyItem2 = new RemoteInputHistoryItem(null, historyUri2, "b"); Bundle extras = new Bundle(); extras.putParcelable(Notification.EXTRA_AUDIO_CONTENTS_URI, audioContents); Loading @@ -5213,6 +5220,8 @@ public class NotificationManagerServiceTest extends UiServiceTestCase { extras.putParcelable(Notification.EXTRA_MESSAGING_PERSON, person1); extras.putParcelableArrayList(Notification.EXTRA_PEOPLE_LIST, new ArrayList<>(Arrays.asList(person2, person3))); extras.putParcelableArray(Notification.EXTRA_REMOTE_INPUT_HISTORY_ITEMS, new RemoteInputHistoryItem[]{historyItem1, historyItem2}); Notification n = new Notification.Builder(mContext, "a") .setContentTitle("notification with uris") Loading @@ -5221,6 +5230,13 @@ public class NotificationManagerServiceTest extends UiServiceTestCase { .addExtras(extras) .build(); // Serialize and deserialize the notification to make sure nothing breaks in the process, // since that's what will usually happen before we get to call visitUris. Parcel parcel = Parcel.obtain(); n.writeToParcel(parcel, 0); parcel.setDataPosition(0); n = new Notification(parcel); Consumer<Uri> visitor = (Consumer<Uri>) spy(Consumer.class); n.visitUris(visitor); verify(visitor, times(1)).accept(eq(audioContents)); Loading @@ -5230,6 +5246,8 @@ public class NotificationManagerServiceTest extends UiServiceTestCase { verify(visitor, times(1)).accept(eq(personIcon1.getUri())); verify(visitor, times(1)).accept(eq(personIcon2.getUri())); verify(visitor, times(1)).accept(eq(personIcon3.getUri())); verify(visitor, times(1)).accept(eq(historyUri1)); verify(visitor, times(1)).accept(eq(historyUri2)); } @Test Loading