- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
api调用的Java代码
我想知道如何测试下面两行代码。
private void api(){
//Code to call an API and i want to test this in groovy spock
HttpHeaders httpHeaders = new HttpHeaders();
httpHeaders.setAccept(Arrays.asList(MediaType.APPLICATION_JSON);
httpHeaders.setContentType(MediaType.APPLICATION_JSON);
RestTemplate restTemplate = new RestTemplate();
String url ="url";
String body ="body";
//How to mock below line
RequestEntity<String> requestEntity = RequestEntity.put(new URI(url)).contentType(MediaType.APPLICATION_JSON).body(body);
//And this line
ResponseEntity<String> responseEntity = restTemplate.exchange(requestEntity,String.class);
HttpStatus StatusCode = responseEntity.getStatusCode();
}
最佳答案
这不是一个 Spock 问题(您没有提供一行 Spock 规范,所以到目前为止没有人知道您尝试了什么),而是一个软件工程或一般测试问题。测试意大利面条代码的问题——这里我指的是既做某事又同时创建大量对象的代码——是从外部无法访问在方法内创建并存储在局部变量中的对象。有两种方法可以重构代码以获得更好的可测试性:
如果有意义,请更改代码以使用户能够从外部注入(inject)依赖项,而不是代码在内部创建它们。请谷歌“依赖注入(inject)”并找到像
这样的变体另一种方法是将方法的对象创建部分分解为较小的生产者(或创建者或工厂)方法,然后您可以在使用部分模拟时根据您在测试中的选择覆盖( stub ) ( spy )对象。 Spock 提供了这样的 spy ,因此您可以轻松使用它们。
我将展示后一种方法供您引用:
package de.scrum_master.stackoverflow.q58101434;
import org.springframework.http.*;
import org.springframework.web.client.RestTemplate;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.Arrays;
public class MyRestApi {
public HttpStatus api() throws URISyntaxException {
//Code to call an API and i want to test this in groovy spock
HttpHeaders httpHeaders = createHttpHeaders();
RestTemplate restTemplate = createRestTemplate();
String url ="url";
String body ="body";
//How to mock below line
RequestEntity<String> requestEntity = createRequestEntity(url, body);
//And this line
ResponseEntity<String> responseEntity = executeRequest(restTemplate, requestEntity);
return responseEntity.getStatusCode();
}
HttpHeaders createHttpHeaders() {
HttpHeaders httpHeaders = new HttpHeaders();
httpHeaders.setAccept(Arrays.asList(MediaType.APPLICATION_JSON));
httpHeaders.setContentType(MediaType.APPLICATION_JSON);
return httpHeaders;
}
RestTemplate createRestTemplate() {
return new RestTemplate();
}
RequestEntity<String> createRequestEntity(String url, String body) throws URISyntaxException {
return RequestEntity.put(new URI(url)).contentType(MediaType.APPLICATION_JSON).body(body);
}
ResponseEntity<String> executeRequest(RestTemplate restTemplate, RequestEntity<String> requestEntity) {
return restTemplate.exchange(requestEntity,String.class);
}
}
看看该方法现在如何更加结构化和更具可读性(仍然可以改进,我只是以一种快速而肮脏的方式做到了)?请特别注意辅助方法 createRequestEntity
和 executeRequest
。
下面是编写 Spock 测试的方法:
package de.scrum_master.stackoverflow.q58101434
import org.springframework.http.HttpStatus
import org.springframework.http.RequestEntity
import org.springframework.http.ResponseEntity
import spock.lang.Specification
import spock.lang.Unroll
class MyRestApiTest extends Specification {
@Unroll
def "API returns status code #statusCode"() {
given: "prepare mocks + spy"
RequestEntity<String> requestEntity = Mock()
ResponseEntity<String> responseEntity = Mock() {
getStatusCode() >> httpStatus
}
MyRestApi myRestApi = Spy() {
createRequestEntity(_, _) >> requestEntity
executeRequest(_, _) >> responseEntity
}
when: "execute API method"
def result = myRestApi.api()
then: "check expected results"
// This actually only tests mockfunctionality, your real test would look differently
statusCode == result.value()
reasonPhrase == result.reasonPhrase
where:
httpStatus | statusCode | reasonPhrase
HttpStatus.OK | 200 | "OK"
HttpStatus.MOVED_PERMANENTLY | 301 | "Moved Permanently"
HttpStatus.UNAUTHORIZED | 401 | "Unauthorized"
}
}
如果您不理解这段代码,请随时提出(相关!)后续问题。我建议您学习更多关于整洁代码、可测试性、一般模拟测试以及特别是 Spock 的知识。
关于java - 如何在 Spock groovy 中模拟 RequestEntity.put() 和 restTemplate.exchange(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58101434/
我构建了一个非常简单的测试程序,以使用 XML 有效负载向网络服务器提交 HTTP Post。我包含了包含 RequestEntity 类的 jar 文件 commons-httpclient-3.1
我正在尝试获取 http 请求的正文,但它似乎并不像听起来那么简单,当然除非我遗漏了什么。 我有一个 HttpRequest 的实例(来自 akka.http.javadsl.model ),从中我可
api调用的Java代码 我想知道如何测试下面两行代码。 private void api(){ //Code to call an API and i want to test this i
我是一名优秀的程序员,十分优秀!