This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a change to branch multi-engines-test
in repository https://gitbox.apache.org/repos/asf/camel.git
discard d1f2100e2d1 CAMEL-20775 - Added some tests for Hashicorp Vault and
multiple engines
omit dcf973bc4d2 CAMEL-20775 - camel-hashicorp-vault - configure multiple
engines
omit 0ef5dc8503c CAMEL-20775 - camel-hashicorp-vault - configure multiple
engines
omit 8596a8e1e66 CAMEL-20775 - camel-hashicorp-vault - configure multiple
engines
add 619224c8105 CAMEL-20775 - camel-hashicorp-vault - configure multiple
engines (#14198)
add d9337b1f874 CAMEL-20785: cleanup useless references to
createCamelRegistry
add ca35770f8af (chores) camel-mail: separate test setup from execution
add ec9b96842b1 CAMEL-20785: cleanup useless overrides
add 447870f4be4 CAMEL-20785: avoid tightly coupling to startCamelContext
add 468c699f65a CAMEL-20789: Download binary content of Secret or Config
Map in property resolver (#14195)
new 127cac7516a CAMEL-20775 - Added some tests for Hashicorp Vault and
multiple engines
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (d1f2100e2d1)
\
N -- N -- N refs/heads/multi-engines-test (127cac7516a)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 1 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:
.../cassandra/CassandraCamelCodecTest.java | 6 +--
.../camel/component/fhir/FhirConfigurationIT.java | 3 +-
.../apache/camel/component/fhir/FhirCreateIT.java | 10 +----
.../apache/camel/component/fhir/FhirSimpleIT.java | 16 -------
.../google/drive/DriveConfigurationTest.java | 2 +-
.../google/mail/GmailConfigurationTest.java | 2 +-
.../google/sheets/SheetsConfigurationTest.java | 2 +-
.../jira/producer/DeleteIssueProducerTest.java | 5 ---
.../jira/producer/TransitionIssueProducerTest.java | 5 ---
.../camel/properties-function/configmap-binary | 2 +
.../apache/camel/properties-function/secret-binary | 2 +
...n.java => BaseConfigMapPropertiesFunction.java} | 10 +----
.../properties/BasePropertiesFunction.java | 24 +++++++++-
...tion.java => BaseSecretPropertiesFunction.java} | 12 ++---
.../ConfigMapBinaryPropertiesFunction.java | 29 ++++++++++++
.../properties/ConfigMapPropertiesFunction.java | 44 +-----------------
.../properties/SecretBinaryPropertiesFunction.java | 29 ++++++++++++
.../properties/SecretPropertiesFunction.java | 44 +-----------------
.../kubernetes/KubernetesTestSupport.java | 5 +++
...ConfigMapBinaryMountPropertiesFunctionTest.java | 49 +++++++++++++++++++++
.../ConfigMapPropertiesFunctionLocalModeTest.java | 17 +++++++
.../ConfigMapPropertiesFunctionRouteTest.java | 23 +++++++++-
.../ConfigMapPropertiesFunctionTest.java | 2 +-
.../SecretBinaryMountPropertiesFunctionTest.java | 48 ++++++++++++++++++++
.../SecretPropertiesFunctionRouteTest.java | 18 +++++++-
.../src/test/resources/binary-example/binary.bin | Bin 0 -> 256 bytes
.../camel/component/mail/MailDisconnectTest.java | 27 +++++++++---
.../camel/component/netty/NettyRedeliveryTest.java | 2 +-
.../sql/stored/CallableStatementWrapperTest.java | 5 +--
.../camel/component/sql/stored/ParserTest.java | 6 +--
.../aggregate/jdbc/JdbcCamelCodecTest.java | 6 +--
.../ROOT/pages/using-propertyplaceholder.adoc | 15 ++++++-
32 files changed, 304 insertions(+), 166 deletions(-)
create mode 100644
components/camel-kubernetes/src/generated/resources/META-INF/services/org/apache/camel/properties-function/configmap-binary
create mode 100644
components/camel-kubernetes/src/generated/resources/META-INF/services/org/apache/camel/properties-function/secret-binary
copy
components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/properties/{ConfigMapPropertiesFunction.java
=> BaseConfigMapPropertiesFunction.java} (88%)
copy
components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/properties/{SecretPropertiesFunction.java
=> BaseSecretPropertiesFunction.java} (88%)
create mode 100644
components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/properties/ConfigMapBinaryPropertiesFunction.java
create mode 100644
components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/properties/SecretBinaryPropertiesFunction.java
create mode 100644
components/camel-kubernetes/src/test/java/org/apache/camel/component/kubernetes/properties/ConfigMapBinaryMountPropertiesFunctionTest.java
create mode 100644
components/camel-kubernetes/src/test/java/org/apache/camel/component/kubernetes/properties/SecretBinaryMountPropertiesFunctionTest.java
create mode 100644
components/camel-kubernetes/src/test/resources/binary-example/binary.bin