This is an automated email from the ASF dual-hosted git repository.
orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 87d2cef CAMEL-17662: make the test-infra documentation more visible
to the end users
87d2cef is described below
commit 87d2cef17c5a4d808853e058fca3e90434320c80
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Wed Feb 9 13:53:06 2022 +0100
CAMEL-17662: make the test-infra documentation more visible to the end users
---
.../user-manual/modules/ROOT/pages/test-infra.adoc | 65 +++---
docs/user-manual/modules/ROOT/pages/testing.adoc | 6 +-
test-infra/README.md | 220 +--------------------
3 files changed, 37 insertions(+), 254 deletions(-)
diff --git a/test-infra/README.md
b/docs/user-manual/modules/ROOT/pages/test-infra.adoc
similarity index 72%
copy from test-infra/README.md
copy to docs/user-manual/modules/ROOT/pages/test-infra.adoc
index 7192c91..51129ec 100644
--- a/test-infra/README.md
+++ b/docs/user-manual/modules/ROOT/pages/test-infra.adoc
@@ -1,6 +1,6 @@
-# Test Infrastructure
+= Test Infrastructure
-## Simulating the Test Infrastructure
+== Simulating the Test Infrastructure
One of the first steps when implementing a new test, is to identify how to
simulate infrastructure required for it to
run. The test-infra module provides a reusable library of infrastructure that
can be used for that purpose.
@@ -10,7 +10,7 @@ and uses container images to simulate the environments.
Additionally, it may als
environments as well as, when available, embeddable components. This varies by
each component, and it is recommended to
check the code for additional details.
-## Implementing New Test Infrastructure Module
+== Implementing New Test Infrastructure Module
The test code abstracts the provisioning of test environments behind service
classes (i.e.: JMSService, JDBCService,
etc). The purpose of the service class is to abstract the both the type
service (i.e.: Kafka, Strimzi, etc) and
@@ -21,7 +21,7 @@ latency, slow backends, etc).
JUnit 5 manages the lifecycle of the services, therefore each service must be
a JUnit 5 compliant extension. The exact
extension point that a service must extend is specific to each service. The
JUnit 5
-[documentation](https://junit.org/junit5/docs/current/user-guide/) is the
reference for the extension points.
+https://junit.org/junit5/docs/current/user-guide[documentation] is the
reference for the extension points.
When a container image is not available via TestContainers, tests can provide
their own implementation using officially
available images. The license must be compatible with Apache 2.0. If an
official image is not available, a Dockerfile
@@ -31,17 +31,17 @@ whenever possible.
It is also possible to use embeddable components when required, although this
usually lead to more code and higher
maintenance.
-### Recommended Structure for Test Infrastructure Module
+=== Recommended Structure for Test Infrastructure Module
The service should provide an interface, named after the infrastructure being
implemented, and this interface should
-extend the
[TestService](./camel-test-infra-common/src/test/java/org/apache/camel/test/infra/common/services/TestService.java)
+extend the
https://github.com/apache/camel/blob/main/test-infra/camel-test-infra-common/src/test/java/org/apache/camel/test/infra/common/services/TestService.java[TestService]
interface. The services should try to minimize the test execution time and
resource usage when running. As such,
-the
[BeforeAllCallback](https://junit.org/junit5/docs/5.1.1/api/org/junit/jupiter/api/extension/BeforeAllCallback.html)
-and
[AfterAllCallback](https://junit.org/junit5/docs/5.1.1/api/org/junit/jupiter/api/extension/AfterAllCallback.html)
+the
https://junit.org/junit5/docs/5.1.1/api/org/junit/jupiter/api/extension/BeforeAllCallback.html[BeforeAllCallback]
+and
https://junit.org/junit5/docs/5.1.1/api/org/junit/jupiter/api/extension/AfterAllCallback.html[AfterAllCallback]
should be the preferred extensions whenever possible because they allow the
instance of the infrastructure to be static
throughout the test execution.
-*Note*: bear in mind that, according to the [JUnit 5
extension](https://junit.org/junit5/docs/5.1.1/api/org/junit/jupiter/api/extension/RegisterExtension.html)
+*Note*: bear in mind that, according to the
https://junit.org/junit5/docs/5.1.1/api/org/junit/jupiter/api/extension/RegisterExtension.html[JUnit
5 extension]
model, the time of initialization of the service may differ depending on
whether the service instance is declared as
static or not in the test class. As such, the code should make no assumptions
as to its time of initialization.
@@ -66,7 +66,7 @@ as `<name>.<parameter>`. More complex services may use the
builder available thr
the service accordingly.
-### Registering Properties
+=== Registering Properties
All services should register the properties, via `System.setProperty` that
allow access to the services. This is required
in order to resolve those properties when running tests using the Spring
framework. This registration allows the properties
@@ -74,7 +74,7 @@ to be resolved in Spring's XML files.
This registration is done in the `registerProperties` methods during the
service initialization.
-### Registering Properties Example:
+=== Registering Properties Example:
Registering the properties in the concrete service implementation:
@@ -99,23 +99,23 @@ Registering the properties in the concrete service
implementation:
}
```
-Then, when referring these properties in Camel routes or Spring XML
properties, you may use ```{{my.service.host}}```,
-```{{my.service.port}}``` and ```{{my.service.address}}```.
+Then, when referring these properties in Camel routes or Spring XML
properties, you may use `{{my.service.host}}`,
+`{{my.service.port}}` and `{{my.service.address}}`.
-### Packaging Recommendations
+=== Packaging Recommendations
This is test infrastructure code, therefore it should be package as test type
artifacts. The
-[parent pom](./camel-test-infra-parent) should provide all the necessary bits
for packaging the test infrastructure.
+https://github.com/apache/camel/blob/main/test-infra/camel-test-infra-parent[parent
pom] should provide all the necessary bits for packaging the test
infrastructure.
-## Using The New Test Infrastructure
+== Using The New Test Infrastructure
Using the test infra in a new component test is rather straightforward similar
to using any other reusable component.
You start by declaring the test infra dependencies in your pom file.
This should be similar to:
-```
+```xml
<!-- test infra -->
<dependency>
<groupId>org.apache.camel</groupId>
@@ -129,7 +129,7 @@ This should be similar to:
*Note*: on the dependencies above, the dependency version is set to
`${project.version}`. This should be adjusted to the
Camel version when used outside the Camel Core project.
-On the test class, add a member variable for the service and annotate it with
the
[@RegisterExtension](https://junit.org/junit5/docs/5.1.1/api/org/junit/jupiter/api/extension/RegisterExtension.html),
+On the test class, add a member variable for the service and annotate it with
the
https://junit.org/junit5/docs/5.1.1/api/org/junit/jupiter/api/extension/RegisterExtension.html[@RegisterExtension],
in order to let JUnit 5 manage its lifecycle.
```
@@ -171,42 +171,41 @@ Camel component:
```
-## Converting Camel TestContainers Code To The New Test Infrastructure
+== Converting Camel TestContainers Code To The New Test Infrastructure
Using the camel-nats as an example, we can compare how the base test class for
nats changed between
[3.6.x](https://github.com/apache/camel/blob/camel-3.6.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsTestSupport.java)
and
[3.7.x](https://github.com/apache/camel/blob/camel-3.7.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsTestSupport.java).
-The first conversion step is to remove the [camel-testcontainer
dependencies](https://github.com/apache/camel/blob/camel-3.6.0/components/camel-nats/pom.xml#L59-L63)
-and replace them with the ones from the [test-infra
module](https://github.com/apache/camel/blob/camel-3.7.0/components/camel-nats/pom.xml#L61-L75).
-Then, it's necessary to replace the [container handling code and the old base
class](https://github.com/apache/camel/blob/camel-3.6.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsTestSupport.java#L24-L45)
-with the [service provided in the
module](https://github.com/apache/camel/blob/camel-3.7.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsTestSupport.java#L26-L27).
+The first conversion step is to remove the
https://github.com/apache/camel/blob/camel-3.6.0/components/camel-nats/pom.xml#L59-L63[camel-testcontainer
dependencies]
+and replace them with the ones from the
https://github.com/apache/camel/blob/camel-3.7.0/components/camel-nats/pom.xml#L61-L75[test-infra
module].
+Then, it's necessary to replace the
https://github.com/apache/camel/blob/camel-3.6.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsTestSupport.java#L24-L45[container
handling code and the old base class]
+with the
https://github.com/apache/camel/blob/camel-3.7.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsTestSupport.java#L26-L27[service
provided in the module].
Then, we replace the base class. The `ContainerAwareTestSupport` class and
other similar classes from other
`camel-testcontainer` modules are not necessary and can be replaced with
`CamelTestSupport` or the spring based one
`CamelSpringTestSupport`.
With the base changes in place, the next step is to make sure that addresses
(URLs, hostnames, ports, etc) and
resources (usernames, passwords, tokens, etc) referenced during the test
execution, use the test-infra services. This
-may differ according to each service. Replacing the call to get the [service
URL](https://github.com/apache/camel/blob/camel-3.6.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsAuthConsumerLoadTest.java#L38)
-with the one provided by the new [test infra
service](https://github.com/apache/camel/blob/camel-3.7.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsAuthConsumerLoadTest.java#L38)
+may differ according to each service. Replacing the call to get the
https://github.com/apache/camel/blob/camel-3.6.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsAuthConsumerLoadTest.java#L38[service
URL]
+with the one provided by the new
https://github.com/apache/camel/blob/camel-3.7.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsAuthConsumerLoadTest.java#L38[test
infra service]
is a good example of this type of changes that may be necessary.
-In some cases, it may be necessary to adjust the variables used in [simple
language](https://github.com/apache/camel/blob/camel-3.6.0/components/camel-consul/src/test/resources/org/apache/camel/component/consul/cloud/SpringConsulRibbonServiceCallRouteTest.xml#L36)
-so that they match the [new property
format](https://github.com/apache/camel/blob/camel-3.7.0/components/camel-consul/src/test/resources/org/apache/camel/component/consul/cloud/SpringConsulRibbonServiceCallRouteTest.xml#L36)
-used in the test infra service.
+In some cases, it may be necessary to adjust the variables used in
https://github.com/apache/camel/blob/camel-3.6.0/components/camel-consul/src/test/resources/org/apache/camel/component/consul/cloud/SpringConsulRibbonServiceCallRouteTest.xml#L36[simple
language]
+so that they match the
https://github.com/apache/camel/blob/camel-3.7.0/components/camel-consul/src/test/resources/org/apache/camel/component/consul/cloud/SpringConsulRibbonServiceCallRouteTest.xml#L36[new
property format] used in the test infra service.
-There are some cases where the container instance requires [extra
customization](https://github.com/apache/camel/blob/camel-3.6.0/components/camel-pg-replication-slot/src/test/java/org/apache/camel/component/pg/replication/slot/integration/PgReplicationTestSupport.java#L31).
-Nonetheless, the migrated code still benefits from the [test-infra
approach](https://github.com/apache/camel/blob/camel-3.7.0/components/camel-pg-replication-slot/src/test/java/org/apache/camel/component/pg/replication/slot/integration/PgReplicationTestSupport.java#L31),
+There are some cases where the container instance requires
https://github.com/apache/camel/blob/camel-3.6.0/components/camel-pg-replication-slot/src/test/java/org/apache/camel/component/pg/replication/slot/integration/PgReplicationTestSupport.java#L31[extra
customization].
+Nonetheless, the migrated code still benefits from the
https://github.com/apache/camel/blob/camel-3.7.0/components/camel-pg-replication-slot/src/test/java/org/apache/camel/component/pg/replication/slot/integration/PgReplicationTestSupport.java#L31[test-infra
approach],
but this may be very specific to the test scenario.
-## Running With Podman
+== Running With Podman
Most of the test infrastructure in this module is based on containers.
Therefore, they will require a container runtime to run. Although the tests
have been written and tested using Docker, they should also work with
[Podman](https://podman.io/) (another popular container runtime on Linux
operating systems).
Assuming Podman is properly installed and configured to behave like docker
(i.e.: short name resolution, resolving docker.io registry, etc), the only
requirement for using Podman is to export the DOCKER_HOST variable before
running the tests.
-### Linux
+=== Linux
On most systems that should be similar to the following command:
@@ -214,7 +213,7 @@ On most systems that should be similar to the following
command:
export DOCKER_HOST=unix:///run/user/$UID/podman/podman.sock
```
-### OS X and Windows
+=== OS X and Windows
Running the test-infra with Podman on OS X and Windows should work on many
cases. However, it requires additional steps and has a few issues. Therefore,
it is not recommended at this time.
diff --git a/docs/user-manual/modules/ROOT/pages/testing.adoc
b/docs/user-manual/modules/ROOT/pages/testing.adoc
index eb081d1..a0af24d 100644
--- a/docs/user-manual/modules/ROOT/pages/testing.adoc
+++ b/docs/user-manual/modules/ROOT/pages/testing.adoc
@@ -31,8 +31,10 @@ class for all your configuration and routing without.
|xref:components:others:test-spring-junit5.adoc[camel-test-spring-junit5] |
*JUnit 5*: Used for testing Camel with Spring / Spring Boot
|xref:components:others:test-cdi.adoc[camel-test-cdi] | Used for testing Camel
on xref:components:others:cdi.adoc[CDI]
-|xref:components:others:testcontainers-junit5.adoc[camel-testcontainers-junit5]
| *JUnit 5*: Camel Testcontainers extends standard camel test support
providing a way to create and interact with containerized applications.
-|xref:components:others:testcontainers-spring-junit5.adoc[camel-testcontainers-spring-junit5]
| *JUnit 5*: Camel Testcontainers extends standard camel Spring test support
providing a way to create and interact with containerized applications.
+|xref:test-infra.adoc[camel-test-infra] | *Camel Test Infra*: Camel Test Infra
is a set of modules that leverage Test Containers and abstract the provisioning
and execution of test infrastructure. It is the successor of the
camel-testcontainers components.
+
+|xref:components:others:testcontainers-junit5.adoc[camel-testcontainers-junit5]
| *JUnit 5 (deprecated)*: Camel Testcontainers extends standard camel test
support providing a way to create and interact with containerized applications.
+|xref:components:others:testcontainers-spring-junit5.adoc[camel-testcontainers-spring-junit5]
| *JUnit 5 (deprecated)*: Camel Testcontainers extends standard camel Spring
test support providing a way to create and interact with containerized
applications.
|=======================================================================
diff --git a/test-infra/README.md b/test-infra/README.md
index 7192c91..da4adcd 100644
--- a/test-infra/README.md
+++ b/test-infra/README.md
@@ -1,221 +1,3 @@
# Test Infrastructure
-## Simulating the Test Infrastructure
-
-One of the first steps when implementing a new test, is to identify how to
simulate infrastructure required for it to
-run. The test-infra module provides a reusable library of infrastructure that
can be used for that purpose.
-
-In general, the integration test leverages the features provided by the
project [TestContainers](https://www.testcontainers.org/)
-and uses container images to simulate the environments. Additionally, it may
also support running the tests against remote
-environments as well as, when available, embeddable components. This varies by
each component, and it is recommended to
-check the code for additional details.
-
-## Implementing New Test Infrastructure Module
-
-The test code abstracts the provisioning of test environments behind service
classes (i.e.: JMSService, JDBCService,
-etc). The purpose of the service class is to abstract the both the type
service (i.e.: Kafka, Strimzi, etc) and
-the location of the service (i.e.: remote, local, embedded, etc). This
provides flexibility to test the code under
-different circumstances (i.e.: using a remote JMS broker or using a local JMS
broker running in a container managed by
-TestContainers). It makes it easier to hit edge cases as well as try different
operating scenarios (i.e.: higher
-latency, slow backends, etc).
-
-JUnit 5 manages the lifecycle of the services, therefore each service must be
a JUnit 5 compliant extension. The exact
-extension point that a service must extend is specific to each service. The
JUnit 5
-[documentation](https://junit.org/junit5/docs/current/user-guide/) is the
reference for the extension points.
-
-When a container image is not available via TestContainers, tests can provide
their own implementation using officially
-available images. The license must be compatible with Apache 2.0. If an
official image is not available, a Dockerfile
-to build the service can be provided. The Dockerfile should try to minimize
the container size and resource usage
-whenever possible.
-
-It is also possible to use embeddable components when required, although this
usually lead to more code and higher
-maintenance.
-
-### Recommended Structure for Test Infrastructure Module
-
-The service should provide an interface, named after the infrastructure being
implemented, and this interface should
-extend the
[TestService](./camel-test-infra-common/src/test/java/org/apache/camel/test/infra/common/services/TestService.java)
-interface. The services should try to minimize the test execution time and
resource usage when running. As such,
-the
[BeforeAllCallback](https://junit.org/junit5/docs/5.1.1/api/org/junit/jupiter/api/extension/BeforeAllCallback.html)
-and
[AfterAllCallback](https://junit.org/junit5/docs/5.1.1/api/org/junit/jupiter/api/extension/AfterAllCallback.html)
-should be the preferred extensions whenever possible because they allow the
instance of the infrastructure to be static
-throughout the test execution.
-
-*Note*: bear in mind that, according to the [JUnit 5
extension](https://junit.org/junit5/docs/5.1.1/api/org/junit/jupiter/api/extension/RegisterExtension.html)
-model, the time of initialization of the service may differ depending on
whether the service instance is declared as
-static or not in the test class. As such, the code should make no assumptions
as to its time of initialization.
-
-Ideally, there should be two concrete implementations of the services: one of
the remote service (if applicable) and
-another for the container service:
-
-```
- MyService
- / \
- / \
- / \
- MyRemoteService MyContainerService
-```
-
-
-In most cases a specialized service factory class is responsible for creating
the service according to runtime
-parameters and/or other test scenarios constraints. When a service allows
different service types or locations to be
-selected, this should be done via command line properties
(`-D<property.name>=<value>`). For example, when allowing a
-service to choose between running as a local container or as remote instance,
a property in the format
-`<name>.instance.type` should be handled. Additional runtime parameters used
in different scenarios, should be handled
-as `<name>.<parameter>`. More complex services may use the builder available
through the factory classes to compose
-the service accordingly.
-
-
-### Registering Properties
-
-All services should register the properties, via `System.setProperty` that
allow access to the services. This is required
-in order to resolve those properties when running tests using the Spring
framework. This registration allows the properties
-to be resolved in Spring's XML files.
-
-This registration is done in the `registerProperties` methods during the
service initialization.
-
-### Registering Properties Example:
-
-Registering the properties in the concrete service implementation:
-
-```
- public void registerProperties() {
- // MyServiceProperties.MY_SERVICE_HOST is a string with value
"my.service.host"
- System.setProperty(MyServiceProperties.MY_SERVICE_HOST,
container.getHost());
-
- // MyServiceProperties.MY_SERVICE_PORT is a string with value
"my.service.port"
- System.setProperty(MyServiceProperties.MY_SERVICE_PORT,
String.valueOf(container.getServicePort()));
-
- // MyServiceProperties.MY_SERVICE_ADDRESS is a string with value
"my.service.address"
- System.setProperty(MyServiceProperties.MY_SERVICE_ADDRESS,
getServiceAddress());
- }
-
- public void initialize() {
- LOG.info("Trying to start the MyService container");
- container.start();
-
- registerProperties();
- LOG.info("MyService instance running at {}", getServiceAddress());
- }
-```
-
-Then, when referring these properties in Camel routes or Spring XML
properties, you may use ```{{my.service.host}}```,
-```{{my.service.port}}``` and ```{{my.service.address}}```.
-
-
-### Packaging Recommendations
-
-This is test infrastructure code, therefore it should be package as test type
artifacts. The
-[parent pom](./camel-test-infra-parent) should provide all the necessary bits
for packaging the test infrastructure.
-
-## Using The New Test Infrastructure
-
-Using the test infra in a new component test is rather straightforward similar
to using any other reusable component.
-You start by declaring the test infra dependencies in your pom file.
-
-This should be similar to:
-
-```
-<!-- test infra -->
-<dependency>
- <groupId>org.apache.camel</groupId>
- <artifactId>camel-test-infra-myservice</artifactId>
- <version>${project.version}</version>
- <type>test-jar</type>
- <scope>test</scope>
-</dependency>
-```
-
-*Note*: on the dependencies above, the dependency version is set to
`${project.version}`. This should be adjusted to the
-Camel version when used outside the Camel Core project.
-
-On the test class, add a member variable for the service and annotate it with
the
[@RegisterExtension](https://junit.org/junit5/docs/5.1.1/api/org/junit/jupiter/api/extension/RegisterExtension.html),
-in order to let JUnit 5 manage its lifecycle.
-
-```
-@RegisterExtension
-static MyService service = MyServiceServiceFactory.createService();
-```
-
-More complex test services can be created using something similar to:
-
-```
-@RegisterExtension
-static MyService service = MyServiceServiceFactory
- .builder()
- .addRemoveMapping(MyTestClass::myCustomRemoteService) // this is
rarely needed
- .addLocalMapping(MyTestClass::staticMethodReturningAService) // sets
the handler for -Dmy-service.instance.type=local-myservice-local-container
- .addMapping("local-alternative-service",
MyTestClass::anotherMethodReturningAService) // sets the handler for
-Dmy-service.instance.type=local-alternative-service
- .createService();
-```
-
-You can use the methods as well as the registered properties to access the
test infrastructure services available.
-When using these properties in Spring XML files, you may use those properties.
-
-```
-<someSpringXmlElement httpHost="{{my.service.host}}"
port="{{my.service.port}}" />
-```
-
-It's also possible to use these properties in the test code itself. For
example, when setting up the test url for the
-Camel component:
-
-```
- protected RouteBuilder createRouteBuilder() throws Exception {
- return new RouteBuilder() {
- public void configure() {
- from("direct:put")
-
.to("mycomponent:someoption?host={{my.service.host}}&port={{my.service.port}}");
- }
- };
- }
-```
-
-
-## Converting Camel TestContainers Code To The New Test Infrastructure
-
-Using the camel-nats as an example, we can compare how the base test class for
nats changed between
[3.6.x](https://github.com/apache/camel/blob/camel-3.6.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsTestSupport.java)
-and
[3.7.x](https://github.com/apache/camel/blob/camel-3.7.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsTestSupport.java).
-
-The first conversion step is to remove the [camel-testcontainer
dependencies](https://github.com/apache/camel/blob/camel-3.6.0/components/camel-nats/pom.xml#L59-L63)
-and replace them with the ones from the [test-infra
module](https://github.com/apache/camel/blob/camel-3.7.0/components/camel-nats/pom.xml#L61-L75).
-Then, it's necessary to replace the [container handling code and the old base
class](https://github.com/apache/camel/blob/camel-3.6.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsTestSupport.java#L24-L45)
-with the [service provided in the
module](https://github.com/apache/camel/blob/camel-3.7.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsTestSupport.java#L26-L27).
-Then, we replace the base class. The `ContainerAwareTestSupport` class and
other similar classes from other
-`camel-testcontainer` modules are not necessary and can be replaced with
`CamelTestSupport` or the spring based one
-`CamelSpringTestSupport`.
-
-With the base changes in place, the next step is to make sure that addresses
(URLs, hostnames, ports, etc) and
-resources (usernames, passwords, tokens, etc) referenced during the test
execution, use the test-infra services. This
-may differ according to each service. Replacing the call to get the [service
URL](https://github.com/apache/camel/blob/camel-3.6.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsAuthConsumerLoadTest.java#L38)
-with the one provided by the new [test infra
service](https://github.com/apache/camel/blob/camel-3.7.0/components/camel-nats/src/test/java/org/apache/camel/component/nats/NatsAuthConsumerLoadTest.java#L38)
-is a good example of this type of changes that may be necessary.
-
-In some cases, it may be necessary to adjust the variables used in [simple
language](https://github.com/apache/camel/blob/camel-3.6.0/components/camel-consul/src/test/resources/org/apache/camel/component/consul/cloud/SpringConsulRibbonServiceCallRouteTest.xml#L36)
-so that they match the [new property
format](https://github.com/apache/camel/blob/camel-3.7.0/components/camel-consul/src/test/resources/org/apache/camel/component/consul/cloud/SpringConsulRibbonServiceCallRouteTest.xml#L36)
-used in the test infra service.
-
-
-There are some cases where the container instance requires [extra
customization](https://github.com/apache/camel/blob/camel-3.6.0/components/camel-pg-replication-slot/src/test/java/org/apache/camel/component/pg/replication/slot/integration/PgReplicationTestSupport.java#L31).
-Nonetheless, the migrated code still benefits from the [test-infra
approach](https://github.com/apache/camel/blob/camel-3.7.0/components/camel-pg-replication-slot/src/test/java/org/apache/camel/component/pg/replication/slot/integration/PgReplicationTestSupport.java#L31),
-but this may be very specific to the test scenario.
-
-
-## Running With Podman
-
-Most of the test infrastructure in this module is based on containers.
Therefore, they will require a container runtime to run. Although the tests
have been written and tested using Docker, they should also work with
[Podman](https://podman.io/) (another popular container runtime on Linux
operating systems).
-
-Assuming Podman is properly installed and configured to behave like docker
(i.e.: short name resolution, resolving docker.io registry, etc), the only
requirement for using Podman is to export the DOCKER_HOST variable before
running the tests.
-
-### Linux
-
-On most systems that should be similar to the following command:
-
-```
-export DOCKER_HOST=unix:///run/user/$UID/podman/podman.sock
-```
-
-### OS X and Windows
-
-Running the test-infra with Podman on OS X and Windows should work on many
cases. However, it requires additional steps and has a few issues. Therefore,
it is not recommended at this time.
-
-
+The documentation for the test infra has moved to the
(test-infra](https://camel.apache.org/components/next/others/test-infra.html)
documentation on the Camel Website.