作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试测试从 GoogleHttpClientSpiceRequest 扩展的类 CachedGetRequest。
下面的例子here我写了这个测试:
@LargeTest
public class CachedGetRequestTest extends InstrumentationTestCase {
private MockWebServer mServer;
private CachedGetRequest<Product> mCachedGetRequest;
@Override
protected void setUp() throws Exception {
super.setUp();
mServer = new MockWebServer();
mServer.enqueue(new MockResponse().setBody(...));
mServer.start();
URL url = mServer.getUrl("/api/products/");
mCachedGetRequest = new CachedGetRequest<>(Product.class, url.toString(), "", "");
}
public void testLoadDataFromNetwork() throws Exception {
Product product = mCachedGetRequest.loadDataFromNetwork();
assertTrue(product.getName().equals("Test"));
}
}
但是我得到一个错误:
java.lang.NullPointerException: Attempt to invoke virtual method 'com.google.api.client.http.HttpRequest com.google.api.client.http.HttpRequestFactory.buildRequest(java.lang.String, com.google.api.client.http.GenericUrl, com.google.api.client.http.HttpContent)' on a null object reference
如果我尝试使用像示例中使用的 SimpleTextRequest 这样的简单请求,那么它工作得很好。所以它适用于基本的 SpiceRequest 但不适用于 GoogleHttpClientSpiceRequest。
我看到 HttpRequestFactory 为空,但我该如何设置它?我可以根据请求调用 setHttpRequestFactory,但我无法使用 Mockito 模拟 HttpRequestFactory,因为它是最终类。如何正确测试此请求?
最佳答案
检查 wiki page for testing RoboSpice requests (第二个例子)。经过简单的调整后,它应该可以解决您的问题:
...
@Override
protected void setUp() throws Exception {
// ...
// your setup code, as specified in the question
// ...
mCachedGetRequest.setHttpRequestFactory(GoogleHttpClientSpiceService.createRequestFactory());
}
...
关于android - 如何测试 Robospice GoogleHttpClientSpiceRequest?当前正在为 HttpRequestFactory 获取 NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29643487/
我正在尝试测试从 GoogleHttpClientSpiceRequest 扩展的类 CachedGetRequest。 下面的例子here我写了这个测试: @LargeTest public cla
我是一名优秀的程序员,十分优秀!