我正在尝试使用 Wink RestClient 对 Rest 服务端点进行功能测试。我使用模拟进行单元测试,但我想将其作为端点消费者进行功能测试。
我知道有些人会反对我在使用基于表单的身份验证时将其称为 REST 端点,但这是我目前的架构。
我要测试的大部分资源都是受保护的资源,并且应用程序(在 Tomcat6 上运行)受表单身份验证的保护。(如下面的 web.xml 片段)。
到目前为止,我尝试的是对未受保护的资源进行初始调用,以获取包含 JSESSIONID 的 set-cookie 标头,并在后续请求中的标头(通过 Resource.cookie() )中使用该 JSESSIONID,但是不结果子。
web.xml
<login-config>
<auth-method>FORM</auth-method>
<form-login-config>
<form-login-page>/login.html</form-login-page>
<form-error-page>/login.html?failure=true</form-error-page>
</form-login-config>
</login-config>
我的 Wink RestClient 代码如下所示。所有响应都是 200,但我注意到两件事是对 /j_security_check/ 的调用的响应不包括 jsessionid cookie,对受保护资源的调用说我登录失败。调用 j_security_check 的有效负载是直接从拦截的先前成功的浏览器请求中捕获的。
ClientConfig config = new ClientConfig();
config.setBypassHostnameVerification(true);
RestClient restClient = new RestClient(config);
Resource unprotectedResource = restClient.resource( BASE_URL + "/");
unprotectedResource.header( "Accept", "*/*" );
ClientResponse clientResponse = unprotectedResource.get();
String response = clientResponse.getEntity(String.class);
// get jSession ID
String jSessionId = clientResponse.getHeaders().get("set-cookie").get(0);
jSessionId = jSessionId.split(";")[0];
System.out.println(jSessionId);
// create a request to login via j_security_check
Resource loginResource = restClient.resource(BASE_URL + "/j_security_check/");
loginResource.accept("text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8");
loginResource.header("referer", "http://localhost:8080/contextroot/");
loginResource.cookie( jSessionId );
loginResource.header("Connection", "keep-alive");
loginResource.header("Content-Type", "application/x-www-form-urlencoded");
loginResource.header("Content-Length", "41");
ClientResponse loginResponse = loginResource.post("j_username=*****&j_password=*************");
/* the loginResponse, as this point, does not have the jsessionid cookie, my browser client does */
Resource protectedResource = restClient.resource(BASE_URL + "/protected/test/");
systemResource.accept("application/json");
systemResource.cookie( jSessionId );
ClientResponse systemResponse = systemResource.get();
response = clientResponse.getEntity(String.class);
System.out.println(response);
任何有关使用 Wink RestClient 行使受表单身份验证保护的资源的想法或经验将不胜感激。我想我会接受其他框架,我听说过 REST-Assured 和其他框架,但是由于应用程序使用 Wink 并且 RestClient 似乎为我提供了我需要的东西,我想我会坚持下去。