Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework client SSL configuration in hashicorp-vault tests #6567

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package org.apache.camel.quarkus.component.hashicorp.vault.it;

import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.security.KeyStore;
import java.security.cert.CertificateFactory;
import java.security.cert.X509Certificate;

import javax.net.ssl.SSLContext;
import javax.net.ssl.TrustManagerFactory;

import io.quarkus.runtime.ShutdownEvent;
import io.quarkus.runtime.StartupEvent;
import jakarta.enterprise.context.ApplicationScoped;
import jakarta.enterprise.event.Observes;

@ApplicationScoped
public class HashicorpVaultClientSSL {
SSLContext originalContext;

void init(@Observes StartupEvent event) {
try (InputStream stream = Files.newInputStream(Paths.get("target/certs/hashicorp-vault-ca.crt"))) {
CertificateFactory certificateFactory = CertificateFactory.getInstance("X.509");
X509Certificate vaultCertificate = (X509Certificate) certificateFactory.generateCertificate(stream);

KeyStore vaultKeyStore = KeyStore.getInstance(KeyStore.getDefaultType());
vaultKeyStore.load(null, null);
vaultKeyStore.setCertificateEntry("hashicorp-vault", vaultCertificate);

TrustManagerFactory vaultTrustManagerFactory = TrustManagerFactory
.getInstance(TrustManagerFactory.getDefaultAlgorithm());
vaultTrustManagerFactory.init(vaultKeyStore);

SSLContext sslContext = SSLContext.getInstance("TLS");
sslContext.init(null, vaultTrustManagerFactory.getTrustManagers(), null);

originalContext = SSLContext.getDefault();
SSLContext.setDefault(sslContext);
} catch (Exception e) {
throw new RuntimeException(e);
}
}

void destroy(@Observes ShutdownEvent event) {
if (originalContext != null) {
SSLContext.setDefault(originalContext);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,7 @@
import java.util.List;
import java.util.Map;

import io.quarkus.runtime.ShutdownEvent;
import io.quarkus.runtime.StartupEvent;
import jakarta.enterprise.context.ApplicationScoped;
import jakarta.enterprise.event.Observes;
import jakarta.inject.Inject;
import jakarta.ws.rs.DELETE;
import jakarta.ws.rs.GET;
Expand All @@ -46,19 +43,6 @@ public class HashicorpVaultResource {
@Inject
ProducerTemplate producerTemplate;

void init(@Observes StartupEvent event) {
// spring-vault defaults to using HttpURLConnection as its 'client' so we have to configure SSL with system properties
System.setProperty("javax.net.ssl.trustStoreType", "PKCS12");
System.setProperty("javax.net.ssl.trustStore", "target/certs/hashicorp-vault-truststore.p12");
System.setProperty("javax.net.ssl.trustStorePassword", "v431t");
}

void destroy(@Observes ShutdownEvent event) {
System.clearProperty("javax.net.ssl.trustStoreType");
System.clearProperty("javax.net.ssl.trustStore");
System.clearProperty("javax.net.ssl.trustStorePassword");
}

@Path("/secret")
@POST
public Response createSecret(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import static org.hamcrest.Matchers.is;

@TestCertificates(certificates = {
@Certificate(name = "hashicorp-vault", formats = { Format.PEM, Format.PKCS12 }, password = "v431t")
@Certificate(name = "hashicorp-vault", formats = { Format.PEM }, password = "v431t")
}, docker = true)
@QuarkusTest
@QuarkusTestResource(HashicorpVaultTestResource.class)
Expand Down