Robolectric + OkHttp +改造+ rxJava单元测试

时间:2014-08-28 15:00:49

标签: android unit-testing robolectric retrofit rx-java

我正在尝试用robolectric编写一段代码的单元测试。问题是我需要伪造http调用,但似乎robolectric的假层只能与Apache的HttpClient一起使用,根据这个答案:

Link to answer

在Retrofit中,您无法更改URL,因此MockWebServer似乎不是一个选项。

似乎mockito可以捕获改进的回调,但我正在使用rxJava,所以我真的不知道它是否有帮助。

有没有人对使用Robolectric + Retrofit + okHttp + rxJava进行单元测试有任何建议?

这是一小段代码:

    @Test
public void test1() throws IOException, InterruptedException {
    FragmentA frag = (FragmentA) activity
            .getFragmentManager().findFragmentById(
                    R.id.frag);
    assertThat(frag).isNotNull();
    assertThat(frag.isVisible()).isTrue();

    EditText input1 = (EditText) frag.getView()
            .findViewById(R.id.edit_text1);
    EditText input2 = (EditText) frag.getView()
            .findViewById(R.id.edit_text2);
    Button button = (button) frag.getView()
            .findViewById(R.id.button);
    input1.setText("999");
    input2.setText("999");
    Robolectric.addPendingHttpResponse(200, "{\"isValid\": true}");
    button.performClick();
            assertThat(
            ShadowAlertDialog.getLatestDialog() instanceof ProgressDialog)
            .isTrue();

  }

由于OkHttp,Robolectric.addPendingHttpResponse无论如何都不会起作用。按下按钮时会启动api调用,因此我需要假设响应!

2 个答案:

答案 0 :(得分:1)

您可以从build.gradle中声明的常量中获取服务器URL,并添加一个覆盖它的测试flavor或buildType

release {
    buildConfigField "String", "SERVER_URL", "\"github.com\""
}
testing {
    buildConfigField "String", "SERVER_URL", "\"127.0.0.1\""
}

另一个替代品不是特定于Android的,(不太优雅的恕我直言,但它适用于所有情况)是使用仅在测试期间可访问和使用的私有变量,使用像这样的反思:

  1. 创建一个null的私有静态变量,即私有静态字符串BASE_URL = null;
  2. 使用方法获取主机URL,并在该方法中检查当它不为空时(从不在发布版本中)或来自资源的URL(从不在代码中对URL进行硬编码)时是否使用BASE_URL
  3. 在测试期间,使用反射将私有可见性更改为public,并将BASE_URL修改为您的测试U​​RL。
  4. 要执行反射部分,请使用此示例:

    final Field urlField = MyService.class.getDeclaredField("BASE_URL");
    urlField.setAccessible(true);
    urlField.set(null, TEST_URL );
    

答案 1 :(得分:0)

为什么不能在改造中更改网址?

RestAdapter restAdapter = new RestAdapter.Builder()
    .setEndpoint("https://api.github.com")
    .build();

您可以从MockWebServer设置该网址:

MockWebServer server = new MockWebServer();
URL url = server.getUrl("/");