Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Integration testing with TestСontainers and JUn...
Search
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
Nikolay Kuznetsov
December 09, 2019
Programming
180
0
Share
Integration testing with TestСontainers and JUnit 5
Nikolay Kuznetsov
December 09, 2019
More Decks by Nikolay Kuznetsov
See All by Nikolay Kuznetsov
Integration testing with TestСontainers-Go
nikolayk812
0
140
Integration testing with TestContainers-Go
nikolayk812
0
280
TestContainers + JUnit 5 = elegant integration and e2e tests for microservices
nikolayk812
2
370
Integration and end-to-end testing with TestСontainers
nikolayk812
0
130
Integration and end-to-end testing with TestСontainers
nikolayk812
0
36
Other Decks in Programming
See All in Programming
キャリア迷子上等 ─ "ない道"は自分で作ればいい
16bitidol
2
270
Copilot CLI の継戦能力を高める コンテキスト管理
nozomutu
1
1.2k
AI駆動開発で崩れていくコードベースを立て直す
kyoko_nr_nr
1
430
AI時代のUIはどこへ行く?その2!
yusukebe
19
6.6k
Make SRE Operations Easier with Azure SRE Agent
kkamegawa
0
3.5k
SPMマルチモジュールで テストカバレッジを取得する技法
yosshi4486
0
140
JavaDoc 再入門
nagise
0
270
3Dシーンの圧縮
fadis
1
600
Lessons from Spec-Driven Development
simas
PRO
0
130
「AIで開発し、AIを届ける」をEvalでつなぐ 〜AIネイティブに始めるプロダクト開発の実践〜 / Connecting "Develop with AI, deliver AI" with Eval
rkaga
4
2.1k
TypeScript+Orvalで実現する型安全かつ堅牢でスケーラブルなマルチチャネル通知基盤 / TSKaigi Night talks ~after conference~
d0riven
0
250
ユニットテストの先へ:テスト技法で要求・仕様を整理するJava開発実践 / Beyond_Unit_Testing_Practical_Java_Development_Techniques_for_Organizing_Requirements_and_Specifications
shimashima35
0
350
Featured
See All Featured
How to Align SEO within the Product Triangle To Get Buy-In & Support - #RIMC
aleyda
2
1.5k
Test your architecture with Archunit
thirion
1
2.3k
Building Better People: How to give real-time feedback that sticks.
wjessup
370
20k
Abbi's Birthday
coloredviolet
2
7.9k
What the history of the web can teach us about the future of AI
inesmontani
PRO
1
600
Agile that works and the tools we love
rasmusluckow
331
21k
Fashionably flexible responsive web design (full day workshop)
malarkey
408
66k
Evolving SEO for Evolving Search Engines
ryanjones
0
210
Why Mistakes Are the Best Teachers: Turning Failure into a Pathway for Growth
auna
0
150
Are puppies a ranking factor?
jonoalderson
1
3.5k
Reflections from 52 weeks, 52 projects
jeffersonlam
356
21k
Self-Hosted WebAssembly Runtime for Runtime-Neutral Checkpoint/Restore in Edge–Cloud Continuum
chikuwait
0
560
Transcript
Integration testing with TestСontainers and JUnit 5 Nikolay Kuznetsov @nikolayk812
Helsinki JUG Zalando 9 December 2019
About me • Go developer at Zalando Wardrobe • 6+
years of Java experience • Conference speaker: ◦ Voxxed Days Cluj, Container Days Hamburg • TestContainers-Go contributor
Why integration testing?
2 unit tests, 0 integration tests
Basic integration test
Trade-offs Test Runtime
Integration testing evolution • In-memory mocking • Local DBs •
Vagrant • Docker / Docker Compose • Docker API
Docker advantages • 100% compatible database • Same version as
production • Empty or known state
Docker architecture
How to start a container for test? • Shell scripts
• Maven plugin • Docker Compose • Docker API • MiniKube, Kubernetes
Shell scripts
Maven plugins github.com/fabric8io/docker-maven-plugin
Docker Compose
Docker API docs.docker.com/engine/api/latest
Exec example
None
TestContainers flavors
TestContainers Java • github.com/testcontainers/testcontainers-java • Wraps docker-java library • Docker
environment discovery • Host port randomization • Containers clean up on JVM shutdown • Readiness waiting strategies
As simple as var redis = new GenericContainer("redis:5.0.6") .withExposedPorts(6379); var
postgres = new PostgreSQLContainer();
Docker environment discovery
Talking to Docker via UDS • curl --unix-socket /var/run/docker.sock http:/localhost/containers/json
• curl --unix-socket /var/run/docker.sock http:/localhost/networks
Host port randomization • To prevent port conflicts • Enables
parallel builds • API to get a host port
Containers cleanup https://github.com/testcontainers/moby-ryuk
Waiting strategies • Host port • HTTP • Log message
• Docker healthcheck • Combined / Custom
Host port waiting strategy • Default: at first exposed port
with timeout of 60s • Both from outside and inside container
Internal port check
HTTP waiting strategy • Status & response body predicate
Demo setup User Service
Demo scenario User Service INSERT INTO SELECT FROM
Demo github.com/nikolayk812/hjug-tc-demo
Demo recap • JUnit 5 Extension API • TestContainer modules
JUnit 5 extension points • Life-cycle callbacks • Conditional execution
• Parameter resolution • Exception handling
JUnit 5 extension logic • Implement interface(s) from o.j.j.api.extension package
◦ i.e. BeforeEachCallback, ExecutionCondition • Register with @ExtendsWith annotation • See @Testcontainers for reference
TestContainers modules • Preconfigured, optimized for testing • Wrappers on
top of GenericContainer class • 14 databases • MockServer, LocalStack, Kafka, ToxiProxy
Demo-2: setup User Service
Demo-2: Docker network User Service user-alias: 8083 postgres-alias: 5432 localhost:
32812
Demo-2: scenario User Service POST /users GET /user/<id>
Demo-2 github.com/nikolayk812/hjug-tc-demo
Demo-2: recap • Docker network and alias
Why end-to-end testing? • Business flows across multiple services •
Regression, when ◦ + new service ◦ - legacy service
Some cluster Spring Cloud Kubernetes
E2E strategies • Against a deployed cluster • Against on-demand
in memory cluster
Deployed cluster cons • Replace a service with a newer
version => instability • Temporary service name => non-discoverable • Unexpected databases states ◦ Care to clear data after the test?
On-demand cluster cons • Time to start all containers •
Memory + CPU • How actually to create it?
On-demand Kubernetes for E2E?
YAGNI
On-demand cluster TC approach • Each service started by TestContainers
• Shared Docker network • Functional tests • Unless testing Kubernetes manifests
E2E setup User Service Item Service
Hints • Host port forwarding Testcontainers.exposeHostPorts() • Fixed host port
(for remote debugging) GenericContainer.addFixedExposedPort() • Reusable containers github.com/testcontainers/testcontainers-java/issues/781
Takeaways • https://testcontainers.org • Balance between flexibility, speed and features
• Works on Mac, Linux, Windows • Great for integration tests! • Possible to use for end-to-end tests
Thank you! @nikolayk812 nikolayk812 nikolayk812