Testcontainers have forever changed the way I write tests

  Переглядів 84,571

Dreams of Code

Dreams of Code

День тому

I don't always test my code, but when I do, I test against real services.
The testcontainers package enables me to easily test against real services, in a way that doesn't cause issues that normally come from integration testing, which usually leads to flaky tests.
This video is kindly sponsored by Docker.
Download Tescontainers Desktop for free: dockr.ly/49HLeVy
AtomicJar is now part of Docker: dockr.ly/3vUGkH0
The blog post your mentioning: dockr.ly/3W4RO5l
GitHub Repo: github.com/dreamsofcode-io/te...
Join this channel to get access to perks:
/ @dreamsofcode
Join Discord: / discord
Join Twitter: / dreamsofcode_io
00:00:00 - Intro
00:01:13 - Project Setup
00:03:29 - Test containers to the rescue
00:07:17 - Valkey
00:07:54 - Modules
00:10:54 - Advanced usage

КОМЕНТАРІ: 117
@yuu-kun3461
@yuu-kun3461 15 днів тому
Whenever you upload a video I am always impressed by just how advanced tools around programming have become. This is stark contrast with the legacy stuff I deal with daily.
@dreamsofcode
@dreamsofcode 15 днів тому
I am constantly amazed at how much things keep changing in software development. I often feel like it's a challenge keeping up with it all!
@Gregorius_
@Gregorius_ 15 днів тому
@@dreamsofcode it is! but thanks to your videos, it's slightly less challenging ;)
@savire.ergheiz
@savire.ergheiz 9 днів тому
They need to keep busy or will be kicked out by AI overlord 😂
@cyril4274
@cyril4274 15 днів тому
I love how informative, concise and useful these videos are. Thanks for your work!
@Tresla
@Tresla 15 днів тому
Small correction: At 5:20 you should use the "require" package instead of "assert". This is because you don't want to the test to continue running in this case. "require" will cause the test to immediately exit, whereas "assert" will just mark the test as failed, but continue executing the rest of the test, which might give you strange failure messages. Likewise at 6:59
@l_unchtime
@l_unchtime 14 днів тому
Just use the -failfast flag when running go test :) Besides, he's only using a single test so it doesn't really matter in this case. But you're correct that other tests would continue running without this.
@catcatcatcatcatcatcatcatcatca
@catcatcatcatcatcatcatcatcatca 14 днів тому
If you are sponsored by docker, it would be cool to see more videos about using docker for testing and integration. I would especially like a video (or few) about how do you start a project from ”scratch”? You have a great ability to pick out the important bits and show only those in a clear manner. So while documentation and plenty of learning material exists, I think you really could add a valuable learning resource by doing a video in your style, from even more basic point of view. I’d encourage pitching the idea to Docker. Golang seems like a great language for this kind of content as tests are so integral for it. And the syntax is very easy. This would allow showcasing all of the code in the same video, which I feel would be essential for the consept. I’d love to see you answer simple questions through your usual straight-forward demonstrations, on an ”empty” project: How do you add and update dependencies with docker? How do you write the very first tests in test-driven project, and how do you expand from that? And lastly how do you go from a development image to a deployable, minimal image?
@dreamsofcode
@dreamsofcode 9 днів тому
This is a great idea that I can pitch to the team as well! I'm getting set up to do some streaming as well so this might also be something I can do then!
@cole.maxwell
@cole.maxwell 15 днів тому
Awsome! Thanks for linking that Git repos too!
@yudhiesh1997
@yudhiesh1997 15 днів тому
Instead of spinning up multiple test containers I just stick with one and make sure that I have setup and tear down code to keep the database state consistent across all tests. Spinning up multiple containers in parallel would put a lot of load on my CI/CD environment, so unless the tests are painfully slow I would just stick with sequential test runs.
@kowalkem
@kowalkem 15 днів тому
A good way of running tests in parallel against a SQL database is to use separate schemas. But unfortunately not all services have analogous capabilities.
@pinguincoder
@pinguincoder 14 днів тому
But isnt that the Point? You want your Tests to be isolated so you can Run them in parallel
@ImperiumLibertas
@ImperiumLibertas 13 днів тому
​@@pinguincoder not necessarily. The purpose is to make test environments as reproducible and consistent as possible. That can still mean running tests synchronously. It all depends on your runner strategy.
@TehKarmalizer
@TehKarmalizer 11 днів тому
It really depends on the nature of your tests and whether any have side effects that could interfere with other tests.
@kaosce
@kaosce 5 днів тому
You can also use transactions rollbacked at the end of each test
@Peter1215
@Peter1215 15 днів тому
Excellent explanation and useful examples, thank you!
@vijayramachandran3559
@vijayramachandran3559 2 дні тому
Fantastic advise! A friend in HR whom I respect greatly says that most problems have a large people component, it's never about only tech
@dreamsofcode
@dreamsofcode 2 дні тому
People / working in a team is always more challenging than code imho!
@jedlechner3788
@jedlechner3788 14 днів тому
This is fire! Thanks for sharing. I can now do all of my personal development without deploying.
@danielcooke3243
@danielcooke3243 4 дні тому
really cool project, i always hate the boiler plate around setting up docker-compose tests, tearing stuff down properly, implementing health checks. this will make things much easier in future
@joaowiciuk
@joaowiciuk 11 днів тому
Thanks for sharing, I'll consider using testingcontainers in the future
@randomsde4390
@randomsde4390 15 днів тому
Watched this video and started to use testcontainers immediately in our CICD system. Really cool!
@dreamsofcode
@dreamsofcode 15 днів тому
This is amazing to hear 💜
@flwi
@flwi 8 днів тому
That's very handy. Thanks for the explanation!
@JoeyJurjens
@JoeyJurjens 15 днів тому
Very cool, thanks for sharing!
@linbynd
@linbynd 15 днів тому
Apart from the videos being extremely informative, I am amazed by how well the video is edited and put together? what software are you using to edit this amazing videos if I may ask
@dreamsofcode
@dreamsofcode 15 днів тому
Thank you! I use Davinci Resolve for about 90% of the work and then After Effects for any advanced animations!
@VinitKhandagle
@VinitKhandagle 15 днів тому
@@dreamsofcode simply amazing its a breeze to watch the subtle but eye catchy animations
@tswdev
@tswdev 15 днів тому
Years ago I made some some functions to automatically control docker from tests. It was cool but not all too great. I need to have a look at this Testcontainers stuff (actually have the tab open for some time, just havent had the time). Thanks!
@NostraDavid2
@NostraDavid2 15 днів тому
I like to live dangerously and mock it all (if I had my way - alas, my team also chose test-containers, now I test 10x as slow)
@NostraDavid2
@NostraDavid2 15 днів тому
Spinning up a single instance is fine, but not when you need Postgres, Hadoop, Kafka and whatelse all at the same time.
@ImperiumLibertas
@ImperiumLibertas 13 днів тому
These really shouldn't be used as part of the dev workflow. They're good for CI/CD.
@AnythingGodamnit
@AnythingGodamnit 8 днів тому
Isn't this just a distinction between unit tests and integration tests?
@flo4604
@flo4604 15 днів тому
Geat video, maybe its time to get into tests :) Dragonfly would also be something you could take a look at instead of valkey
@DoCLov
@DoCLov 4 дні тому
One thing I find docker compose is good at is documenting what your environmental dependency in one place. It is good when you have to jump between many projects. I personally never faced with the issue of port binding usually because my tests run from another “test” container. All in all I agree there are merits to using the package there is also added complexity when orchestrated from another container by requiring to share a socket with the host
@SIMULATAN
@SIMULATAN 15 днів тому
Glad to see valkey getting so much love ❤
@faysoufox
@faysoufox 15 днів тому
Great video, thanks
@mr.daniish
@mr.daniish 15 днів тому
There is more value in this video than i handle!
@alandosman5002
@alandosman5002 11 днів тому
Nice video, So one note for tests, in the modules section you talked about parallel tests and stuff, but one thing, tests should be written independently, it should behave independent, it should make no problem for other tests, so you tests should be deterministic.
@romanzaiev
@romanzaiev 15 днів тому
Fun fact - can't be used with podman because test-container's implementation of DockerCompose relies on "compose ps --format=json" and it's still not implemented in podman. And nobody cares, unfortunately.
@ragectl
@ragectl 15 днів тому
"sponsored by Docker". They don't want more people migrating to Podman 😂
@pinguincoder
@pinguincoder 14 днів тому
Most of stuff Runs ob docker and docker aquired Testcontainers so there is No Point for them to make it portable with podman
@romanzaiev
@romanzaiev 14 днів тому
@@pinguincoder there is an open PR in podman-compose about this missing feature since November and I believe it’s the podman’s issue (lack of compatibility)
@twocsies
@twocsies 10 днів тому
From the home page: "Want to give Podman or Rancher a try? Simply switch your local runtime for all your Testcontainers-powered dependencies. And with Testcontainers Cloud, you can even run them in the cloud on demand, while saving your local resources."
@seandougherty3022
@seandougherty3022 8 днів тому
another solid video. nice one.
@StrikevonNice
@StrikevonNice 15 днів тому
Will look into this, part of my problem is having x number of containers to start locally and manage that. Never liked mocking away a lot of things as your left with a lot of assumptions so this should help with that. At the very least should be good for CI/CD testing before it hits a testing/prod enviornemnt.
@StephaneBusso
@StephaneBusso 15 днів тому
Thanks for the video. The wait forlog is the next flakey part.
@dreamsofcode
@dreamsofcode 15 днів тому
You can wait for ports to be open and other things as well. It's pretty useful
@aredrih6723
@aredrih6723 15 днів тому
You can technically avoid the port conflict by not allocating port at all and using docker inspect to find the container ip (they all have one and the wiki page of docker inspect shows how to get it in an example). But having wrappers around popular services and automatic clean up does put test container apart.
@kiviews
@kiviews 12 днів тому
Conceptually, that is how we do it in Testcontainers :)
@PhilmannDark
@PhilmannDark 10 днів тому
If you don't want to pay the performance price for starting containers, try this approach: Add a test package to each service that you need. This test package contains all the test data that the service uses to determine that it works correctly (plus setup code, etc). Add a test dependency in your project to this test package and then use the test data to test your own code. If the service isn't under your control, you can write a small project which sends test requests to the service and verifies the responses. The requests and responses are then your test package which your project can consume. Every once in a while, you need to rerun this "collect test data" project but your tests will be several orders of magnitude faster.
@dreamsofcode
@dreamsofcode 10 днів тому
You can also start a container one off for all your tests in a package using the TestMain function in Go
@Im_Ninooo
@Im_Ninooo 14 днів тому
this is awesome!
@dreamsofcode
@dreamsofcode 14 днів тому
Thank you!
@goffkock
@goffkock 10 днів тому
Those wait parameters to postgres preconfigured container should really be included in the module though. One issue with it is for example spinning up Kafka on each test run, takes much more time than hosting it in docker manually
@dreamsofcode
@dreamsofcode 10 днів тому
You can still spin up a single instance for all your tests using test containers! You would do so in TestMain using Go
@ruslan_yefimov
@ruslan_yefimov 12 днів тому
My team lead was amazed when I've made a deployment pipeline which applies all migrations with dbup, lol.. I'm a new guy with like a year of experience (THEY DO ALL THE DEPLOYMENT MANUALLY)
@mdnlss
@mdnlss 14 днів тому
idk abt this one. the last thing im about to do after i finish writing poorly design barely functioning code is test it. im sure u guys agree with me on this one
@aruZeta
@aruZeta 3 дні тому
That's the problem, if you are dealing with new code (and not shitty legacy one) you should apply TDD, that is, writing tests before the actual code. Thus you will firstly state what the code is expected to do while making all design decisions, then writing the code to fulfill those requirements. If all tests pass then the code is correct, you followed the intended design and you can refactor whatever you see fit.
@imbetterfyi
@imbetterfyi 14 днів тому
I'm curious how heavy the added overhead of spinning up so many container instances (esp. multiple database instances) can be considering some code bases have thousands of tests to be run + how much delay it introduces
@vikingthedude
@vikingthedude 13 днів тому
So you’ve covered test containers, now it’s time for dev containers!
@dreamsofcode
@dreamsofcode 13 днів тому
🫡
@RomualdBrunet
@RomualdBrunet 15 днів тому
This is great to run locally, unfortunately this is not usable when running inside a docker container run within a CI. I have yet to see some library that would integrate with both environments (use mysql container spawned by CI, but spawn a local container when ran locally)
@dreamsofcode
@dreamsofcode 15 днів тому
Github actions works inside of a docker container. So does gitlab which also uses them
@covle9180
@covle9180 15 днів тому
I came for the cool tech, I stayed for the digs at redis
@Fudmottin
@Fudmottin 14 днів тому
That's pretty cool! And wow you type fast!
@debemdeboas
@debemdeboas 15 днів тому
what plugin are you using for that column line? love ot
@KamiKagutsuchi
@KamiKagutsuchi 15 днів тому
I unfortunately can't use testcontainers at my job because it requires you to be able to run docker-in-docker to run in the ci pipeline which is apparently considered a security risk and therefore not allowed FeelsBadMan
@prashlovessamosa
@prashlovessamosa 11 днів тому
Can you please make one on Delve how to setup it and start debugging using it pleaase.
@berndeckenfels
@berndeckenfels 15 днів тому
Testcontainer modules should really offer more random passwords by default
@skeplo12
@skeplo12 11 днів тому
May I ask what font you are using for coding?
@Malix_off
@Malix_off 15 днів тому
Great video However, 11:15 do not use testcontainers for development (there's devcontainers for that)
@swyxTV
@swyxTV 6 днів тому
How are these videos made? With the text and animations? Without a giant motion graphics budget?
@dreamsofcode
@dreamsofcode 6 днів тому
All me at the moment! Basically a lot of time and effort and learning how to do motion graphics. I've got a couple of videos coming out that are really pushing my abilities!
@SimGunther
@SimGunther 15 днів тому
0:38 Are we to assume the starting state of the accumulator is +/- infinity, int_min/max, or zero? If we're saying flakiness is a negative value when all is said and done, are we trying to get that number closer to zero? That's my assumption because there's no way that we can have a positive end result, meaning there's less flakiness than anti-flakiness (no idea what that means here). I get that it's supposed to be shorthand for a codey joke, but reduce in this notation means that you flatten a container into a singular dimension, which could mean either reducing a list of events with an initial state (acc) into a final state structure or flatten an N dimension container into a single value/N-1 dimension container.
@dreamsofcode
@dreamsofcode 15 днів тому
Bruh
@SimGunther
@SimGunther 15 днів тому
​@@dreamsofcodeFalling victim to Muphry's law, it turns out that the version in the video assumes the 0th element is the initial value and we can iterate through the rest of the array starting from the 1st element, but when the array is empty, we though an error. Lucky that there's at least one test, right? 😅
@dreamsofcode
@dreamsofcode 15 днів тому
@@SimGunther 🤣
@31redorange08
@31redorange08 14 днів тому
It fails either way, because it would try to subtract the flakiness of the 1st test from the 0th test (object). NaN.
@intimidate123
@intimidate123 8 днів тому
you have a link to your dotfiles?
@KevinHaeusler
@KevinHaeusler 15 днів тому
Everyone has a test environment, some people have a seperate prod environment. :)
@Rundik
@Rundik 15 днів тому
I wrote my own testcontainers implementation a few years ago in a couple of hours. It was just a few hundreds lines of code.
@sof1an
@sof1an 15 днів тому
These seem great as part of a cicd pipeline, not in the dev workflow. I experienced a lot of headaches waiting for containers to start just trying to run locally.
@N0FPV
@N0FPV 9 днів тому
I don't want my docker containers to be "Typed"
@knucklecorn
@knucklecorn 15 днів тому
too bad it doesn't work with podman
@giant3909
@giant3909 15 днів тому
Seems great for specific uses cases where you have to replicate complex external services like AWS, but for something like postgresql there is a lot of boilerplate code for every single test. My current project runs 350 tests, imagine having to setup a postgresql test container for each of them
@dreamsofcode
@dreamsofcode 14 днів тому
In the teams I've rolled this out with we just made a reusable function or started the container up in TestMain. You only have to spin up a single container for one of them. I showed this in the video.
@justahumanwithamask4089
@justahumanwithamask4089 15 днів тому
Was hoping he showed how to run firefox in docker
@dreamsofcode
@dreamsofcode 15 днів тому
If you still wanna know I can show you on discord!
@justahumanwithamask4089
@justahumanwithamask4089 15 днів тому
@@dreamsofcode I think I have a gist, create a container with x11, then install the program and alias the entire container? If I hop on discord I will take too much your time as I never used docker or podman before yesterday when I saw your other video. Actually I've never even heard of podman before yesterday, I just installed it because I thought docker couldn't be installed with pacman whereas podman could plus it's rootless and I most likely wouldn't need systemctl to autostart docker since it was a rare use case.
@justahumanwithamask4089
@justahumanwithamask4089 15 днів тому
I think I have a gist, create a container with x11, then install the program and alias the entire container? If I hop on discord I will take too much your time as I never used docker or podman before yesterday when I saw your other video. Actually I've never even heard of podman before yesterday, I just installed it because I thought docker couldn't be installed with pacman whereas podman could plus it's rootless and I most likely wouldn't need systemctl to autostart docker since it was a rare use case.
@justahumanwithamask4089
@justahumanwithamask4089 15 днів тому
UKposts deleted my other reply where I at your username. New youtube policy I guess?
@dreamsofcode
@dreamsofcode 15 днів тому
​@@justahumanwithamask4089 I saw it and tried to respond but it wouldn't let me, UKposts comments are still a mystery to me. You're close though with how you'd do it! The image I used in the video had a VNC server inside so I was able to connect into it using VNC
@thenaman047
@thenaman047 15 днів тому
there I am, first of em all
@NutzlastB0hne
@NutzlastB0hne 10 днів тому
Can't wait for this awesome project to get locked behind licensing fees 😬 Honestly, I'm getting kinda jaded with these "it's free... and now it's not!" rug-pulls. Of course there needs to be a way to support FOSS projects, but that approach can't be it...
@itsfkf6106
@itsfkf6106 15 днів тому
second also hoi DoC
@brianmc1575
@brianmc1575 15 днів тому
first
@Laflamablanca969
@Laflamablanca969 15 днів тому
Honestly, a docker compose file is easier than this. If you aren’t cleaning up after your tests, that’s on you.
@dreamsofcode
@dreamsofcode 15 днів тому
Objectively false.
@Laflamablanca969
@Laflamablanca969 15 днів тому
@@dreamsofcode lol definitely not. Obviously you need to push for testcontainers because docker is the video sponsor and they’re paying you to say that. With that said, put your money where your mouth is and make a video benchmarking with and without testcontainers. Docker compose workflow: 1. Connect to running pgsql container 2. Migrate db schema 3. Run test code 4. Rollback db schema Testcontainers workflow: 1. Start pgsql testcontainer 2. Wait for initialization trigger 3. Connect to db 4. Migrate db schema 5. Run test code Not only is it more steps, it’ll also take much longer to run every test individually. It may be beneficial if you can run your tests in parallel, but I’m still skeptical as to whether upping and downing containers is quicker overall. If you show me your way is less code and faster, I’ll shut my mouth and use testcontainers from here on.
@herman6214
@herman6214 10 днів тому
First you tell us you dont have redis running, then you cant start your redis container because you do have it running. What gives?
@dreamsofcode
@dreamsofcode 10 днів тому
I think you may have misheard me
@dayvie9517
@dayvie9517 15 днів тому
Seems like a waste of energy and time when u can just mock 😂
@dreamsofcode
@dreamsofcode 15 днів тому
I think mocks have their place. But they're not a replacement for testing against real services. You should always have some integration tests, otherwise you're just simulating behavior.
@dayvie9517
@dayvie9517 15 днів тому
​​​​​​​​​​​​@@dreamsofcodewell you are too just simulating behaviour with your test containers. Your test containers don't run in your production env or other staging envs? Still missing the point here. What are you really testing here? If your dbms acts as you expected? Also integration testing doesn't mean 'testing against dbms' but testing the integration of different software modules. You can integration test without simulating dbms instances or ever getting near a data layer. A module doesn't have to be the data layer module which goes against a dbms 😅. Of course you want to do unit, integration and system testing. Never said anything against it. Just curious about your motivation for this.
@eNtrozx
@eNtrozx 15 днів тому
1. Why not test with actual components when it's that easy? 2. Sometimes mocking is so complex compared to setting the env in the service. For example try mocking a Redis ReadWriteLock, It's a hell of complexity
@DoCLov
@DoCLov 4 дні тому
As you said it is a balance of getting confidence in your code, getting feedback faster, maintenance and reliability long term. Any testing is a optimisation against those 3 axis. For example you can mock and sql connection (and you should for handling exceptional situations) but how would you trust your sql works with this particular db version, I don’t. It is a healthy mix and testing against a container gives you a decent confidence and it is much faster and safer feedback than running against a production db without an intermediate stage.
@dirty-kebab
@dirty-kebab 14 днів тому
Where can i find your theme and font? Im sure i probably already have it somewhere and have just lost it?
@rude_people_die_young
@rude_people_die_young 13 днів тому
I love to test in prod coz I develop medical robots and nuclear missile guidance systems
@arielmolina6277
@arielmolina6277 3 дні тому
Awesome video, thanks for sharing !
When RESTful architecture isn't enough...
21:02
Dreams of Code
Переглядів 237 тис.
Using docker in unusual ways
12:58
Dreams of Code
Переглядів 376 тис.
😨Новая Война в GTA 5 Online #shorts
00:40
King Dm
Переглядів 1,5 млн
i changed my mind about zig
9:34
Low Level Learning
Переглядів 131 тис.
Event-Driven Architecture (EDA) vs Request/Response (RR)
12:00
Confluent
Переглядів 51 тис.
Learnings from our multi-tenant Laravel application
9:58
Sabatino Masala
Переглядів 10 тис.
Tmux has forever changed the way I write code.
13:30
Dreams of Code
Переглядів 874 тис.
The best (and worst) types for storing money in PostgreSQL
11:37
Dreams of Code
Переглядів 40 тис.
Why Doesn’t Everyone Use This Animation???
23:59
Theo - t3․gg
Переглядів 65 тис.
Pretty much every website uses the wrong font size…
15:33
Theo - t3․gg
Переглядів 53 тис.
Understanding B-Trees: The Data Structure Behind Modern Databases
12:39
Spanning Tree
Переглядів 122 тис.
Did AI Just End Music? (Now it’s Personal) ft. Rick Beato
25:46
ColdFusion
Переглядів 536 тис.
If you're not developing with this, you're wasting your time
14:30
Articulated Robotics
Переглядів 233 тис.
The PA042 SAMSUNG S24 Ultra phone cage turns your phone into a pro camera!
0:24