2

Robolectric を使用してアプリケーションをテストしています。私のアプリでは、リストビューにそのビューにアイテムがあるかどうかを確認したいと思います。リストビューから onClickItem をテストします。リストビュー項目はサーバーから動的です。アクティビティが開始されるたびに、サーバーからリクエストされます。しかし、Robolectric は応答を待機しなかったため、リストビューのアダプターはまだ Null です。

@RunWith(CustomRobolectricRunner.class)
@Config(constants = BuildConfig.class, emulateSdk = 19)
public class HomeScreenTest {

    private HomeActivity activity;

    @Before
    public void setUp() {
        activity = Robolectric.setupActivity(HomeActivity.class);
        FakeHttp.getFakeHttpLayer().interceptHttpRequests(true);
        FakeHttp.setDefaultHttpResponse(200, "OK");
        FakeHttpLayer fakeHttpLayer = FakeHttp.getFakeHttpLayer();
        assertFalse(fakeHttpLayer.hasPendingResponses());
        assertFalse(fakeHttpLayer.hasRequestInfos());
        assertFalse(fakeHttpLayer.hasResponseRules());
    }

    @Test
    public void selectItemCategoryMenuShouldStartSearchResultActivity() throws Exception {
        Thread.sleep(5000);
        ListView leftDrawer = (ListView) activity.findViewById(R.id.left_drawer);
        assertThat(leftDrawer).isNotNull();
        leftDrawer.performItemClick(leftDrawer.getAdapter().getView(0, null, null), 0, leftDrawer.getAdapter().getItemId(0));

        Intent intent = shadowOf(activity).peekNextStartedActivity();
        ShadowIntent shadowIntent = shadowOf(intent);
        assertEquals(SearchResultActivity.class.getName(), shadowIntent.getClass().getName());
    }
}

これは、Robolectric テストのエラーです。

Unexpected HTTP call GET http://example.com/api/app/getWallpaper.php HTTP/1.1

java.lang.NullPointerException
    at com.l23rf.android.stockphoto.HomeScreenTest.selectItemCategoryMenuShouldStartSearchResultActivity(HomeScreenTest.java:71)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    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.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
    at org.robolectric.RobolectricTestRunner$2.evaluate(RobolectricTestRunner.java:235)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
    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.RobolectricTestRunner$1.evaluate(RobolectricTestRunner.java:168)
    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:78)
    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:212)
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:68)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140)

サーバーからの応答を待機するように Robolectric コードを配置する方法。そのため、リストビュー アダプターは null ではなくなり、リストビューをテストできます。

4

2 に答える 2

0

初期化を間違えていると思いました。まず、設定する必要がありますgetFakeHttpLayer().interceptHttpRequests(false)。次に、次のようになります。

@Before
public void setUp() {

    FakeHttp.getFakeHttpLayer().interceptHttpRequests(false);
    FakeHttp.setDefaultHttpResponse(200, "OK");
    FakeHttpLayer fakeHttpLayer = FakeHttp.getFakeHttpLayer();
    activity = Robolectric.setupActivity(HomeActivity.class);
    assertFalse(fakeHttpLayer.hasPendingResponses());
    assertFalse(fakeHttpLayer.hasRequestInfos());
    assertFalse(fakeHttpLayer.hasResponseRules());
}

実装が完了したら、教えてください。

于 2015-05-08T02:12:53.827 に答える
0

テストとコードに間違ったものを混ぜています:

  • 初期化メソッドにアサーションがあってはなりません ( @Before)
  • 特に UI スレッドでは、UI はネットワークをまったく呼び出さないでください。

ポイント 1 については、junit FAQをお読みください。ポイント 2 については、この記事を読み、依存性注入を使用して UI コードのネットワーク依存性を削除することをお勧めします。

于 2015-05-07T06:22:29.387 に答える