|
6 | 6 | import org.thoughtcrime.securesms.attachments.AttachmentId;
|
7 | 7 | import org.thoughtcrime.securesms.attachments.DatabaseAttachment;
|
8 | 8 | import org.thoughtcrime.securesms.crypto.MasterSecret;
|
| 9 | +import org.thoughtcrime.securesms.util.BitmapDecodingException; |
9 | 10 |
|
10 | 11 | import java.io.FileNotFoundException;
|
11 | 12 | import java.io.InputStream;
|
@@ -33,37 +34,44 @@ public void setUp() {
|
33 | 34 | database = spy(DatabaseFactory.getAttachmentDatabase(getInstrumentation().getTargetContext()));
|
34 | 35 | }
|
35 | 36 |
|
36 |
| - public void testTaskNotRunWhenThumbnailExists() throws Exception { |
| 37 | + public void testThumbnailGenerationTaskNotRunWhenThumbnailExists() throws Exception { |
37 | 38 | final AttachmentId attachmentId = new AttachmentId(ROW_ID, UNIQUE_ID);
|
38 | 39 |
|
39 |
| - when(database.getAttachment(attachmentId)).thenReturn(getMockAttachment("x/x")); |
| 40 | + DatabaseAttachment mockAttachment = getMockAttachment("x/x"); |
| 41 | + when(database.getAttachment(attachmentId)).thenReturn(mockAttachment); |
40 | 42 |
|
41 |
| - doReturn(mock(InputStream.class)).when(database).getDataStream(any(MasterSecret.class), any(AttachmentId.class), eq("thumbnail")); |
| 43 | + InputStream mockInputStream = mock(InputStream.class); |
| 44 | + doReturn(mockInputStream).when(database).getDataStream(any(MasterSecret.class), any(AttachmentId.class), eq("thumbnail")); |
42 | 45 | database.getThumbnailStream(mock(MasterSecret.class), attachmentId);
|
43 | 46 |
|
44 |
| - // XXX - I don't think this is testing anything? The thumbnail would be updated asynchronously. |
| 47 | + // Works as the Future#get() call in AttachmentDatabase#getThumbnailStream() makes updating synchronous |
45 | 48 | verify(database, never()).updateAttachmentThumbnail(any(MasterSecret.class), any(AttachmentId.class), any(InputStream.class), anyFloat());
|
46 | 49 | }
|
47 | 50 |
|
48 |
| - public void testTaskRunWhenThumbnailMissing() throws Exception { |
| 51 | + public void testThumbnailGenerationTaskRunWhenThumbnailMissing() throws Exception { |
49 | 52 | final AttachmentId attachmentId = new AttachmentId(ROW_ID, UNIQUE_ID);
|
50 | 53 |
|
51 |
| - when(database.getAttachment(attachmentId)).thenReturn(getMockAttachment("image/png")); |
| 54 | + DatabaseAttachment mockAttachment = getMockAttachment("image/png"); |
| 55 | + when(database.getAttachment(attachmentId)).thenReturn(mockAttachment); |
| 56 | + |
52 | 57 | doReturn(null).when(database).getDataStream(any(MasterSecret.class), any(AttachmentId.class), eq("thumbnail"));
|
53 | 58 | doNothing().when(database).updateAttachmentThumbnail(any(MasterSecret.class), any(AttachmentId.class), any(InputStream.class), anyFloat());
|
54 | 59 |
|
55 | 60 | try {
|
56 | 61 | database.new ThumbnailFetchCallable(mock(MasterSecret.class), attachmentId).call();
|
57 |
| - throw new AssertionError("didn't try to generate thumbnail"); |
58 |
| - } catch (FileNotFoundException fnfe) { |
59 |
| - // success |
| 62 | + throw new AssertionError("Didn't try to generate thumbnail"); |
| 63 | + } catch (BitmapDecodingException bde) { |
| 64 | + if (!(bde.getCause() instanceof FileNotFoundException)) { |
| 65 | + throw new AssertionError("Thumbnail generation failed for another reason than a FileNotFoundException: " + bde.getMessage()); |
| 66 | + } // else success |
60 | 67 | }
|
61 | 68 | }
|
62 | 69 |
|
63 | 70 | private DatabaseAttachment getMockAttachment(String contentType) {
|
64 | 71 | DatabaseAttachment attachment = mock(DatabaseAttachment.class);
|
65 | 72 | when(attachment.getContentType()).thenReturn(contentType);
|
66 | 73 | when(attachment.getDataUri()).thenReturn(Uri.EMPTY);
|
| 74 | + when(attachment.hasData()).thenReturn(true); |
67 | 75 |
|
68 | 76 | return attachment;
|
69 | 77 | }
|
|
0 commit comments