This is an automated email from the ASF dual-hosted git repository.
zhfeng pushed a change to branch 3.8.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
from f9280fea75 Fix MockBackendUtils native mode config resolution of
CAMEL_QUARKUS_START_MOCK_BACKEND
new ed4680643e Use certificate-generator for gRPC integration tests
new be45a5b769 Changed default location of generated certificates to
target/certs + change of configuration of ssl
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../component/http/common/CommonProducers.java | 4 +--
.../src/main/resources/application.properties | 4 +--
.../component/http/netty/it/NettyHttpTest.java | 6 ++++
.../test/support/certificate/CertificatesUtil.java | 20 ++++++++++--
.../component/sftp/it/SftpTestResource.java | 5 +--
integration-tests/grpc/README.adoc | 38 ----------------------
integration-tests/grpc/pom.xml | 5 +++
.../camel/quarkus/component/grpc/it/GrpcRoute.java | 12 ++++---
.../grpc/src/main/resources/application.properties | 2 +-
.../grpc/src/main/resources/certs/ca-openssl.conf | 18 ----------
.../grpc/src/main/resources/certs/ca.key | 27 ---------------
.../grpc/src/main/resources/certs/ca.pem | 20 ------------
.../grpc/src/main/resources/certs/client.key | 28 ----------------
.../grpc/src/main/resources/certs/client.pem | 20 ------------
.../grpc/src/main/resources/certs/server.key | 28 ----------------
.../grpc/src/main/resources/certs/server.pem | 20 ------------
.../camel/quarkus/component/grpc/it/GrpcTest.java | 15 ++++++---
.../camel/quarkus/kafka/ssl/KafkaSslTest.java | 2 +-
.../component/lumberjack/it/LumberjackRoutes.java | 2 +-
.../src/main/resources/application.properties | 2 +-
.../lumberjack/it/LumberjackClientUtil.java | 8 +++--
.../quarkus/component/mail/MailTestResource.java | 3 +-
.../quarkus/component/nats/it/NatsRoutes.java | 4 +--
.../component/nats/it/NatsTestResource.java | 10 +++---
.../quarkus/component/netty/NettyProducers.java | 4 +--
.../src/main/resources/application.properties | 5 ++-
.../component/oaipmh/it/MockOaipmhServer.java | 4 +--
.../component/paho/mqtt5/it/PahoMqtt5Resource.java | 5 +--
.../paho/mqtt5/it/PahoMqtt5TestResource.java | 14 ++++----
.../camel/quarkus/component/paho/PahoResource.java | 9 +++--
.../component/paho/it/PahoTestResource.java | 11 +++++--
.../platform/http/proxy/ssl/it/Routes.java | 4 +--
.../src/main/resources/application.properties | 19 -----------
.../PlatformHttpSSLTestResource.java | 2 +-
.../src/main/resources/application.properties | 6 ++--
.../component/http/server/it/PlatformHttpTest.java | 2 +-
.../vertx/websocket/it/VertxWebsocketResource.java | 2 +-
.../src/main/resources/application.properties | 2 +-
.../it/VertxWebsocketClientSslProvider.java | 23 +++++++++----
.../vertx/websocket/it/VertxWebsocketSslTest.java | 2 +-
.../websocket/it/VertxWebsocketSslTestProfile.java | 4 +--
41 files changed, 131 insertions(+), 290 deletions(-)
delete mode 100644 integration-tests/grpc/README.adoc
delete mode 100644
integration-tests/grpc/src/main/resources/certs/ca-openssl.conf
delete mode 100644 integration-tests/grpc/src/main/resources/certs/ca.key
delete mode 100644 integration-tests/grpc/src/main/resources/certs/ca.pem
delete mode 100644 integration-tests/grpc/src/main/resources/certs/client.key
delete mode 100644 integration-tests/grpc/src/main/resources/certs/client.pem
delete mode 100644 integration-tests/grpc/src/main/resources/certs/server.key
delete mode 100644 integration-tests/grpc/src/main/resources/certs/server.pem
delete mode 100644
integration-tests/platform-http-proxy-ssl/src/main/resources/application.properties