Skip to content

Commit 770026d

Browse files
nikwenmoxie0
authored andcommitted
Fix the faulty tests in AttachmentDatabaseTest.java
Fixes signalapp#5948 Closes signalapp#5952
1 parent 7b92847 commit 770026d

File tree

4 files changed

+23
-12
lines changed

4 files changed

+23
-12
lines changed

build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,8 @@ android {
240240
'proguard-shortcutbadger.pro',
241241
'proguard-retrofit.pro',
242242
'proguard.cfg'
243-
testProguardFiles 'proguard-automation.pro'
243+
testProguardFiles 'proguard-automation.pro',
244+
'proguard.cfg'
244245
}
245246
release {
246247
minifyEnabled true

proguard-automation.pro

+2
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@
99
-dontwarn org.hamcrest.**
1010
-dontwarn org.mockito.**
1111
-dontwarn com.squareup.**
12+
13+
-dontobfuscate

src/org/thoughtcrime/securesms/database/AttachmentDatabase.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ public void setTransferState(long messageId, @NonNull AttachmentId attachmentId,
357357
}
358358

359359
@VisibleForTesting
360-
@Nullable InputStream getDataStream(MasterSecret masterSecret, AttachmentId attachmentId, String dataType)
360+
protected @Nullable InputStream getDataStream(MasterSecret masterSecret, AttachmentId attachmentId, String dataType)
361361
{
362362
File dataFile = getAttachmentDataFile(attachmentId, dataType);
363363

@@ -491,7 +491,7 @@ private AttachmentId insertAttachment(MasterSecretUnion masterSecret, long mmsId
491491

492492

493493
@VisibleForTesting
494-
void updateAttachmentThumbnail(MasterSecret masterSecret, AttachmentId attachmentId, InputStream in, float aspectRatio)
494+
protected void updateAttachmentThumbnail(MasterSecret masterSecret, AttachmentId attachmentId, InputStream in, float aspectRatio)
495495
throws MmsException
496496
{
497497
Log.w(TAG, "updating part thumbnail for #" + attachmentId);

test/androidTest/java/org/thoughtcrime/securesms/database/AttachmentDatabaseTest.java

+17-9
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import org.thoughtcrime.securesms.attachments.AttachmentId;
77
import org.thoughtcrime.securesms.attachments.DatabaseAttachment;
88
import org.thoughtcrime.securesms.crypto.MasterSecret;
9+
import org.thoughtcrime.securesms.util.BitmapDecodingException;
910

1011
import java.io.FileNotFoundException;
1112
import java.io.InputStream;
@@ -33,37 +34,44 @@ public void setUp() {
3334
database = spy(DatabaseFactory.getAttachmentDatabase(getInstrumentation().getTargetContext()));
3435
}
3536

36-
public void testTaskNotRunWhenThumbnailExists() throws Exception {
37+
public void testThumbnailGenerationTaskNotRunWhenThumbnailExists() throws Exception {
3738
final AttachmentId attachmentId = new AttachmentId(ROW_ID, UNIQUE_ID);
3839

39-
when(database.getAttachment(attachmentId)).thenReturn(getMockAttachment("x/x"));
40+
DatabaseAttachment mockAttachment = getMockAttachment("x/x");
41+
when(database.getAttachment(attachmentId)).thenReturn(mockAttachment);
4042

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"));
4245
database.getThumbnailStream(mock(MasterSecret.class), attachmentId);
4346

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
4548
verify(database, never()).updateAttachmentThumbnail(any(MasterSecret.class), any(AttachmentId.class), any(InputStream.class), anyFloat());
4649
}
4750

48-
public void testTaskRunWhenThumbnailMissing() throws Exception {
51+
public void testThumbnailGenerationTaskRunWhenThumbnailMissing() throws Exception {
4952
final AttachmentId attachmentId = new AttachmentId(ROW_ID, UNIQUE_ID);
5053

51-
when(database.getAttachment(attachmentId)).thenReturn(getMockAttachment("image/png"));
54+
DatabaseAttachment mockAttachment = getMockAttachment("image/png");
55+
when(database.getAttachment(attachmentId)).thenReturn(mockAttachment);
56+
5257
doReturn(null).when(database).getDataStream(any(MasterSecret.class), any(AttachmentId.class), eq("thumbnail"));
5358
doNothing().when(database).updateAttachmentThumbnail(any(MasterSecret.class), any(AttachmentId.class), any(InputStream.class), anyFloat());
5459

5560
try {
5661
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
6067
}
6168
}
6269

6370
private DatabaseAttachment getMockAttachment(String contentType) {
6471
DatabaseAttachment attachment = mock(DatabaseAttachment.class);
6572
when(attachment.getContentType()).thenReturn(contentType);
6673
when(attachment.getDataUri()).thenReturn(Uri.EMPTY);
74+
when(attachment.hasData()).thenReturn(true);
6775

6876
return attachment;
6977
}

0 commit comments

Comments
 (0)