Search in sources :

Example 1 with SessionContext

use of com.microsoft.appcenter.SessionContext in project mobile-center-sdk-android by Microsoft.

the class CrashesTest method testNativeCrashLog.

private ManagedErrorLog testNativeCrashLog(long appStartTime, long crashTime, boolean correlateSession) throws Exception {
    /* Setup mock for a crash in disk. */
    File minidumpFile = mock(File.class);
    when(minidumpFile.getName()).thenReturn("mockFile");
    when(minidumpFile.lastModified()).thenReturn(crashTime);
    mockStatic(SessionContext.class);
    SessionContext sessionContext = mock(SessionContext.class);
    when(SessionContext.getInstance()).thenReturn(sessionContext);
    if (correlateSession) {
        SessionContext.SessionInfo sessionInfo = mock(SessionContext.SessionInfo.class);
        when(sessionContext.getSessionAt(crashTime)).thenReturn(sessionInfo);
        when(sessionInfo.getAppLaunchTimestamp()).thenReturn(appStartTime);
    }
    mockStatic(DeviceInfoHelper.class);
    when(DeviceInfoHelper.getDeviceInfo(any(Context.class))).thenReturn(mock(Device.class));
    ErrorReport report = new ErrorReport();
    mockStatic(ErrorLogHelper.class);
    when(ErrorLogHelper.getLastErrorLogFile()).thenReturn(mock(File.class));
    when(ErrorLogHelper.getStoredErrorLogFiles()).thenReturn(new File[] { mock(File.class) });
    when(ErrorLogHelper.getNewMinidumpFiles()).thenReturn(new File[] { minidumpFile });
    File pendingDir = mock(File.class);
    Whitebox.setInternalState(pendingDir, "path", "");
    when(ErrorLogHelper.getPendingMinidumpDirectory()).thenReturn(pendingDir);
    when(ErrorLogHelper.getStoredThrowableFile(any(UUID.class))).thenReturn(mock(File.class));
    when(ErrorLogHelper.getErrorReportFromErrorLog(any(ManagedErrorLog.class), any(Throwable.class))).thenReturn(report);
    when(StorageHelper.InternalStorage.read(any(File.class))).thenReturn("");
    when(StorageHelper.InternalStorage.readObject(any(File.class))).thenReturn(new NativeException());
    LogSerializer logSerializer = mock(LogSerializer.class);
    ArgumentCaptor<Log> log = ArgumentCaptor.forClass(Log.class);
    when(logSerializer.serializeLog(log.capture())).thenReturn("{}");
    when(logSerializer.deserializeLog(anyString())).thenAnswer(new Answer<ManagedErrorLog>() {

        @Override
        public ManagedErrorLog answer(InvocationOnMock invocation) throws Throwable {
            ManagedErrorLog log = mock(ManagedErrorLog.class);
            when(log.getId()).thenReturn(UUID.randomUUID());
            return log;
        }
    });
    /* Start crashes. */
    Crashes crashes = Crashes.getInstance();
    crashes.setLogSerializer(logSerializer);
    crashes.onStarting(mAppCenterHandler);
    crashes.onStarted(mock(Context.class), "", mock(Channel.class));
    /* Verify timestamps on the crash log. */
    assertTrue(Crashes.hasCrashedInLastSession().get());
    assertTrue(log.getValue() instanceof ManagedErrorLog);
    return (ManagedErrorLog) log.getValue();
}
Also used : Context(android.content.Context) SessionContext(com.microsoft.appcenter.SessionContext) HandledErrorLog(com.microsoft.appcenter.crashes.ingestion.models.HandledErrorLog) ManagedErrorLog(com.microsoft.appcenter.crashes.ingestion.models.ManagedErrorLog) Log(com.microsoft.appcenter.ingestion.models.Log) AppCenterLog(com.microsoft.appcenter.utils.AppCenterLog) ErrorAttachmentLog(com.microsoft.appcenter.crashes.ingestion.models.ErrorAttachmentLog) Device(com.microsoft.appcenter.ingestion.models.Device) Channel(com.microsoft.appcenter.channel.Channel) LogSerializer(com.microsoft.appcenter.ingestion.models.json.LogSerializer) ErrorReport(com.microsoft.appcenter.crashes.model.ErrorReport) ManagedErrorLog(com.microsoft.appcenter.crashes.ingestion.models.ManagedErrorLog) InvocationOnMock(org.mockito.invocation.InvocationOnMock) SessionContext(com.microsoft.appcenter.SessionContext) UUID(java.util.UUID) File(java.io.File) NativeException(com.microsoft.appcenter.crashes.model.NativeException)

Example 2 with SessionContext

use of com.microsoft.appcenter.SessionContext in project mobile-center-sdk-android by Microsoft.

the class DistributeBeforeApiSuccessTest method dontEnqueueDistributionStartSessionLogIfLastSessionIdIsNull.

@Test
public void dontEnqueueDistributionStartSessionLogIfLastSessionIdIsNull() throws Exception {
    /* Setup mock. */
    mockStatic(SessionContext.class);
    SessionContext sessionContext = mock(SessionContext.class);
    when(SessionContext.getInstance()).thenReturn(sessionContext);
    SessionContext.SessionInfo sessionInfo = mock(SessionContext.SessionInfo.class);
    when(sessionContext.getSessionAt(anyLong())).thenReturn(sessionInfo);
    when(sessionInfo.getSessionId()).thenReturn(null);
    when(PreferencesStorage.getString(PREFERENCE_KEY_REQUEST_ID)).thenReturn("r");
    /* Enable in-app updates. */
    start();
    Distribute.getInstance().storeRedirectionParameters("r", "g", null);
    /* Verify the log was sent. */
    verify(mChannel, never()).enqueue(any(DistributionStartSessionLog.class), eq(Distribute.getInstance().getGroupName()));
}
Also used : DistributionStartSessionLog(com.microsoft.appcenter.distribute.ingestion.models.DistributionStartSessionLog) SessionContext(com.microsoft.appcenter.SessionContext) PrepareForTest(org.powermock.core.classloader.annotations.PrepareForTest) Test(org.junit.Test)

Example 3 with SessionContext

use of com.microsoft.appcenter.SessionContext in project mobile-center-sdk-android by Microsoft.

the class DistributeBeforeApiSuccessTest method enqueueDistributionStartSessionLogAfterEnablingUpdates.

@Test
public void enqueueDistributionStartSessionLogAfterEnablingUpdates() throws Exception {
    /* Setup mock. */
    mockStatic(SessionContext.class);
    SessionContext sessionContext = mock(SessionContext.class);
    when(SessionContext.getInstance()).thenReturn(sessionContext);
    SessionContext.SessionInfo sessionInfo = mock(SessionContext.SessionInfo.class);
    when(sessionContext.getSessionAt(anyLong())).thenReturn(sessionInfo);
    when(sessionInfo.getSessionId()).thenReturn(UUID.randomUUID());
    when(PreferencesStorage.getString(PREFERENCE_KEY_REQUEST_ID)).thenReturn("r");
    /* Enable in-app updates. */
    start();
    Distribute.getInstance().storeRedirectionParameters("r", "g", null);
    /* Verify the log was sent. */
    verify(mChannel).enqueue(any(DistributionStartSessionLog.class), eq(Distribute.getInstance().getGroupName()));
}
Also used : DistributionStartSessionLog(com.microsoft.appcenter.distribute.ingestion.models.DistributionStartSessionLog) SessionContext(com.microsoft.appcenter.SessionContext) PrepareForTest(org.powermock.core.classloader.annotations.PrepareForTest) Test(org.junit.Test)

Example 4 with SessionContext

use of com.microsoft.appcenter.SessionContext in project mobile-center-sdk-android by Microsoft.

the class DistributeBeforeApiSuccessTest method dontEnqueueDistributionStartSessionLogIfNoSessionsWereLoggedBefore.

@Test
public void dontEnqueueDistributionStartSessionLogIfNoSessionsWereLoggedBefore() throws Exception {
    /* Setup mock. */
    mockStatic(SessionContext.class);
    SessionContext sessionContext = mock(SessionContext.class);
    when(SessionContext.getInstance()).thenReturn(sessionContext);
    when(sessionContext.getSessionAt(anyLong())).thenReturn(null);
    when(PreferencesStorage.getString(PREFERENCE_KEY_REQUEST_ID)).thenReturn("r");
    /* Enable in-app updates. */
    start();
    Distribute.getInstance().storeRedirectionParameters("r", "g", null);
    /* Verify the log was sent. */
    verify(mChannel, never()).enqueue(any(DistributionStartSessionLog.class), eq(Distribute.getInstance().getGroupName()));
}
Also used : DistributionStartSessionLog(com.microsoft.appcenter.distribute.ingestion.models.DistributionStartSessionLog) SessionContext(com.microsoft.appcenter.SessionContext) PrepareForTest(org.powermock.core.classloader.annotations.PrepareForTest) Test(org.junit.Test)

Aggregations

SessionContext (com.microsoft.appcenter.SessionContext)4 DistributionStartSessionLog (com.microsoft.appcenter.distribute.ingestion.models.DistributionStartSessionLog)3 Test (org.junit.Test)3 PrepareForTest (org.powermock.core.classloader.annotations.PrepareForTest)3 Context (android.content.Context)1 Channel (com.microsoft.appcenter.channel.Channel)1 ErrorAttachmentLog (com.microsoft.appcenter.crashes.ingestion.models.ErrorAttachmentLog)1 HandledErrorLog (com.microsoft.appcenter.crashes.ingestion.models.HandledErrorLog)1 ManagedErrorLog (com.microsoft.appcenter.crashes.ingestion.models.ManagedErrorLog)1 ErrorReport (com.microsoft.appcenter.crashes.model.ErrorReport)1 NativeException (com.microsoft.appcenter.crashes.model.NativeException)1 Device (com.microsoft.appcenter.ingestion.models.Device)1 Log (com.microsoft.appcenter.ingestion.models.Log)1 LogSerializer (com.microsoft.appcenter.ingestion.models.json.LogSerializer)1 AppCenterLog (com.microsoft.appcenter.utils.AppCenterLog)1 File (java.io.File)1 UUID (java.util.UUID)1 InvocationOnMock (org.mockito.invocation.InvocationOnMock)1