You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2022/12/06 12:35:53 UTC

[camel] branch regen_bot updated (a5965585fe9 -> a0ca48859d9)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git


    from a5965585fe9 (chores) docs: move the blueprint archetype information to Camel Karaf
     add d27a54c4685 CAMEL-18792: camel-hdfs - Make integration tests runnable without a real cluster
     add a0ca48859d9 Introduce MiniDFSCluster to the HDFS test-infra

No new revisions were added by this update.

Summary of changes:
 .../component/hdfs/integration/HdfsAppendIT.java   |  37 +--
 .../integration/HdfsConsumerIntegrationIT.java     | 339 ++++++++++-----------
 ...java => HdfsProducerConsumerIntegrationIT.java} |  62 ++--
 test-infra/camel-test-infra-hdfs/pom.xml           |  30 ++
 .../test/infra/hdfs/v2/common/HDFSProperties.java  |   2 -
 .../v2/services/ContainerLocalHDFSService.java     |  66 +---
 .../infra/hdfs/v2/services/DataNodeContainer.java  |  91 ------
 .../test/infra/hdfs/v2/services/HDFSContainer.java |  62 ++++
 .../test/infra/hdfs/v2/services/HDFSPorts.java     |  31 --
 .../infra/hdfs/v2/services/HDFSServiceFactory.java |  47 ++-
 .../hdfs/v2/services/HadoopBaseContainer.java      |  47 ---
 .../infra/hdfs/v2/services/NameNodeContainer.java  |  48 ---
 .../infra/hdfs/v2/services/RemoteHDFSService.java  |  54 ----
 .../camel/test/infra/hdfs/v2/services/Dockerfile   |  61 ----
 .../test/infra/hdfs/v2/services/core-site.xml      |  27 --
 .../test/infra/hdfs/v2/services/hdfs-site.xml      |  48 ---
 .../test/infra/hdfs/v2/services/run-datanode.sh    |  19 --
 .../test/infra/hdfs/v2/services/run-namenode.sh    |  23 --
 18 files changed, 362 insertions(+), 732 deletions(-)
 rename components/camel-hdfs/src/test/java/org/apache/camel/component/hdfs/integration/{HdfsProducerConsumerIntegrationManualIT.java => HdfsProducerConsumerIntegrationIT.java} (60%)
 delete mode 100644 test-infra/camel-test-infra-hdfs/src/test/java/org/apache/camel/test/infra/hdfs/v2/services/DataNodeContainer.java
 create mode 100644 test-infra/camel-test-infra-hdfs/src/test/java/org/apache/camel/test/infra/hdfs/v2/services/HDFSContainer.java
 delete mode 100644 test-infra/camel-test-infra-hdfs/src/test/java/org/apache/camel/test/infra/hdfs/v2/services/HDFSPorts.java
 delete mode 100644 test-infra/camel-test-infra-hdfs/src/test/java/org/apache/camel/test/infra/hdfs/v2/services/HadoopBaseContainer.java
 delete mode 100644 test-infra/camel-test-infra-hdfs/src/test/java/org/apache/camel/test/infra/hdfs/v2/services/NameNodeContainer.java
 delete mode 100644 test-infra/camel-test-infra-hdfs/src/test/java/org/apache/camel/test/infra/hdfs/v2/services/RemoteHDFSService.java
 delete mode 100644 test-infra/camel-test-infra-hdfs/src/test/resources/org/apache/camel/test/infra/hdfs/v2/services/Dockerfile
 delete mode 100644 test-infra/camel-test-infra-hdfs/src/test/resources/org/apache/camel/test/infra/hdfs/v2/services/core-site.xml
 delete mode 100644 test-infra/camel-test-infra-hdfs/src/test/resources/org/apache/camel/test/infra/hdfs/v2/services/hdfs-site.xml
 delete mode 100755 test-infra/camel-test-infra-hdfs/src/test/resources/org/apache/camel/test/infra/hdfs/v2/services/run-datanode.sh
 delete mode 100755 test-infra/camel-test-infra-hdfs/src/test/resources/org/apache/camel/test/infra/hdfs/v2/services/run-namenode.sh