mirror of
https://github.com/oxen-io/session-android.git
synced 2025-02-21 09:28:27 +00:00
Fix the faulty tests in AttachmentDatabaseTest.java
Fixes #5948 Closes #5952
This commit is contained in:
parent
7b928476a2
commit
770026d4ee
@ -240,7 +240,8 @@ android {
|
|||||||
'proguard-shortcutbadger.pro',
|
'proguard-shortcutbadger.pro',
|
||||||
'proguard-retrofit.pro',
|
'proguard-retrofit.pro',
|
||||||
'proguard.cfg'
|
'proguard.cfg'
|
||||||
testProguardFiles 'proguard-automation.pro'
|
testProguardFiles 'proguard-automation.pro',
|
||||||
|
'proguard.cfg'
|
||||||
}
|
}
|
||||||
release {
|
release {
|
||||||
minifyEnabled true
|
minifyEnabled true
|
||||||
|
@ -9,3 +9,5 @@
|
|||||||
-dontwarn org.hamcrest.**
|
-dontwarn org.hamcrest.**
|
||||||
-dontwarn org.mockito.**
|
-dontwarn org.mockito.**
|
||||||
-dontwarn com.squareup.**
|
-dontwarn com.squareup.**
|
||||||
|
|
||||||
|
-dontobfuscate
|
@ -357,7 +357,7 @@ public class AttachmentDatabase extends Database {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@VisibleForTesting
|
@VisibleForTesting
|
||||||
@Nullable InputStream getDataStream(MasterSecret masterSecret, AttachmentId attachmentId, String dataType)
|
protected @Nullable InputStream getDataStream(MasterSecret masterSecret, AttachmentId attachmentId, String dataType)
|
||||||
{
|
{
|
||||||
File dataFile = getAttachmentDataFile(attachmentId, dataType);
|
File dataFile = getAttachmentDataFile(attachmentId, dataType);
|
||||||
|
|
||||||
@ -491,7 +491,7 @@ public class AttachmentDatabase extends Database {
|
|||||||
|
|
||||||
|
|
||||||
@VisibleForTesting
|
@VisibleForTesting
|
||||||
void updateAttachmentThumbnail(MasterSecret masterSecret, AttachmentId attachmentId, InputStream in, float aspectRatio)
|
protected void updateAttachmentThumbnail(MasterSecret masterSecret, AttachmentId attachmentId, InputStream in, float aspectRatio)
|
||||||
throws MmsException
|
throws MmsException
|
||||||
{
|
{
|
||||||
Log.w(TAG, "updating part thumbnail for #" + attachmentId);
|
Log.w(TAG, "updating part thumbnail for #" + attachmentId);
|
||||||
|
@ -6,6 +6,7 @@ import org.thoughtcrime.securesms.TextSecureTestCase;
|
|||||||
import org.thoughtcrime.securesms.attachments.AttachmentId;
|
import org.thoughtcrime.securesms.attachments.AttachmentId;
|
||||||
import org.thoughtcrime.securesms.attachments.DatabaseAttachment;
|
import org.thoughtcrime.securesms.attachments.DatabaseAttachment;
|
||||||
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
||||||
|
import org.thoughtcrime.securesms.util.BitmapDecodingException;
|
||||||
|
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
@ -33,30 +34,36 @@ public class AttachmentDatabaseTest extends TextSecureTestCase {
|
|||||||
database = spy(DatabaseFactory.getAttachmentDatabase(getInstrumentation().getTargetContext()));
|
database = spy(DatabaseFactory.getAttachmentDatabase(getInstrumentation().getTargetContext()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testTaskNotRunWhenThumbnailExists() throws Exception {
|
public void testThumbnailGenerationTaskNotRunWhenThumbnailExists() throws Exception {
|
||||||
final AttachmentId attachmentId = new AttachmentId(ROW_ID, UNIQUE_ID);
|
final AttachmentId attachmentId = new AttachmentId(ROW_ID, UNIQUE_ID);
|
||||||
|
|
||||||
when(database.getAttachment(attachmentId)).thenReturn(getMockAttachment("x/x"));
|
DatabaseAttachment mockAttachment = getMockAttachment("x/x");
|
||||||
|
when(database.getAttachment(attachmentId)).thenReturn(mockAttachment);
|
||||||
|
|
||||||
doReturn(mock(InputStream.class)).when(database).getDataStream(any(MasterSecret.class), any(AttachmentId.class), eq("thumbnail"));
|
InputStream mockInputStream = mock(InputStream.class);
|
||||||
|
doReturn(mockInputStream).when(database).getDataStream(any(MasterSecret.class), any(AttachmentId.class), eq("thumbnail"));
|
||||||
database.getThumbnailStream(mock(MasterSecret.class), attachmentId);
|
database.getThumbnailStream(mock(MasterSecret.class), attachmentId);
|
||||||
|
|
||||||
// XXX - I don't think this is testing anything? The thumbnail would be updated asynchronously.
|
// Works as the Future#get() call in AttachmentDatabase#getThumbnailStream() makes updating synchronous
|
||||||
verify(database, never()).updateAttachmentThumbnail(any(MasterSecret.class), any(AttachmentId.class), any(InputStream.class), anyFloat());
|
verify(database, never()).updateAttachmentThumbnail(any(MasterSecret.class), any(AttachmentId.class), any(InputStream.class), anyFloat());
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testTaskRunWhenThumbnailMissing() throws Exception {
|
public void testThumbnailGenerationTaskRunWhenThumbnailMissing() throws Exception {
|
||||||
final AttachmentId attachmentId = new AttachmentId(ROW_ID, UNIQUE_ID);
|
final AttachmentId attachmentId = new AttachmentId(ROW_ID, UNIQUE_ID);
|
||||||
|
|
||||||
when(database.getAttachment(attachmentId)).thenReturn(getMockAttachment("image/png"));
|
DatabaseAttachment mockAttachment = getMockAttachment("image/png");
|
||||||
|
when(database.getAttachment(attachmentId)).thenReturn(mockAttachment);
|
||||||
|
|
||||||
doReturn(null).when(database).getDataStream(any(MasterSecret.class), any(AttachmentId.class), eq("thumbnail"));
|
doReturn(null).when(database).getDataStream(any(MasterSecret.class), any(AttachmentId.class), eq("thumbnail"));
|
||||||
doNothing().when(database).updateAttachmentThumbnail(any(MasterSecret.class), any(AttachmentId.class), any(InputStream.class), anyFloat());
|
doNothing().when(database).updateAttachmentThumbnail(any(MasterSecret.class), any(AttachmentId.class), any(InputStream.class), anyFloat());
|
||||||
|
|
||||||
try {
|
try {
|
||||||
database.new ThumbnailFetchCallable(mock(MasterSecret.class), attachmentId).call();
|
database.new ThumbnailFetchCallable(mock(MasterSecret.class), attachmentId).call();
|
||||||
throw new AssertionError("didn't try to generate thumbnail");
|
throw new AssertionError("Didn't try to generate thumbnail");
|
||||||
} catch (FileNotFoundException fnfe) {
|
} catch (BitmapDecodingException bde) {
|
||||||
// success
|
if (!(bde.getCause() instanceof FileNotFoundException)) {
|
||||||
|
throw new AssertionError("Thumbnail generation failed for another reason than a FileNotFoundException: " + bde.getMessage());
|
||||||
|
} // else success
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -64,6 +71,7 @@ public class AttachmentDatabaseTest extends TextSecureTestCase {
|
|||||||
DatabaseAttachment attachment = mock(DatabaseAttachment.class);
|
DatabaseAttachment attachment = mock(DatabaseAttachment.class);
|
||||||
when(attachment.getContentType()).thenReturn(contentType);
|
when(attachment.getContentType()).thenReturn(contentType);
|
||||||
when(attachment.getDataUri()).thenReturn(Uri.EMPTY);
|
when(attachment.getDataUri()).thenReturn(Uri.EMPTY);
|
||||||
|
when(attachment.hasData()).thenReturn(true);
|
||||||
|
|
||||||
return attachment;
|
return attachment;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user