Reviewed By: sblackshear Differential Revision: D3644266 fbshipit-source-id: 74e623cmaster
parent
5296688c1f
commit
85add041d4
@ -0,0 +1,33 @@
|
||||
/*
|
||||
* Copyright (c) 2016 - present Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
package codetoanalyze.java.crashcontext;
|
||||
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class NativeMethodExample {
|
||||
|
||||
public static void foo() {
|
||||
String s = null;
|
||||
s.toString();
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
try {
|
||||
// Calling method.invoke is a reliable way of getting a native method
|
||||
// in the stack (from the implementation of reflection) between this
|
||||
// method and the target of the reflective invocation.
|
||||
Method method = NativeMethodExample.class.getDeclaredMethod("foo");
|
||||
Object o = method.invoke(new Object[] {} );
|
||||
} catch (ReflectiveOperationException e) {
|
||||
throw new Error(e);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1 @@
|
||||
{"exception_type": "java.lang.NullPointerException", "stack_trace": ["at codetoanalyze.java.crashcontext.NativeMethodExample.foo(NativeMethodExample.java:18)","at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)","at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)","at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)","at java.lang.reflect.Method.invoke(Method.java:497)","at codetoanalyze.java.crashcontext.NativeMethodExample.main(NativeMethodExample.java:27)",""], "exception_message": "", "normvector_stack": ["codetoanalyze.java.crashcontext.NativeMethodExample.foo","sun.reflect.NativeMethodAccessorImpl.invoke0","sun.reflect.NativeMethodAccessorImpl.invoke","at sun.reflect.DelegatingMethodAccessorImpl.invoke","java.lang.reflect.Method.invoke","codetoanalyze.java.crashcontext.NativeMethodExample.main",""]}
|
@ -0,0 +1,55 @@
|
||||
/*
|
||||
* Copyright (c) 2016 - present Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
package endtoend.java.crashcontext;
|
||||
|
||||
import static org.hamcrest.MatcherAssert.assertThat;
|
||||
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import utils.CrashContextResults;
|
||||
|
||||
public class NativeMethodTest {
|
||||
|
||||
public static final String TAG = "NativeMethodExample";
|
||||
|
||||
public static final String MAIN_METHOD =
|
||||
"codetoanalyze.java.crashcontext.NativeMethodExample.main(java.lang.String[]):void";
|
||||
|
||||
// Currently, native methods are missing their arguments lists.
|
||||
public static final String REFLECTION_INVOKE_METHOD =
|
||||
"sun.reflect.NativeMethodAccessorImpl.invoke0";
|
||||
|
||||
public static final String FOO_METHOD =
|
||||
"codetoanalyze.java.crashcontext.NativeMethodExample.foo():void";
|
||||
|
||||
private static CrashContextResults crashcontext;
|
||||
|
||||
@BeforeClass
|
||||
public static void loadResults() throws IOException {
|
||||
crashcontext =
|
||||
CrashContextResults.loadJSONResults(TAG);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void shapeOfTheStack() {
|
||||
assertThat("The stack trace should contain " + FOO_METHOD,
|
||||
crashcontext.hasStackFrame(FOO_METHOD));
|
||||
assertThat("The trace should contain at least one native method ",
|
||||
crashcontext.hasLocationOnStack("Native Method", -1));
|
||||
assertThat("The stack trace should contain " + REFLECTION_INVOKE_METHOD,
|
||||
crashcontext.hasStackFrame(REFLECTION_INVOKE_METHOD));
|
||||
assertThat("The stack trace should contain " + MAIN_METHOD,
|
||||
crashcontext.hasStackFrame(MAIN_METHOD));
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue