gpt4 book ai didi

android - 使用 Android volley 进行单元测试

转载 作者:IT王子 更新时间:2023-10-29 00:04:08 25 4
gpt4 key购买 nike

我想知道如何为 volley 框架创建单元测试。模拟请求和响应,以便我可以创建不需要 Web 服务工作和网络访问的单元测试。

我用谷歌搜索了它,但我根本找不到关于框架的太多信息

最佳答案

我实现了一个名为 FakeHttpStackHttpStack 子类,它从位于 res/raw 的本地文件中加载假响应体。我这样做是出于开发目的,也就是说,我可以在服务器准备好之前为新 API 开发一些东西,但是您可以从这里学到一些东西(例如,覆盖 HttpStack#peformRequest 和 createEntity)。

/**
* Fake {@link HttpStack} that returns the fake content using resource file in res/raw.
*/
class FakeHttpStack implements HttpStack {
private static final String DEFAULT_STRING_RESPONSE = "Hello";
private static final String DEFAULT_JSON_RESPONSE = " {\"a\":1,\"b\":2,\"c\":3}";
private static final String URL_PREFIX = "http://example.com/";
private static final String LOGGER_TAG = "STACK_OVER_FLOW";

private static final int SIMULATED_DELAY_MS = 500;
private final Context context;

FakeHttpStack(Context context) {
this.context = context;
}

@Override
public HttpResponse performRequest(Request<?> request, Map<String, String> stringStringMap)
throws IOException, AuthFailureError {
try {
Thread.sleep(SIMULATED_DELAY_MS);
} catch (InterruptedException e) {
}
HttpResponse response
= new BasicHttpResponse(new BasicStatusLine(HttpVersion.HTTP_1_1, 200, "OK"));
List<Header> headers = defaultHeaders();
response.setHeaders(headers.toArray(new Header[0]));
response.setLocale(Locale.JAPAN);
response.setEntity(createEntity(request));
return response;
}

private List<Header> defaultHeaders() {
DateFormat dateFormat = new SimpleDateFormat("EEE, dd mmm yyyy HH:mm:ss zzz");
return Lists.<Header>newArrayList(
new BasicHeader("Date", dateFormat.format(new Date())),
new BasicHeader("Server",
/* Data below is header info of my server */
"Apache/1.3.42 (Unix) mod_ssl/2.8.31 OpenSSL/0.9.8e")
);
}

/**
* returns the fake content using resource file in res/raw. fake_res_foo.txt is used for
* request to http://example.com/foo
*/
private HttpEntity createEntity(Request request) throws UnsupportedEncodingException {
String resourceName = constructFakeResponseFileName(request);
int resourceId = context.getResources().getIdentifier(
resourceName, "raw", context.getApplicationContext().getPackageName());
if (resourceId == 0) {
Log.w(LOGGER_TAG, "No fake file named " + resourceName
+ " found. default fake response should be used.");
} else {
InputStream stream = context.getResources().openRawResource(resourceId);
try {
String string = CharStreams.toString(new InputStreamReader(stream, Charsets.UTF_8));
return new StringEntity(string);
} catch (IOException e) {
Log.e(LOGGER_TAG, "error reading " + resourceName, e);
}
}

// Return default value since no fake file exists for given URL.
if (request instanceof StringRequest) {
return new StringEntity(DEFAULT_STRING_RESPONSE);
}
return new StringEntity(DEFAULT_JSON_RESPONSE);
}

/**
* Map request URL to fake file name
*/
private String constructFakeResponseFileName(Request request) {
String reqUrl = request.getUrl();
String apiName = reqUrl.substring(URL_PREFIX.length());
return "fake_res_" + apiName;
}
}

要使用 FakeHttpStack,您只需将它传递给您的 RequestQueue。我也覆盖了 RequestQueue。

public class FakeRequestQueue extends RequestQueue {
public FakeRequestQueue(Context context) {
super(new NoCache(), new BasicNetwork(new FakeHttpStack(context)));
}
}

这种方法的好处是,它不需要对您的代码进行太多更改。您只需在测试时将您的 RequestQueue 切换为 FakeRequestQueue。因此,它可以用于验收测试或系统测试。

另一方面,对于单元测试,可能有更紧凑的方式。例如,您可以将 Request.Listener 子类实现为单独的类,以便可以轻松测试 onResponse 方法。我建议您提供更多有关您要测试的内容的详细信息或放置一些代码 fragment 。

关于android - 使用 Android volley 进行单元测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18618509/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com