Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
spencergibb committed Dec 16, 2024
1 parent 84009f2 commit d087a97
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ protected HttpClientProperties.Ssl getSslProperties() {
}

protected SslBundle getBundle() {
if (ssl.getSslBundle() != null && ssl.getSslBundle().length() > 0 && bundles.getBundleNames().contains(ssl.getSslBundle())) {
if (ssl.getSslBundle() != null && ssl.getSslBundle().length() > 0
&& bundles.getBundleNames().contains(ssl.getSslBundle())) {
return bundles.getBundle(ssl.getSslBundle());
}
return null;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,33 +1,52 @@
/*
* Copyright 2013-2023 the original author or authors.
*
* 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
*
* https://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.
*/

package org.springframework.cloud.gateway.test.ssl;

import io.netty.handler.ssl.SslContextBuilder;
import io.netty.handler.ssl.util.InsecureTrustManagerFactory;
import org.junit.jupiter.api.BeforeEach;
import reactor.netty.http.client.HttpClient;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.ssl.SslBundles;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.client.reactive.ReactorClientHttpConnector;
import org.springframework.test.annotation.DirtiesContext;
import org.springframework.test.context.ActiveProfiles;
import reactor.netty.http.client.HttpClient;

import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT;

@SpringBootTest(webEnvironment = RANDOM_PORT)
@DirtiesContext
@ActiveProfiles("client-auth-ssl-bundle")
public class ClientCertAuthSSLBundleTests extends SingleCertSSLTests {

@Autowired
private SslBundles sslBundles;

@BeforeEach
public void setup() throws Exception {
final var sslBundle = sslBundles.getBundle("scg-keystore-with-different-key-password");
final var sslContext = SslContextBuilder.forClient()
.trustManager(InsecureTrustManagerFactory.INSTANCE)
.keyManager(sslBundle.getManagers().getKeyManagerFactory())
.build();
.trustManager(InsecureTrustManagerFactory.INSTANCE)
.keyManager(sslBundle.getManagers().getKeyManagerFactory())
.build();
HttpClient httpClient = HttpClient.create().secure(ssl -> ssl.sslContext(sslContext));
setup(new ReactorClientHttpConnector(httpClient), "https://localhost:" + port);
}

}

0 comments on commit d087a97

Please sign in to comment.