oscerd opened a new pull request, #2913: URL: https://github.com/apache/camel-kamelets/pull/2913
## Summary LocalStack's community edition was sunset in March 2026, requiring auth tokens and freezing security updates. [Floci](https://floci.io/) is the MIT-licensed, drop-in replacement — same port 4566, same default credentials, same wire protocol. Citrus 4.10.1 already ships native Floci support (`testcontainers: start: floci:` in YAML DSL), making the migration straightforward. This PR makes three changes: - **Migrate all AWS integration tests from LocalStack to Floci** — swap `localstack:` → `floci:` in Citrus YAML tests, update `CITRUS_TESTCONTAINERS_LOCALSTACK_*` → `CITRUS_TESTCONTAINERS_FLOCI_*` across all Groovy scripts, application.properties files, and the EventBridge setup (`LocalStackContainer` → `FlociContainer`) - **Migrate all Pipe-format integration definitions to Camel route YAML** (ref #2873) — replace 9 `kind: Pipe` files with equivalent `- route:` YAML files and update all Citrus test references accordingly - **Add new Citrus integration tests for 3 AWS sink kamelets** — `aws-s3-sink`, `aws-sqs-sink`, and `aws-sns-sink`, all using Camel route format and Floci containers ### Files changed | Category | Count | Details | |----------|-------|---------| | Modified | 25 | Citrus tests, Groovy scripts, properties, READMEs, AwsIT.java | | New | 20 | Route YAML files, Citrus tests, Groovy scripts for new sinks | | Deleted | 9 | Old Pipe-format YAML files | ### New test coverage | Kamelet | Test strategy | |---------|---------------| | `aws-s3-sink` | timer → S3 sink → verify via Groovy getObject | | `aws-sqs-sink` | timer → SQS sink → verify via SQS event listener | | `aws-sns-sink` | timer → SNS sink → SNS-to-SQS subscription → verify via SQS listener | ## Test plan - [ ] Run `mvn verify -pl :camel-kamelets-itest -Denable.integration.tests` to confirm all existing + new tests pass with Floci - [ ] Verify the 3 new sink tests (S3, SQS, SNS) complete successfully - [ ] Confirm no remaining `LocalStack` / `localstack` references in test code (except Knative-specific files) - [ ] Verify test module compiles cleanly (`mvn compile test-compile -pl :camel-kamelets-itest`) _Claude Code on behalf of Andrea Cosentino_ 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
