This is an automated email from the ASF dual-hosted git repository. orpiske pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
from d537cc7e089 camel-jbang - Add reset-stats command new dea274f3a9c CAMEL-18456: created a test infra module for embedded Jetty new 0398b41c1b3 CAMEL-18456: converted camel-ahc-ws tests to camel-test-infra-jetty 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: components/camel-ahc-ws/pom.xml | 33 +++--- .../component/ahc/ws/WsProducerConsumerTest.java | 62 ++++------- .../camel/component/ahc/ws/WsProducerTest.java | 26 +++-- .../camel/component/ahc/ws/WsProducerTestBase.java | 44 +------- .../ahc/ws/WsProducerUsingStreamingTest.java | 27 ++++- .../camel/component/ahc/ws/WssProducerTest.java | 46 +++++--- .../src/test/resources/log4j2.properties | 3 + test-infra/camel-test-infra-jetty/pom.xml | 70 ++++++++++++ .../src/main/resources/META-INF/MANIFEST.MF | 0 .../test/infra/jetty/common/JettyProperties.java | 22 ++-- .../infra/jetty/services/JettyConfiguration.java | 117 +++++++++++++++++++ .../jetty/services/JettyConfigurationBuilder.java | 75 +++++++++++++ .../infra/jetty/services/JettyEmbeddedService.java | 124 +++++++++++++++++++++ .../test/infra/jetty/services/JettyService.java | 41 ++++--- test-infra/pom.xml | 1 + 15 files changed, 527 insertions(+), 164 deletions(-) create mode 100644 test-infra/camel-test-infra-jetty/pom.xml copy {init/camel-bundle-plugin => test-infra/camel-test-infra-jetty}/src/main/resources/META-INF/MANIFEST.MF (100%) copy components/camel-ahc-ws/src/test/java/org/apache/camel/component/ahc/ws/WsProducerTest.java => test-infra/camel-test-infra-jetty/src/test/java/org/apache/camel/test/infra/jetty/common/JettyProperties.java (64%) create mode 100644 test-infra/camel-test-infra-jetty/src/test/java/org/apache/camel/test/infra/jetty/services/JettyConfiguration.java create mode 100644 test-infra/camel-test-infra-jetty/src/test/java/org/apache/camel/test/infra/jetty/services/JettyConfigurationBuilder.java create mode 100644 test-infra/camel-test-infra-jetty/src/test/java/org/apache/camel/test/infra/jetty/services/JettyEmbeddedService.java copy components/camel-ahc-ws/src/test/java/org/apache/camel/component/ahc/ws/WsProducerUsingStreamingTest.java => test-infra/camel-test-infra-jetty/src/test/java/org/apache/camel/test/infra/jetty/services/JettyService.java (53%)