Testcontainers have forever changed the way I write tests

Sdílet
Vložit
  • čas přidán 25. 05. 2024
  • 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
  • Věda a technologie

Komentáře • 120

  • @yuu-kun3461
    @yuu-kun3461 Před měsícem +156

    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  Před měsícem +42

      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_ Před měsícem +8

      @@dreamsofcode it is! but thanks to your videos, it's slightly less challenging ;)

    • @savire.ergheiz
      @savire.ergheiz Před 26 dny

      They need to keep busy or will be kicked out by AI overlord 😂

  • @catcatcatcatcatcatcatcatcatca
    @catcatcatcatcatcatcatcatcatca Před měsícem +21

    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  Před 26 dny +7

      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!

  • @Tresla
    @Tresla Před měsícem +41

    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 Před měsícem +5

      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.

  • @yudhiesh1997
    @yudhiesh1997 Před měsícem +45

    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 Před měsícem +2

      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 Před měsícem +2

      But isnt that the Point? You want your Tests to be isolated so you can Run them in parallel

    • @ImperiumLibertas
      @ImperiumLibertas Před měsícem +1

      ​@@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 Před 28 dny

      It really depends on the nature of your tests and whether any have side effects that could interfere with other tests.

    • @kaosce
      @kaosce Před 22 dny +1

      You can also use transactions rollbacked at the end of each test

  • @cyril4274
    @cyril4274 Před měsícem +16

    I love how informative, concise and useful these videos are. Thanks for your work!

  • @cole.maxwell
    @cole.maxwell Před měsícem +2

    Awsome! Thanks for linking that Git repos too!

  • @linbynd
    @linbynd Před měsícem +32

    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  Před měsícem +15

      Thank you! I use Davinci Resolve for about 90% of the work and then After Effects for any advanced animations!

    • @VinitKhandagle
      @VinitKhandagle Před měsícem +2

      @@dreamsofcode simply amazing its a breeze to watch the subtle but eye catchy animations

  • @Peter1215
    @Peter1215 Před měsícem +2

    Excellent explanation and useful examples, thank you!

  • @NostraDavid2
    @NostraDavid2 Před měsícem +12

    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 Před měsícem +2

      Spinning up a single instance is fine, but not when you need Postgres, Hadoop, Kafka and whatelse all at the same time.

    • @ImperiumLibertas
      @ImperiumLibertas Před měsícem +1

      These really shouldn't be used as part of the dev workflow. They're good for CI/CD.

    • @AnythingGodamnit
      @AnythingGodamnit Před 26 dny +1

      Isn't this just a distinction between unit tests and integration tests?

  • @danielcooke3243
    @danielcooke3243 Před 21 dnem +1

    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

  • @vijayramachandran3559
    @vijayramachandran3559 Před 19 dny

    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  Před 19 dny +1

      People / working in a team is always more challenging than code imho!

  • @mdnlss
    @mdnlss Před měsícem +6

    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 Před 20 dny

      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.

  • @jedlechner3788
    @jedlechner3788 Před měsícem

    This is fire! Thanks for sharing. I can now do all of my personal development without deploying.

  • @randomsde4390
    @randomsde4390 Před měsícem +2

    Watched this video and started to use testcontainers immediately in our CICD system. Really cool!

  • @joaowiciuk
    @joaowiciuk Před 28 dny

    Thanks for sharing, I'll consider using testingcontainers in the future

  • @tswdev
    @tswdev Před měsícem

    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!

  • @romanzaiev
    @romanzaiev Před měsícem +28

    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 Před měsícem +14

      "sponsored by Docker". They don't want more people migrating to Podman 😂

    • @pinguincoder
      @pinguincoder Před měsícem

      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 Před měsícem +7

      @@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 Před 27 dny

      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."

  • @JoeyJurjens
    @JoeyJurjens Před měsícem +1

    Very cool, thanks for sharing!

  • @flwi
    @flwi Před 25 dny

    That's very handy. Thanks for the explanation!

  • @faysoufox
    @faysoufox Před měsícem +1

    Great video, thanks

  • @flo4604
    @flo4604 Před měsícem

    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 Před 21 dnem

    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

  • @mr.daniish
    @mr.daniish Před měsícem

    There is more value in this video than i handle!

  • @SIMULATAN
    @SIMULATAN Před měsícem

    Glad to see valkey getting so much love ❤

  • @alandosman5002
    @alandosman5002 Před 28 dny

    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.

  • @StrikevonNice
    @StrikevonNice Před měsícem +2

    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.

  • @seandougherty3022
    @seandougherty3022 Před 25 dny

    another solid video. nice one.

  • @PhilmannDark
    @PhilmannDark Před 27 dny

    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  Před 27 dny

      You can also start a container one off for all your tests in a package using the TestMain function in Go

  • @imbetterfyi
    @imbetterfyi Před měsícem

    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

  • @aredrih6723
    @aredrih6723 Před měsícem

    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 Před 29 dny

      Conceptually, that is how we do it in Testcontainers :)

  •  Před měsícem

    Thanks for the video. The wait forlog is the next flakey part.

    • @dreamsofcode
      @dreamsofcode  Před měsícem +1

      You can wait for ports to be open and other things as well. It's pretty useful

  • @debemdeboas
    @debemdeboas Před měsícem

    what plugin are you using for that column line? love ot

  • @KamiKagutsuchi
    @KamiKagutsuchi Před měsícem +1

    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

  • @Im_Ninooo
    @Im_Ninooo Před měsícem

    this is awesome!

  • @RomualdBrunet
    @RomualdBrunet Před měsícem +2

    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  Před měsícem

      Github actions works inside of a docker container.
      So does gitlab which also uses them

  • @Fudmottin
    @Fudmottin Před měsícem

    That's pretty cool! And wow you type fast!

  • @ruslan_yefimov
    @ruslan_yefimov Před 29 dny

    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)

  • @skeplo12
    @skeplo12 Před 28 dny

    May I ask what font you are using for coding?

  • @prashlovessamosa
    @prashlovessamosa Před 29 dny

    Can you please make one on Delve how to setup it and start debugging using it pleaase.

  • @vikingthedude
    @vikingthedude Před měsícem

    So you’ve covered test containers, now it’s time for dev containers!

  • @goffkock
    @goffkock Před 27 dny

    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  Před 27 dny +1

      You can still spin up a single instance for all your tests using test containers! You would do so in TestMain using Go

  • @intimidate123
    @intimidate123 Před 25 dny

    you have a link to your dotfiles?

  • @berndeckenfels
    @berndeckenfels Před měsícem +1

    Testcontainer modules should really offer more random passwords by default

  • @covle9180
    @covle9180 Před měsícem

    I came for the cool tech, I stayed for the digs at redis

  • @swyxTV
    @swyxTV Před 23 dny

    How are these videos made? With the text and animations? Without a giant motion graphics budget?

    • @dreamsofcode
      @dreamsofcode  Před 23 dny

      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!

  • @kevinmarques9334
    @kevinmarques9334 Před 15 dny

    But what if the container stops right after it shows the log message? I'm having this problem in a small application and I can't find any function that checks the health of the container even after it stared... :(

    • @dreamsofcode
      @dreamsofcode  Před 15 dny

      You can use some other waiting protocols, such as an open port

  • @SimGunther
    @SimGunther Před měsícem

    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  Před měsícem

      Bruh

    • @SimGunther
      @SimGunther Před měsícem

      ​@@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  Před měsícem

      @@SimGunther 🤣

    • @31redorange08
      @31redorange08 Před měsícem

      It fails either way, because it would try to subtract the flakiness of the 1st test from the 0th test (object). NaN.

  • @Malix_off
    @Malix_off Před měsícem

    Great video
    However, 11:15 do not use testcontainers for development (there's devcontainers for that)

  • @KevinHaeusler
    @KevinHaeusler Před měsícem

    Everyone has a test environment, some people have a seperate prod environment. :)

  • @Rundik
    @Rundik Před měsícem +2

    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 Před měsícem +1

    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 Před 26 dny

    I don't want my docker containers to be "Typed"

  • @knucklecorn
    @knucklecorn Před měsícem +1

    too bad it doesn't work with podman

  • @thenaman047
    @thenaman047 Před měsícem +1

    there I am, first of em all

  • @giant3909
    @giant3909 Před měsícem

    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  Před měsícem

      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 Před měsícem

    Was hoping he showed how to run firefox in docker

    • @dreamsofcode
      @dreamsofcode  Před měsícem +1

      If you still wanna know I can show you on discord!

    • @justahumanwithamask4089
      @justahumanwithamask4089 Před měsícem

      @@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 Před měsícem

      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 Před měsícem

      CZcams deleted my other reply where I at your username. New youtube policy I guess?

    • @dreamsofcode
      @dreamsofcode  Před měsícem

      ​@@justahumanwithamask4089 I saw it and tried to respond but it wouldn't let me, CZcams 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

  • @NutzlastB0hne
    @NutzlastB0hne Před 27 dny

    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 Před měsícem +1

    second
    also hoi DoC

  • @brianmc1575
    @brianmc1575 Před měsícem +1

    first

  • @Laflamablanca969
    @Laflamablanca969 Před měsícem +1

    Honestly, a docker compose file is easier than this. If you aren’t cleaning up after your tests, that’s on you.

    • @dreamsofcode
      @dreamsofcode  Před měsícem +3

      Objectively false.

    • @Laflamablanca969
      @Laflamablanca969 Před měsícem +6

      @@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 Před 27 dny +1

    First you tell us you dont have redis running, then you cant start your redis container because you do have it running. What gives?

  • @dayvie9517
    @dayvie9517 Před měsícem +1

    Seems like a waste of energy and time when u can just mock 😂

    • @dreamsofcode
      @dreamsofcode  Před měsícem +6

      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 Před měsícem +3

      ​​​​​​​​​​​​@@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 Před měsícem

      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 Před 21 dnem

      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 Před měsícem

    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 Před měsícem

    I love to test in prod coz I develop medical robots and nuclear missile guidance systems

  • @arielmolina6277
    @arielmolina6277 Před 20 dny

    Awesome video, thanks for sharing !