use of com.microsoft.azure.mobile.crashes.ingestion.models.StackFrame in project mobile-center-sdk-android by Microsoft.
the class CrashesTest method trackExceptionForWrapperSdk.
@Test
public void trackExceptionForWrapperSdk() {
StackFrame frame = new StackFrame();
frame.setClassName("1");
frame.setFileName("2");
frame.setLineNumber(3);
frame.setMethodName("4");
final com.microsoft.azure.mobile.crashes.ingestion.models.Exception exception = new com.microsoft.azure.mobile.crashes.ingestion.models.Exception();
exception.setType("5");
exception.setMessage("6");
exception.setFrames(singletonList(frame));
Crashes crashes = Crashes.getInstance();
Channel mockChannel = mock(Channel.class);
Crashes.getInstance().trackException(exception);
verify(mockChannel, never()).enqueue(any(Log.class), eq(crashes.getGroupName()));
crashes.onStarted(mock(Context.class), "", mockChannel);
Crashes.getInstance().trackException(exception);
verify(mockChannel).enqueue(argThat(new ArgumentMatcher<Log>() {
@Override
public boolean matches(Object item) {
return item instanceof ManagedErrorLog && exception.equals(((ManagedErrorLog) item).getException());
}
}), eq(crashes.getGroupName()));
}
use of com.microsoft.azure.mobile.crashes.ingestion.models.StackFrame in project mobile-center-sdk-android by Microsoft.
the class ErrorLogHelperTest method createErrorLog.
@Test
public void createErrorLog() throws DeviceInfoHelper.DeviceInfoException {
/* Dummy coverage of utils class. */
new ErrorLogHelper();
/* Mock base. */
Context mockContext = mock(Context.class);
when(SystemClock.elapsedRealtime()).thenReturn(1000L);
when(Process.myPid()).thenReturn(123);
/* Mock device. */
Device mockDevice = mock(Device.class);
when(DeviceInfoHelper.getDeviceInfo(any(Context.class))).thenReturn(mockDevice);
/* Mock process name. */
ActivityManager activityManager = mock(ActivityManager.class);
RunningAppProcessInfo runningAppProcessInfo = new RunningAppProcessInfo(null, 0, null);
runningAppProcessInfo.pid = 123;
runningAppProcessInfo.processName = "right.process";
when(mockContext.getSystemService(Context.ACTIVITY_SERVICE)).thenReturn(activityManager);
when(activityManager.getRunningAppProcesses()).thenReturn(Arrays.asList(mock(RunningAppProcessInfo.class), runningAppProcessInfo));
/* Mock architecture. */
Whitebox.setInternalState(Build.VERSION.class, "SDK_INT", 23);
Whitebox.setInternalState(Build.class, "SUPPORTED_ABIS", new String[] { "armeabi-v7a", "arm" });
/* Test. */
ManagedErrorLog errorLog = ErrorLogHelper.createErrorLog(mockContext, java.lang.Thread.currentThread(), new RuntimeException(new IOException(new TestCrashException())), java.lang.Thread.getAllStackTraces(), 900, true);
assertNotNull(errorLog);
assertNotNull(errorLog.getId());
assertTrue(System.currentTimeMillis() - errorLog.getToffset() <= 1000);
assertEquals(mockDevice, errorLog.getDevice());
assertEquals(Integer.valueOf(123), errorLog.getProcessId());
assertEquals("right.process", errorLog.getProcessName());
assertNull(errorLog.getParentProcessId());
assertNull(errorLog.getParentProcessName());
assertEquals("armeabi-v7a", errorLog.getArchitecture());
assertEquals((Long) java.lang.Thread.currentThread().getId(), errorLog.getErrorThreadId());
assertEquals(java.lang.Thread.currentThread().getName(), errorLog.getErrorThreadName());
assertEquals(Boolean.TRUE, errorLog.getFatal());
assertEquals(Long.valueOf(100), errorLog.getAppLaunchTOffset());
/* Check first exception. */
Exception topException = errorLog.getException();
sanityCheck(topException);
assertEquals(RuntimeException.class.getName(), topException.getType());
assertNotNull(topException.getMessage());
assertNotNull(topException.getInnerExceptions());
assertEquals(1, topException.getInnerExceptions().size());
/* Check second exception. */
Exception middleException = topException.getInnerExceptions().get(0);
sanityCheck(middleException);
assertEquals(IOException.class.getName(), middleException.getType());
assertNotNull(middleException.getInnerExceptions());
assertEquals(1, middleException.getInnerExceptions().size());
/* Check third exception. */
Exception rootCauseException = middleException.getInnerExceptions().get(0);
sanityCheck(rootCauseException);
assertEquals(TestCrashException.class.getName(), rootCauseException.getType());
assertNotNull(rootCauseException.getMessage());
assertNull(rootCauseException.getInnerExceptions());
/* Check threads. */
assertNotNull(errorLog.getThreads());
assertEquals(java.lang.Thread.getAllStackTraces().size(), errorLog.getThreads().size());
for (Thread thread : errorLog.getThreads()) {
assertNotNull(thread);
assertTrue(thread.getId() > 0);
assertNotNull(thread.getName());
assertNotNull(thread.getFrames());
for (StackFrame frame : thread.getFrames()) {
assertNotNull(frame);
assertNotNull(frame.getClassName());
assertNotNull(frame.getMethodName());
}
}
}
use of com.microsoft.azure.mobile.crashes.ingestion.models.StackFrame in project mobile-center-sdk-android by Microsoft.
the class ErrorLogHelper method getModelStackFrame.
@NonNull
private static StackFrame getModelStackFrame(StackTraceElement stackTraceElement) {
StackFrame stackFrame = new StackFrame();
stackFrame.setClassName(stackTraceElement.getClassName());
stackFrame.setMethodName(stackTraceElement.getMethodName());
stackFrame.setLineNumber(stackTraceElement.getLineNumber());
stackFrame.setFileName(stackTraceElement.getFileName());
return stackFrame;
}
use of com.microsoft.azure.mobile.crashes.ingestion.models.StackFrame in project mobile-center-sdk-android by Microsoft.
the class ErrorLogHelperTest method sanityCheck.
private void sanityCheck(Exception exception) {
assertNotNull(exception);
assertNotNull(exception.getType());
assertNotNull(exception.getFrames());
assertFalse(exception.getFrames().isEmpty());
for (StackFrame frame : exception.getFrames()) {
assertNotNull(frame);
assertNotNull(frame.getClassName());
assertNotNull(frame.getMethodName());
}
}
Aggregations