我正在尝试为Play 2.1.0的控制器方法编写测试用例。该方法接收一个XML对象,执行一些操作并根据XML返回OK或BAD_REQUEST,其中有一部分:
@BodyParser.Of(BodyParser.Xml.class)
public static Result save() {
Document dom = request().body().asXml();
System.out.println(request().body());
if (dom == null) {
return badRequest(error.render("Se esperaba Xml"));
} else {
...
当我尝试使用curl进行测试时,它可以正常工作:
$ curl --header "Content-type: text/xml" --request POST --data '<gloo>Guillaume</gloo>' -verbose http://localhost:9000/api/xml/
* About to connect() to localhost port 9000 (#0)
* Trying 127.0.0.1...
* Connected to localhost (127.0.0.1) port 9000 (#0)
> POST /api/xml/ HTTP/1.1
> User-Agent: curl/7.29.0
> Host: localhost:9000
> Accept: */*
> Referer: rbose
> Content-type: text/xml
> Content-Length: 22
>
* upload completely sent off: 22 out of 22 bytes
< HTTP/1.1 200 OK
< Content-Type: text/xml; charset=utf-8
< Content-Length: 89
<
* Connection #0 to host localhost left intact
<?xml version="1.0" encoding="utf-8"?><gloo>dd8d191c-8a27-4dad-a624-1c5a6a5d9d03</gloo>
但是当我尝试测试时,看起来我将错误的XML传递给控制器。这是我的测试用例:
@Test
public void saveActionRespondsOkOnValidContent() {
running(fakeApplication(), new Runnable() {
public void run() {
Result result = route(fakeRequest(POST, "/api/xml/")
.withHeader(CONTENT_TYPE, "text/xml").withTextBody(
"<gloo>Probando el API xml</gloo>"));
System.out.println(contentAsString(result));
assertThat(status(result)).isEqualTo(OK);
assertThat(contentType(result)).isEqualTo("text/xml");
assertThat(contentAsString(result)).isNotEmpty();
}
});
}
这就是我在运行“游戏测试”时得到的结果:
...
DefaultRequestBody(None,None,None,None,None,None,true)
<?xml version="1.0" encoding="utf-8"?><gloo>Se esperaba Xml</gloo>
[error] Test api.XmlApiTests.saveActionRespondsOkOnValidContent failed: expected:<[2]00> but was:<[4]00>
...
第一行由控制器跟踪,称没有XML。 第二个是由测试用例跟踪,说明收到的错误消息。 第三个是我的测试用例失败:我在等待OK时收到BAD_REQUEST。
所以我的问题(最后)是: 如何编写一个将有效XML发送到我的方法的测试用例?
答案 0 :(得分:0)
withXmlBody
中的方法FakeRequest
似乎有记录here。使用该方法代替withTextBody
应该会有所帮助。
另一件要尝试的事情(我自己没有对此进行测试)是将Content-Type
更改为application/xml