- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我一直在使用 Robolectric 在 Android 应用程序上运行一些测试,到目前为止一直运行良好。
我的应用程序将 getApplicationContext() 的结果传递给构造函数,但 Robolectric 应该确保该值不为 null,因为我正在使用 BuildActivity() 方法。该错误出在我的测试环境的某些配置中,或者是 Robolectric 中的错误。结果是 Toast 构造函数中出现 NullPointerException。
我的环境:
com.android.tools.build:gradle:3.0.1
org.robolectric:robolectric:3.4.2
junit:junit:4.12
我正在尝试测试我们的 SystemMonitorActivity 类,它是抽象的
public abstract class SystemMonitorActivity extends BaseActivity implements OnClickListener
基本 Activity :
public class BaseActivity extends Activity implements IHandleMessageReceived, Thread.UncaughtExceptionHandler
我创建了 SystemMonitorActivity 的子类,以便我可以在测试中实例化它:
public class SystemMonitorActivitySubclass extends SystemMonitorActivity
这是我的模拟测试类,用于重现我所看到的错误:
@RunWith(RobolectricTestRunner.class)
@Config(constants = BuildConfig.class)
public class BuildActivityTest {
@Test
public void onCreateTest000() throws Exception {
SystemMonitorActivitySubclass systemMonitorActivitySubclass = Robolectric.buildActivity(SystemMonitorActivitySubclass.class).create().get();
}
}
我的测试输出:
java.lang.NullPointerException
at android.widget.Toast.__constructor__(Toast.java:114)
at android.widget.Toast.<init>(Toast.java)
at org.robolectric.shadows.ShadowToast.makeText(ShadowToast.java:38)
at android.widget.Toast.makeText(Toast.java)
at com.siemens.hc.poc.isf.admin.sysmon.SystemMonitorActivity.setUpDeviceOwner(SystemMonitorActivity.java:649)
at com.siemens.hc.poc.isf.admin.sysmon.SystemMonitorActivity.onCreate(SystemMonitorActivity.java:401)
at android.app.Activity.performCreate(Activity.java:6975)
at org.robolectric.util.ReflectionHelpers.callInstanceMethod(ReflectionHelpers.java:232)
at org.robolectric.android.controller.ActivityController$1.run(ActivityController.java:73)
at org.robolectric.shadows.ShadowLooper.runPaused(ShadowLooper.java:366)
at org.robolectric.shadows.CoreShadowsAdapter$1.runPaused(CoreShadowsAdapter.java:27)
at org.robolectric.android.controller.ActivityController.create(ActivityController.java:70)
at org.robolectric.android.controller.ActivityController.create(ActivityController.java:80)
at com.siemens.hc.poc.isf.admin.sysmon.BuildActivityTest.setUp(BuildActivityTest.java:63)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
at org.robolectric.internal.SandboxTestRunner$2.evaluate(SandboxTestRunner.java:228)
at org.robolectric.internal.SandboxTestRunner.runChild(SandboxTestRunner.java:110)
at org.robolectric.internal.SandboxTestRunner.runChild(SandboxTestRunner.java:37)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.robolectric.internal.SandboxTestRunner$1.evaluate(SandboxTestRunner.java:64)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.gradle.api.internal.tasks.testing.junit.JUnitTestClassExecuter.runTestClass(JUnitTestClassExecuter.java:114)
at org.gradle.api.internal.tasks.testing.junit.JUnitTestClassExecuter.execute(JUnitTestClassExecuter.java:57)
at org.gradle.api.internal.tasks.testing.junit.JUnitTestClassProcessor.processTestClass(JUnitTestClassProcessor.java:66)
at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.processTestClass(SuiteTestClassProcessor.java:51)
at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:35)
at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24)
at org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:32)
at org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:93)
at com.sun.proxy.$Proxy1.processTestClass(Unknown Source)
at org.gradle.api.internal.tasks.testing.worker.TestWorker.processTestClass(TestWorker.java:108)
at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:35)
at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24)
at org.gradle.internal.remote.internal.hub.MessageHubBackedObjectConnection$DispatchWrapper.dispatch(MessageHubBackedObjectConnection.java:146)
at org.gradle.internal.remote.internal.hub.MessageHubBackedObjectConnection$DispatchWrapper.dispatch(MessageHubBackedObjectConnection.java:128)
at org.gradle.internal.remote.internal.hub.MessageHub$Handler.run(MessageHub.java:404)
at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:63)
at org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:46)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run(ThreadFactoryImpl.java:55)
at java.lang.Thread.run(Thread.java:748)
我已确保在 build.gradle 的测试中包含 Android 资源:
android.testOptions.unitTests.includeAndroidResources = true
我是否需要以某种方式将 SystemMonitorActivitySubclass 添加到 AndroidManifest.xml 中?
<小时/>通过堆栈跟踪,实际的 NPE 出现在以下代码 fragment 中:
java.lang.NullPointerException
at android.widget.Toast.__constructor__(Toast.java:114)
public Toast(@NonNull Context context, @Nullable Looper looper) {
mContext = context;
mTN = new TN(context.getPackageName(), looper);
...
这是从 Robolectrics ShadowToast 调用的:
at android.widget.Toast.<init>(Toast.java)
at org.robolectric.shadows.ShadowToast.makeText(ShadowToast.java:38)
@Implementation
public static Toast makeText(Context context, CharSequence text, int duration) {
Toast toast = new Toast(context);
...
传递给 makeText 的上下文是 getApplicationContext(),它应该由 Robolectric 处理以确保它不为 null:
at android.widget.Toast.makeText(Toast.java)
at com.siemens.hc.poc.isf.admin.sysmon.SystemMonitorActivity.setUpDeviceOwner(SystemMonitorActivity.java:649)
Toast.makeText(getApplicationContext(), "Not a device owner", Toast.LENGTH_SHORT).show();
我现在已经调试了 6 个多小时,但我感觉还没有更接近找出问题所在。非常感谢任何帮助,谢谢!
<小时/>更新:我已经按照 Anton Malyshev 的建议尝试了以下方法
@Test
public void onCreateTest000() throws Exception {
ActivityController controller = Robolectric.buildActivity(SystemMonitorActivitySubclass.class).create().start();
Activity activity = (Activity)controller.get();
}
这有相同的结果;
java.lang.NullPointerException
at android.widget.Toast.__constructor__(Toast.java:114)
最佳答案
似乎您忘记在 .get()
之前调用 .start()
,因此您在访问 Toast
内的 context
时遇到 NullPointerException,请检查文档: http://robolectric.org/activity-lifecycle/
所以我建议改变
systemMonitorActivitySubclass = Robolectric.buildActivity(SystemMonitorActivitySubclass.class).create().get();
至:
systemMonitorActivitySubclass = Robolectric.buildActivity(SystemMonitorActivitySubclass.class).create().start().get();
也许最好也保留 ActivityController
引用(如示例代码中所示)。
关于java - Robolectric 未正确处理 getApplicationContext() - NPE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48385221/
我确定我昨晚没有做任何奇怪或错误的事情。昨晚,我仍然能够 Toast.makeText(getApplicationContext(), "Some String", Toast.LENGTH_SHO
首先是Toast.makeText()的格式: public static Toast makeText (Context context, CharSequence text, int durati
我正在尝试获取用户的位置,这似乎给我带来了麻烦。当我调用 distanceBetween() 来查看测试是否正常工作时,我在 getApplicationContext() 处收到 NullPoint
我正在关注本教程: http://www.tutos-android.com/importer-ajouter-certificat-ssl-auto-signe-bouncy-castle-andr
我是一名 Android 初学者,制作了一个简单的 Service 示例。 但在单个代码中 getApplicationContext() 方法的行为有所不同,请检查 MainActivity 的注释
我尝试了以下代码来扩展 Activity ,它运行得很好,但现在我更改了代码以使用扩展 fragment 。我在互联网上搜索并找到了 getActivity() 函数来调用 query() 和其他函数
我正在尝试通过应用程序上下文保存位置,因此我执行了以下操作: 我的应用类: 导入android.app.Application; 导入 com.google.android.maps.GeoPoint
我想使用异步事件对输入到 texbox 中的文本进行 toast ,例如。按下按钮。它编译没有错误,但按下按钮时没有任何反应。从我在论坛上收集到的信息来看,我的背景是错误的。有人能帮我吗?下面是代码:
我已经根据现有 Android 项目中的另一个类指定了一个类。 addRow() 方法应该动态地将行添加到表中。创建新的 TextView 以添加到我的行时以及创建该行时,我应该指定“上下文”。当前的
我正在 Android Froyo 系统上开发一个应用程序,一切都很好,除了当我创建一个服务时,该服务会产生几个线程。在其中一个线程中,我想停止服务。显然 stopService() 超出了线程类的范
我正在尝试以下代码,其中服务正在实现我的监听器: public class MyListenerClass extends Service implements MyListenerInterface
我有一个 fragment ,允许用户输入消息和消息将被传递到的电话号码。我收到错误消息“无法解析方法 getApplicationContext()” 我在这里查看了答案 the method ge
我总是得到这个 java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.Context an
我正在尝试使用一种方法从布局生成位图并将位图保存到内存中的文件中。但是,getApplicationContext() 未解析。 方法代码如下 private void generateAnd
我有扩展 Application 类的 VideoApplication 类。我已经在此类中创建了我的其他 Java 类的对象,以便我可以通过 Activity 传递它。 public class V
我有一个存储应用上下文信息的应用程序。应用上下文信息在扩展 Application 类的 MyApp 类中的 Activity 之间共享。 我正在为我的 Activity 编写单元测试,并且我想检查当
有谁知道如何在 monodroid 中获取应用程序上下文(我正在寻找 getApplicationContext() 的 monodroid 实现)?我试过 Application.Applicati
如果用户没有输入用户名和密码,我试图弹出消息,但是我的问题是 getApplicationcontext(),它说“无法解析方法”。我如何解决它? - - - - - - - - - - - - -
我在使用外部数据库时遇到问题。DB位于 Assets 字典中。 我正在使用https://github.com/jgilfelt/android-sqlite-asset-helper打开数据库。 下
我正在创建一个应用程序单例,用于在 Activity 之间共享数据。 AppData(单例) import android.app.Application; public class AppData
我是一名优秀的程序员,十分优秀!