Writing robust integration tests in .NET with WireMock.NET

Поділитися
Вставка
  • Опубліковано 6 вер 2024
  • Become a Patreon and get source code access: / nickchapsas
    Check out my courses: dometrain.com
    Hello everybody I'm Nick and in this video I will show you how you can step your integration testing (or even acceptance testing) up using WireMock.NET. Third party APIs are a crucial part of a lot of applications and mocking them during integration testing can be really tricky. WireMock.NET is a library that can make your live so much easier by allowing your to cleanly create a mock version of the third party API that you're integrating with.
    Given WireMock.NET a star: github.com/Wir...
    Don't forget to comment, like and subscribe :)
    Social Media:
    Follow me on GitHub: bit.ly/ChapsasG...
    Follow me on Twitter: bit.ly/ChapsasT...
    Connect on LinkedIn: bit.ly/ChapsasL...
    #dotnet #testing #wiremock

КОМЕНТАРІ • 25

  • @deathmachine808
    @deathmachine808 3 роки тому +16

    You’ve got a really solid channel man. One day when I can actually stop working long enough to learn something else I’m going to be deep diving.

  • @kaiserbergin
    @kaiserbergin 3 роки тому +5

    Nice work. Been using wiremock for some time, and I'm glad to see it getting some love on your channel. I started pointing my devs to your channel as you're constantly posting useful content and do a good job at keeping on top of current features and libs. Good work, man. Thanks.

    • @user-tp8xp1hj8e
      @user-tp8xp1hj8e 2 роки тому

      me2, the company i work in also created a custom wrap over it,
      @Nick consider to also cover the topic of PACT testing

  • @vibes992000
    @vibes992000 4 місяці тому

    I would be much happier if you would have shown a more real life case scenario for wiremock i.e writing request /endpoints and response contracts pair in a separate external text file rather than building them from precompiled fluent syntax. Still a good video to get started and see internal workings of wiremock web service espeically its configuration via fixtures

  • @darianferrer
    @darianferrer 3 роки тому +1

    Great demo Nick! I've been using it for a couple of years and when building micro-services with multiple externals APIs it's very helpful. One thing that maybe you could expand on this topic is how to do recordings and playbacks, I've never tried that because its not that hard to setup manual requests/responses, but maybe you have experience on this.

  • @ofiry
    @ofiry Рік тому

    Great video Nick, can u explain why this is better then mocking the httpclient

  • @diegomelgar2696
    @diegomelgar2696 3 місяці тому

    Hi @Nick, great video, something that is very useful for testing!!!
    Is it possible or how can I have access to this repo or is there a video about de Fixture that you use to create a User in the database? I was searching in your channel if you have a video with title that contains "Fixture" but I don't really know if you have one that explains how to create fixtures.
    Thanks!!!

    • @diegomelgar2696
      @diegomelgar2696 3 місяці тому

      Or is it used for creating data with random data? I thoroughly inspect this video and see that you use AutoFixer library. Is it used for making objects with random data?
      I know the concept of factories in Laravel, that is a feature to create random objects to insert in database

  • @aaronkoller8811
    @aaronkoller8811 3 роки тому +1

    Wire mock does look like a great tool. Maybe I am missing something here, why not just use the Microsoft TestServer where in the client you can use Moq to mock any external dependencies/responses?

    • @StefHeyenrath
      @StefHeyenrath 3 роки тому +2

      Correct, in the example code there is an interface (Refit) to connect to GitHub. So in this case, it was also possible to completely stub this using Mock.
      However in case the client, which connects to a 3rd party system, cannot be mocked, or if you want to run a more integration-test like test, then WireMock.Net can be used to mock the request with certain responses from that 3rd Party system.
      Also note that you can also use response templating, which enables you to create not just static responses but also dynamic response based on properties from the request.

  • @dimamartyshchenko2265
    @dimamartyshchenko2265 2 роки тому

    Really nice ! Thanks for the video

  • @chamiz
    @chamiz 2 роки тому

    Good work!. Thanks Nick

  • @Mrnik123s
    @Mrnik123s 3 роки тому +1

    Nice. Do I need to dispose of wiremock server after use ?

  • @vespuxi2516
    @vespuxi2516 Рік тому

    Beautiful

  • @amazotv8382
    @amazotv8382 Рік тому

    Hi Nick, can this be used with mstest framework and not xunit?

  • @clearlyunwell
    @clearlyunwell 3 роки тому

    👍🏽