This is an automated email from the ASF dual-hosted git repository.
ppalaga pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
from 3a07905 Updated CHANGELOG.md
new dae9640 Prepare for multiple isolated AWS2 tests
new d1c9733 Test AWS 2 SQS properly
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:
integration-tests-support/{azure => aws2}/pom.xml | 22 +++-
.../test/support/aws2/Aws2TestResource.java | 128 +++++++++++++++++++++
integration-tests-support/pom.xml | 1 +
integration-tests/aws2-s3/pom.xml | 16 +--
.../camel/quarkus/component/aws2/Aws2S3Test.java | 2 +-
.../quarkus/component/aws2/Aws2S3TestResource.java | 66 +++++++++++
.../quarkus/component/aws2/AwsTestResource.java | 106 -----------------
.../{aws2-s3 => aws2-sqs}/README.adoc | 4 +-
.../{azure-eventhubs => aws2-sqs}/pom.xml | 21 +++-
.../component/aws2/sqs/it/Aws2SqsResource.java} | 50 +++++---
.../src/main/resources/application.properties | 9 +-
.../quarkus/component/aws2/sqs/it/Aws2SqsIT.java} | 6 +-
.../quarkus/component/aws2/sqs/it/Aws2SqsTest.java | 66 +++++++++++
.../component/aws2/sqs/it/Aws2SqsTestResource.java | 71 ++++++++++++
integration-tests/aws2/pom.xml | 4 -
.../camel/quarkus/component/aws2/CamelRoute.java | 5 -
.../aws2/src/main/resources/application.properties | 4 -
integration-tests/pom.xml | 1 +
poms/bom-test/pom.xml | 5 +
tooling/scripts/test-categories.yaml | 1 +
20 files changed, 413 insertions(+), 175 deletions(-)
copy integration-tests-support/{azure => aws2}/pom.xml (76%)
create mode 100644
integration-tests-support/aws2/src/main/java/org/apache/camel/quarkus/test/support/aws2/Aws2TestResource.java
create mode 100644
integration-tests/aws2-s3/src/test/java/org/apache/camel/quarkus/component/aws2/Aws2S3TestResource.java
delete mode 100644
integration-tests/aws2-s3/src/test/java/org/apache/camel/quarkus/component/aws2/AwsTestResource.java
copy integration-tests/{aws2-s3 => aws2-sqs}/README.adoc (78%)
copy integration-tests/{azure-eventhubs => aws2-sqs}/pom.xml (86%)
copy
integration-tests/{slack/src/main/java/org/apache/camel/quarkus/component/slack/it/SlackResource.java
=>
aws2-sqs/src/main/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsResource.java}
(58%)
copy integration-tests/{bean =>
aws2-sqs}/src/main/resources/application.properties (85%)
copy
integration-tests/{google-bigquery/src/test/java/org/apache/camel/quarkus/component/google/bigquery/it/GoogleBigqueryIT.java
=>
aws2-sqs/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsIT.java}
(79%)
create mode 100644
integration-tests/aws2-sqs/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTest.java
create mode 100644
integration-tests/aws2-sqs/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTestResource.java