Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Devnexus 2025 - Cloud Integration Testing Made ...

Devnexus 2025 - Cloud Integration Testing Made Easy for Your Java Apps

Anca Ghenade

March 05, 2025
Tweet

More Decks by Anca Ghenade

Other Decks in Programming

Transcript

  1. So what’s the first thing we take away from this?

    Integration testing is important.
  2. The truth is we’ve gotten very used to being “fake”.

    • Test data → a clean database on every test run. We get green tests with migration problems. • Selenium → a fake user, using a mouse and keyboard, over and over again. We assume it’s realistic. • Stamina → the runtime is always fresh for tests. What about subtle memory leaks? • Scaling → tests run against a single process web server. Reality: a multi-thread environment.
  3. So my inspirations for this talk were our Code Cop

    and Justin Searls and his SCNA 2012 talk: To Mock or Not To Mock.
  4. We want to keep it as real as possible when

    we’re testing our AWS-powered applications and the interaction between various components.
  5. Your painful checklist for everything to consider: • AWS Account:

    Ensure access to a test AWS account. • Separate Test Env: Use a dedicated AWS environment. • Data Isolation: Keep test data separate from production. • Service Isolation: Use separate accounts or tagging to avoid conflicts. • Cleanup: Ensure resources are cleaned up post-testing. • CI Integration: Run tests automatically in CI/CD pipelines. • IAM Permissions: Ensure test users/roles have the necessary permissions. • Logging & Monitoring: Enable CloudWatch logs and metrics for debugging test failures. • Secrets Management: Store and manage test credentials securely (e.g., AWS Secrets Manager, Parameter Store). • Cost Management: Track and limit test resource usage to avoid unexpected costs. • Test Parallelization: Ensure tests can run concurrently without conflicts. • State Management: Handle persistent vs. ephemeral resources carefully.
  6. When it comes to testing, here are some common practices

    that we’re all guilty of. (At one point in our lives)
  7. Focus: • Mocking remote systems. • Mostly unit and end-to-end

    testing. • Reuse mocks and get tangled when anything changes.
  8. Mocking carries the risk of not getting updated and if

    we mock everything, aren’t we just making sure that the mocks work as expected?
  9. How can we bring the ease and speed of unit

    tests into our integration tests?
  10. What is LocalStack and how can it help you? A

    fully functional local cloud stack that was born out of these exact concerns.
  11. • Enables a highly efficient dev & test loop for

    cloud apps • Ships as a container image, easy to install and start up • Support for 100+ services (and growing): ◦ compute (Lambda, ECS, EKS) ◦ various databases (DynamoDB, RDS) ◦ messaging (SQS, Kinesis, MSK) ◦ some sophisticated/exotic APIs (Athena, Glue) • CI integrations & advanced collaboration features • Branching out into other areas: Chaos Engineering, IAM Security Testing, Cloud Ephemeral Environments, 3rd Party Extensions, etc
  12. How much of your system you can test Cloud emulation

    Staging environments Real AWS Mocking So how much reality can we have in cloud application testing? 3 4 Service emulation 2 1
  13. 2. The “my app is pretty much ready” example Source:

    https://github.com/tinyg210/stack-bytes-apigw-lambda-s3 Folder: github-actions-testcontainers
  14. 1. You do everything yourself. Programmatically with the AWS SDKs.

    (example: https://github.com/tinyg210/testcontainers-shipment-list-demo)
  15. Download on the fly… And see it in the webapp:

    https://app.localstack.cloud/pods
  16. 4. Use a mix of all of the above. 󰤆

    • spin up only desired services at startup • manage other resources via SDK clients
  17. Use a waiter to make sure your Lambdas are in

    state ACTIVE and not just created.
  18. Wait for LocalStack logs to tell you when to start,

    so that your instance is in the right state before the tests are allowed to start.