use of com.microsoft.appcenter.persistence.Persistence in project mobile-center-sdk-android by Microsoft.
the class DefaultChannelTest method filter.
@Test
public void filter() throws Persistence.PersistenceException {
/* Given a mock channel. */
Persistence persistence = mock(Persistence.class);
@SuppressWarnings("ConstantConditions") DefaultChannel channel = new DefaultChannel(mock(Context.class), null, persistence, mock(IngestionHttp.class), mCoreHandler);
channel.addGroup(TEST_GROUP, 50, BATCH_TIME_INTERVAL, MAX_PARALLEL_BATCHES, null);
/* Given we add mock listeners. */
Channel.Listener listener1 = mock(Channel.Listener.class);
channel.addListener(listener1);
Channel.Listener listener2 = mock(Channel.Listener.class);
channel.addListener(listener2);
/* Given 1 log. */
{
/* Given the second listener filtering out logs. */
Log log = mock(Log.class);
when(listener2.shouldFilter(log)).thenReturn(true);
/* When we enqueue that log. */
channel.enqueue(log, TEST_GROUP);
/* Then except the following. behaviors. */
verify(listener1).onEnqueuingLog(log, TEST_GROUP);
verify(listener1).shouldFilter(log);
verify(listener2).onEnqueuingLog(log, TEST_GROUP);
verify(listener2).shouldFilter(log);
verify(persistence, never()).putLog(TEST_GROUP, log);
}
/* Given 1 log. */
{
/* Given the first listener filtering out logs. */
Log log = mock(Log.class);
when(listener1.shouldFilter(log)).thenReturn(true);
when(listener2.shouldFilter(log)).thenReturn(false);
/* When we enqueue that log. */
channel.enqueue(log, TEST_GROUP);
/* Then except the following. behaviors. */
verify(listener1).onEnqueuingLog(log, TEST_GROUP);
verify(listener1).shouldFilter(log);
verify(listener2).onEnqueuingLog(log, TEST_GROUP);
/* Second listener skipped since first listener filtered out. */
verify(listener2, never()).shouldFilter(log);
verify(persistence, never()).putLog(TEST_GROUP, log);
}
/* Given 1 log. */
{
/* Given no listener filtering out logs. */
Log log = mock(Log.class);
when(listener1.shouldFilter(log)).thenReturn(false);
when(listener2.shouldFilter(log)).thenReturn(false);
/* When we enqueue that log. */
channel.enqueue(log, TEST_GROUP);
/* Then except the following. behaviors. */
verify(listener1).onEnqueuingLog(log, TEST_GROUP);
verify(listener1).shouldFilter(log);
verify(listener2).onEnqueuingLog(log, TEST_GROUP);
verify(listener2).shouldFilter(log);
verify(persistence).putLog(TEST_GROUP, log);
}
}
use of com.microsoft.appcenter.persistence.Persistence in project AppCenter-SDK-Android by Microsoft.
the class DefaultChannelTest method initialLogsMoreThan1Batch.
@Test
@SuppressWarnings("unchecked")
public void initialLogsMoreThan1Batch() throws IOException, InterruptedException {
AtomicReference<Runnable> runnable = catchPostRunnable();
Ingestion ingestion = mock(Ingestion.class);
doThrow(new IOException()).when(ingestion).close();
Persistence persistence = mock(Persistence.class);
when(persistence.countLogs(anyString())).thenReturn(103);
when(persistence.getLogs(anyString(), anyInt(), anyList())).thenAnswer(getGetLogsAnswer(50)).thenAnswer(getGetLogsAnswer(50)).thenAnswer(getGetLogsAnswer(3));
DefaultChannel channel = new DefaultChannel(mock(Context.class), UUIDUtils.randomUUID().toString(), persistence, ingestion, mCoreHandler);
channel.addGroup(TEST_GROUP, 50, BATCH_TIME_INTERVAL, MAX_PARALLEL_BATCHES, null);
verify(ingestion, times(2)).sendAsync(anyString(), any(UUID.class), any(LogContainer.class), any(ServiceCallback.class));
assertEquals(3, channel.getCounter(TEST_GROUP));
assertNotNull(runnable.get());
runnable.get().run();
verify(ingestion, times(3)).sendAsync(anyString(), any(UUID.class), any(LogContainer.class), any(ServiceCallback.class));
verify(mHandler).postDelayed(any(Runnable.class), eq(BATCH_TIME_INTERVAL));
verify(mHandler, never()).removeCallbacks(any(Runnable.class));
}
use of com.microsoft.appcenter.persistence.Persistence in project AppCenter-SDK-Android by Microsoft.
the class DefaultChannelTest method initialLogsThenDisable.
@Test
@SuppressWarnings("unchecked")
public void initialLogsThenDisable() throws IOException, InterruptedException {
AtomicReference<Runnable> runnable = catchPostRunnable();
Ingestion ingestion = mock(Ingestion.class);
doThrow(new IOException()).when(ingestion).close();
Persistence persistence = mock(Persistence.class);
when(persistence.countLogs(anyString())).thenReturn(3);
when(persistence.getLogs(anyString(), anyInt(), anyList())).thenAnswer(getGetLogsAnswer(3));
DefaultChannel channel = new DefaultChannel(mock(Context.class), UUIDUtils.randomUUID().toString(), persistence, ingestion, mCoreHandler);
channel.addGroup(TEST_GROUP, 50, BATCH_TIME_INTERVAL, MAX_PARALLEL_BATCHES, null);
assertEquals(3, channel.getCounter(TEST_GROUP));
verify(mHandler).postDelayed(any(Runnable.class), eq(BATCH_TIME_INTERVAL));
channel.setEnabled(false);
verify(mHandler).removeCallbacks(any(Runnable.class));
verify(ingestion).close();
verify(persistence).deleteLogs(TEST_GROUP);
assertNotNull(runnable.get());
runnable.get().run();
verify(ingestion, never()).sendAsync(anyString(), any(UUID.class), any(LogContainer.class), any(ServiceCallback.class));
}
use of com.microsoft.appcenter.persistence.Persistence in project AppCenter-SDK-Android by Microsoft.
the class DefaultChannelTest method lessLogsThanExpected.
@Test
public void lessLogsThanExpected() {
Persistence mockPersistence = mock(Persistence.class);
IngestionHttp mockIngestion = mock(IngestionHttp.class);
Channel.GroupListener mockListener = mock(Channel.GroupListener.class);
when(mockPersistence.getLogs(any(String.class), anyInt(), Matchers.<ArrayList<Log>>any())).then(getGetLogsAnswer(40));
when(mockIngestion.sendAsync(anyString(), any(UUID.class), any(LogContainer.class), any(ServiceCallback.class))).then(getSendAsyncAnswer());
DefaultChannel channel = new DefaultChannel(mock(Context.class), UUIDUtils.randomUUID().toString(), mockPersistence, mockIngestion, mCoreHandler);
channel.addGroup(TEST_GROUP, 50, BATCH_TIME_INTERVAL, MAX_PARALLEL_BATCHES, mockListener);
/* Enqueuing 49 events. */
for (int i = 1; i <= 49; i++) {
channel.enqueue(mock(Log.class), TEST_GROUP);
assertEquals(i, channel.getCounter(TEST_GROUP));
}
verify(mHandler).postDelayed(any(Runnable.class), eq(BATCH_TIME_INTERVAL));
/* Enqueue another event. */
channel.enqueue(mock(Log.class), TEST_GROUP);
verify(mHandler).removeCallbacks(any(Runnable.class));
/* Database returned less logs than we expected (40 vs 50), yet counter must be reset. */
assertEquals(0, channel.getCounter(TEST_GROUP));
}
use of com.microsoft.appcenter.persistence.Persistence in project AppCenter-SDK-Android by Microsoft.
the class DefaultChannelTest method enqueuePersistenceFailure.
@Test
public void enqueuePersistenceFailure() throws Persistence.PersistenceException {
Persistence mockPersistence = mock(Persistence.class);
/* Simulate Persistence failing. */
doThrow(new Persistence.PersistenceException("mock", new IOException("mock"))).when(mockPersistence).putLog(anyString(), any(Log.class));
IngestionHttp mockIngestion = mock(IngestionHttp.class);
DefaultChannel channel = new DefaultChannel(mock(Context.class), UUIDUtils.randomUUID().toString(), mockPersistence, mockIngestion, mCoreHandler);
channel.addGroup(TEST_GROUP, 50, BATCH_TIME_INTERVAL, MAX_PARALLEL_BATCHES, null);
/* Verify no request is sent if Persistence fails. */
for (int i = 0; i < 50; i++) {
channel.enqueue(mock(Log.class), TEST_GROUP);
}
verify(mockPersistence, times(50)).putLog(eq(TEST_GROUP), any(Log.class));
verify(mockIngestion, never()).sendAsync(anyString(), any(UUID.class), any(LogContainer.class), any(ServiceCallback.class));
assertEquals(0, channel.getCounter(TEST_GROUP));
verify(mHandler, never()).postDelayed(any(Runnable.class), eq(BATCH_TIME_INTERVAL));
verify(mHandler, never()).removeCallbacks(any(Runnable.class));
}
Aggregations