|
| 1 | +/* |
| 2 | + * Copyright 2012-2016 the original author or authors. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +package sample.tomcat.ssl; |
| 18 | + |
| 19 | +import org.junit.Test; |
| 20 | +import org.junit.runner.RunWith; |
| 21 | + |
| 22 | +import org.springframework.boot.context.embedded.LocalServerPort; |
| 23 | +import org.springframework.boot.test.context.SpringBootTest; |
| 24 | +import org.springframework.boot.test.context.SpringBootTest.WebEnvironment; |
| 25 | +import org.springframework.boot.test.web.client.TestRestTemplate; |
| 26 | +import org.springframework.boot.test.web.client.TestRestTemplate.HttpClientOption; |
| 27 | +import org.springframework.http.HttpStatus; |
| 28 | +import org.springframework.http.ResponseEntity; |
| 29 | +import org.springframework.test.annotation.DirtiesContext; |
| 30 | +import org.springframework.test.context.junit4.SpringRunner; |
| 31 | + |
| 32 | +import static org.assertj.core.api.Assertions.assertThat; |
| 33 | + |
| 34 | +@RunWith(SpringRunner.class) |
| 35 | +@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT) |
| 36 | +@DirtiesContext |
| 37 | +public class SampleTomcatSslApplicationTests { |
| 38 | + |
| 39 | + @LocalServerPort |
| 40 | + private int port; |
| 41 | + |
| 42 | + @Test |
| 43 | + public void testHome() throws Exception { |
| 44 | + TestRestTemplate testRestTemplate = new TestRestTemplate(HttpClientOption.SSL); |
| 45 | + ResponseEntity<String> entity = testRestTemplate |
| 46 | + .getForEntity("https://localhost:" + this.port, String.class); |
| 47 | + assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.OK); |
| 48 | + assertThat(entity.getBody()).isEqualTo("Hello, world"); |
| 49 | + } |
| 50 | + |
| 51 | +} |
0 commit comments