2014-11-14 16:20:14 +08:00
|
|
|
/*
|
2016-02-25 20:09:42 +08:00
|
|
|
* Copyright 2012-2016 the original author or authors.
|
2014-11-14 16:20:14 +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-06-23 15:47:12 +08:00
|
|
|
package sample.undertow.ssl;
|
2014-11-14 16:20:14 +08:00
|
|
|
|
|
|
|
|
import org.apache.http.client.HttpClient;
|
|
|
|
|
import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
|
|
|
|
|
import org.apache.http.conn.ssl.TrustSelfSignedStrategy;
|
|
|
|
|
import org.apache.http.impl.client.HttpClients;
|
2015-06-23 15:47:12 +08:00
|
|
|
import org.apache.http.ssl.SSLContextBuilder;
|
2014-11-14 16:20:14 +08:00
|
|
|
import org.junit.Test;
|
|
|
|
|
import org.junit.runner.RunWith;
|
2015-10-20 03:23:14 +08:00
|
|
|
|
2016-03-14 21:19:55 +08:00
|
|
|
import org.springframework.boot.context.web.LocalServerPort;
|
2014-11-14 16:20:14 +08:00
|
|
|
import org.springframework.boot.test.SpringApplicationConfiguration;
|
|
|
|
|
import org.springframework.boot.test.TestRestTemplate;
|
2015-10-24 11:46:49 +08:00
|
|
|
import org.springframework.boot.test.WebIntegrationTest;
|
2014-11-14 16:20:14 +08:00
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
|
|
import org.springframework.http.ResponseEntity;
|
|
|
|
|
import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
|
|
|
|
|
import org.springframework.test.annotation.DirtiesContext;
|
|
|
|
|
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
|
|
|
|
2016-02-07 06:53:10 +08:00
|
|
|
import static org.assertj.core.api.Assertions.assertThat;
|
2014-11-14 16:20:14 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Basic integration tests for demo application.
|
|
|
|
|
*
|
2014-11-19 05:00:28 +08:00
|
|
|
* @author Ivan Sopov
|
2014-11-14 16:20:14 +08:00
|
|
|
*/
|
|
|
|
|
@RunWith(SpringJUnit4ClassRunner.class)
|
2015-07-31 21:15:27 +08:00
|
|
|
@SpringApplicationConfiguration(SampleUndertowSslApplication.class)
|
2015-10-24 11:46:49 +08:00
|
|
|
@WebIntegrationTest(randomPort = true)
|
2014-11-14 16:20:14 +08:00
|
|
|
@DirtiesContext
|
|
|
|
|
public class SampleUndertowSslApplicationTests {
|
|
|
|
|
|
2016-03-14 21:19:55 +08:00
|
|
|
@LocalServerPort
|
2014-11-14 16:20:14 +08:00
|
|
|
private int port;
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void testHome() throws Exception {
|
|
|
|
|
SSLConnectionSocketFactory socketFactory = new SSLConnectionSocketFactory(
|
2015-10-08 14:32:31 +08:00
|
|
|
new SSLContextBuilder()
|
|
|
|
|
.loadTrustMaterial(null, new TrustSelfSignedStrategy()).build());
|
2014-11-14 16:20:14 +08:00
|
|
|
|
|
|
|
|
HttpClient httpClient = HttpClients.custom().setSSLSocketFactory(socketFactory)
|
|
|
|
|
.build();
|
|
|
|
|
|
|
|
|
|
TestRestTemplate testRestTemplate = new TestRestTemplate();
|
|
|
|
|
((HttpComponentsClientHttpRequestFactory) testRestTemplate.getRequestFactory())
|
|
|
|
|
.setHttpClient(httpClient);
|
2015-10-08 14:32:31 +08:00
|
|
|
ResponseEntity<String> entity = testRestTemplate
|
|
|
|
|
.getForEntity("https://localhost:" + this.port, String.class);
|
2016-02-07 06:53:10 +08:00
|
|
|
assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.OK);
|
|
|
|
|
assertThat(entity.getBody()).isEqualTo("Hello World");
|
2014-11-14 16:20:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|