2015-02-27 13:27:36 +00:00
|
|
|
|
### 35.4.4. TestRestTemplate
|
|
|
|
|
|
|
|
|
|
TestRestTemplate是一个方便进行集成测试的Spring RestTemplate子类。你会获取到一个普通的模板或一个发送基本HTTP认证(使用用户名和密码)的模板。在任何情况下,这些模板都表现出对测试友好:不允许重定向(这样你可以对响应地址进行断言),忽略cookies(这样模板就是无状态的),对于服务端错误不会抛出异常。推荐使用Apache HTTP Client(4.3.2或更好的版本),但不强制这样做。如果在classpath下存在Apache HTTP Client,TestRestTemplate将以正确配置的client进行响应。
|
|
|
|
|
```java
|
|
|
|
|
public class MyTest {
|
|
|
|
|
RestTemplate template = new TestRestTemplate();
|
|
|
|
|
@Test
|
|
|
|
|
public void testRequest() throws Exception {
|
|
|
|
|
HttpHeaders headers = template.getForEntity("http://myhost.com", String.class).getHeaders();
|
|
|
|
|
assertThat(headers.getLocation().toString(), containsString("myotherhost"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|