Не удается нажать на ребенка RecyclerView в Robolectric
Я пишу тесты для просмотра в приложении MVP для Android. В этих тестах я использую Robolectric 3.6.1. Проблема, с которой я сталкиваюсь, заключается в получении NullPointerException, когда я пытаюсь щелкнуть на представлении внутри RecyclerView с getChildAt()
, Это происходит только тогда, когда весь тестовый класс выполняется, а не когда тесты выполняются изолированно, что заставляет меня думать, что что-то в моих настройках неверно. Если я запускаю весь класс, то в первом тесте такой проблемы нет, но во всех остальных тестах такая проблема возникает, когда setUp()
Функция вызывается более одного раза.
Я провел некоторое исследование и наткнулся на этот пост, но поместить его в мой код не помогает.
@RunWith(RobolectricTestRunner.class)
public class MainActivityTest {
private List<Measurement> measurements = Arrays.asList(new Measurement("Object A", Unit.CM), new Measurement("Object B", Unit.KG));
private final int POSITION = 0;
@Mock
private MainMvpPresenter mainMvpPresenter;
private MainActivity mainActivity;
private RecyclerView measurementsRecyclerView;
@Before
public void setUp() throws Exception {
MockitoAnnotations.initMocks(this);
mainActivity = Robolectric.buildActivity(MainActivity.class).create().visible().get();
mainActivity.setMainMvpPresenter(mainMvpPresenter);
measurementsRecyclerView = mainActivity.findViewById(R.id.measurementsList);
mainActivity.updateMeasurements(measurements);
}
@Test
public void setUpCorrectly(){
assertThat(measurementsRecyclerView.getChildCount(), is(measurements.size()));
}
@Test
public void onItemClicked_ShouldCallPresenter() {
measurementsRecyclerView.findViewHolderForAdapterPosition(POSITION).itemView.performClick();
verify(mainMvpPresenter).measurementClicked(POSITION);
}
}
Вот ошибка, которую я получаю:
java.lang.NullPointerException
at com.jakkaps.body_measurements.ui.main.MainActivityTest.onItemClicked_ShouldCallPresenter(MainActivityTest.java:64)
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:498)
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.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.robolectric.RobolectricTestRunner$HelperTestRunner$1.evaluate(RobolectricTestRunner.java:535)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.robolectric.internal.SandboxTestRunner$2.evaluate(SandboxTestRunner.java:249)
at org.robolectric.internal.SandboxTestRunner.runChild(SandboxTestRunner.java:123)
at org.robolectric.internal.SandboxTestRunner.runChild(SandboxTestRunner.java:42)
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:77)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:51)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)
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:498)
at com.intellij.rt.execution.application.AppMainV2.main(AppMainV2.java:131
)
1 ответ
Я действительно не нашел решения для реальной проблемы, я просто играл, пока это не сработало. То, что я должен был сделать, это не звонить measurementsRecyclerView = mainActivity.findViewById(R.id.measurementsList);
в setUp()
функция, а точнее в каждом тесте отдельно. Я также должен был позвонить mainActivity.updateMeasurements(measurements);
дважды.
Получилось очень грязно, поэтому я рекомендую всем найти свое решение.