spring-boot/spring-boot-samples/spring-boot-sample-hypermed.../src/test/java/sample/hypermedia/ui/SampleHypermediaUiApplicati...

82 lines
2.8 KiB
Java
Raw Normal View History

2015-07-06 11:06:44 +08:00
/*
* Copyright 2012-2016 the original author or authors.
2015-07-06 11:06:44 +08:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2015-07-06 11:06:44 +08:00
package sample.hypermedia.ui;
import java.net.URI;
import java.util.Arrays;
import org.junit.Test;
import org.junit.runner.RunWith;
2016-03-14 21:19:55 +08:00
import org.springframework.boot.context.web.LocalServerPort;
import org.springframework.boot.test.SpringApplicationConfiguration;
import org.springframework.boot.test.TestRestTemplate;
import org.springframework.boot.test.WebIntegrationTest;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.MediaType;
import org.springframework.http.RequestEntity;
import org.springframework.http.ResponseEntity;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import static org.assertj.core.api.Assertions.assertThat;
2015-07-06 11:06:44 +08:00
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(SampleHypermediaUiApplication.class)
@WebIntegrationTest(value = { "management.context-path=" }, randomPort = true)
2015-07-06 11:06:44 +08:00
public class SampleHypermediaUiApplicationTests {
2016-03-14 21:19:55 +08:00
@LocalServerPort
private int port;
@Test
public void home() {
2015-10-08 14:37:10 +08:00
String response = new TestRestTemplate()
.getForObject("http://localhost:" + this.port, String.class);
assertThat(response).contains("Hello World");
}
@Test
public void links() {
2015-10-08 14:37:10 +08:00
String response = new TestRestTemplate().getForObject(
"http://localhost:" + this.port + "/actuator", String.class);
assertThat(response).contains("\"_links\":");
}
@Test
public void linksWithJson() throws Exception {
HttpHeaders headers = new HttpHeaders();
headers.setAccept(Arrays.asList(MediaType.APPLICATION_JSON));
ResponseEntity<String> response = new TestRestTemplate().exchange(
2015-10-08 14:37:10 +08:00
new RequestEntity<Void>(headers, HttpMethod.GET,
new URI("http://localhost:" + this.port + "/actuator")),
String.class);
assertThat(response.getBody()).contains("\"_links\":");
}
@Test
public void homeWithHtml() throws Exception {
HttpHeaders headers = new HttpHeaders();
headers.setAccept(Arrays.asList(MediaType.TEXT_HTML));
2015-10-08 14:37:10 +08:00
ResponseEntity<String> response = new TestRestTemplate()
.exchange(new RequestEntity<Void>(headers, HttpMethod.GET,
new URI("http://localhost:" + this.port)), String.class);
assertThat(response.getBody()).contains("Hello World");
}
}