mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-27 20:15:21 +00:00
23a2a5e5f3
// FREEBIE
43 lines
1.4 KiB
Java
43 lines
1.4 KiB
Java
package org.thoughtcrime.securesms.jobs;
|
|
|
|
import android.content.Context;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.thoughtcrime.securesms.BaseUnitTest;
|
|
import org.thoughtcrime.securesms.attachments.Attachment;
|
|
import org.thoughtcrime.securesms.attachments.AttachmentId;
|
|
import org.thoughtcrime.securesms.jobs.AttachmentDownloadJob.InvalidPartException;
|
|
|
|
import static org.mockito.Mockito.when;
|
|
import static org.powermock.api.mockito.PowerMockito.mock;
|
|
|
|
public class AttachmentDownloadJobTest extends BaseUnitTest {
|
|
private AttachmentDownloadJob job;
|
|
|
|
@Before
|
|
@Override
|
|
public void setUp() throws Exception {
|
|
super.setUp();
|
|
job = new AttachmentDownloadJob(mock(Context.class), 1L, new AttachmentId(1L, 1L));
|
|
}
|
|
|
|
@Test(expected = InvalidPartException.class)
|
|
public void testCreateAttachmentPointerInvalidId() throws Exception {
|
|
Attachment attachment = mock(Attachment.class);
|
|
when(attachment.getLocation()).thenReturn(null);
|
|
when(attachment.getKey()).thenReturn("a long and acceptable valid key like we all want");
|
|
|
|
job.createAttachmentPointer(masterSecret, attachment);
|
|
}
|
|
|
|
@Test(expected = InvalidPartException.class)
|
|
public void testCreateAttachmentPointerInvalidKey() throws Exception {
|
|
Attachment attachment = mock(Attachment.class);
|
|
when(attachment.getLocation()).thenReturn("something");
|
|
when(attachment.getKey()).thenReturn(null);
|
|
|
|
job.createAttachmentPointer(masterSecret, attachment);
|
|
}
|
|
}
|