Spring Boot Rest Client - How to test HTTP calls using @RestClientTest

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ม.ค. 2025

ความคิดเห็น • 40

  • @assaduzzaman_dsi
    @assaduzzaman_dsi 11 หลายเดือนก่อน +12

    Nice. Is it possible to make another video regarding how we do mock of APIs that are being protected OAuth2/OIDC and CSRF enabled?

    • @codemonkey
      @codemonkey 8 หลายเดือนก่อน

      Yes. Please do this. Most endpoints need security. How to wire in these configurations is giving me fits. Please help. :)

  • @codemonkey
    @codemonkey 8 หลายเดือนก่อน

    BTW, truly appreciate you taking the time to do this. :)

  • @erfannavab9805
    @erfannavab9805 11 หลายเดือนก่อน +1

    It was so helpful. Thanks Dan

  • @andytael
    @andytael 11 หลายเดือนก่อน +1

    Great information! Maybe do the same wit the JDBC Client and mocking it up?

  • @ajayantony4412
    @ajayantony4412 10 หลายเดือนก่อน

    Thank you Dan!

  • @marba6923
    @marba6923 11 หลายเดือนก่อน +2

    Hi Dan. Nice video. I have one question. When I write tests using give/when/then sections I put the mock configuration in the 'given' section. In the 'when' section there is the execution of the tested objected only. What do you think about that?

    • @DanVega
      @DanVega  11 หลายเดือนก่อน +1

      You are correct and I should have done the actual execution (findAll()) in the when block. Thank you for noticing and the feedback.

    • @codemonkey
      @codemonkey 8 หลายเดือนก่อน

      Another approach is Arrange, Act, Assert. In this approach the given and when in the video would be part of the Arrange block. The Act block would be the call that executes the service. The asserts would then fall into the assert block, of course. :)

  • @gallardofabian
    @gallardofabian 11 หลายเดือนก่อน +1

    Nice video. Do You know a good plugin for intellij for owasp security analyzer? Maybe a series of videos with the top ten attacks

  • @AlessiaCaraFans
    @AlessiaCaraFans 8 หลายเดือนก่อน

    Heyyy ,pls do more videos about testing with more advanced topics , especially how to test when we have different requests at the same time for same method in a certain controller that talks to the client API , (also pls what is the name of plugin you use in intellij to autocomplete for you more than 1 line of code ) ^^ thankiiiiiiies from Morocco , you're amazing Mr Dan Vega

  • @mr_raviparihar609
    @mr_raviparihar609 11 หลายเดือนก่อน

    Much informative

  • @OneClickLabs
    @OneClickLabs 8 หลายเดือนก่อน

    Could you point us to an example where the RestClient is invoking an API with HTTP method as POST method instead of GET?

  • @codemonkey
    @codemonkey 8 หลายเดือนก่อน +1

    When I run your tutorial WITHOUT adding any specific type of HTTP client, it still calls the actual service instead of the Mock Serivce. The test of course fails with expected 2 but had 100. Has something changed since this video was published?

  • @leonardoncintra
    @leonardoncintra 5 หลายเดือนก่อน

    How to test 404, 401 and 500 http status ?

  • @BabaykaMoscow
    @BabaykaMoscow 6 หลายเดือนก่อน

    Could you, please, make a video on how to setup RestClient to use proxy with and without authentication?

  • @OneClickLabs
    @OneClickLabs 11 หลายเดือนก่อน

    Very useful, thanks.

    • @DanVega
      @DanVega  11 หลายเดือนก่อน

      Glad it was helpful!

  • @JohnSmith-zs6ow
    @JohnSmith-zs6ow 6 หลายเดือนก่อน +3

    Just downloaded the tutorial (with no changes) and the Test failed with 100 replies - indicating that the live server was being contacted (not the mocked server). A couple of other people seem to have had the same issue. Has there been a fix for this issue since the video was published? I commented out the JdkClientHttpRequestFactory as suggested in the video - which works - but isn't much use when your other videos recommend this substitution - meaning that I can't test the code I'm writing.

    • @DanVega
      @DanVega  6 หลายเดือนก่อน

      This is a known issue you can follow here for updates
      github.com/spring-projects/spring-boot/issues/38832

    • @DanVega
      @DanVega  6 หลายเดือนก่อน

      There is a workaround in that issue if you're interested.

    • @JohnSmith-zs6ow
      @JohnSmith-zs6ow 6 หลายเดือนก่อน

      Excellent. Thank You.

  • @Jallallalla
    @Jallallalla 8 หลายเดือนก่อน

    This is great. But I am stuck when I have two rest clients in my application. The documentation suggests I should use the MockServerRestClientCustomizer. This gets rid of the error messages and in the customizer I see my the mockservers for each of my clients. But I am stuck at how to get the correct server for each client. You can get a server out of the customizer with getServer(), but this takes a RestClient.Builder(??).
    I can get the "first" server and the "second" server out of the HashMap that the customizer provides, but the tests are too flaky. Sometimes client A is the first entry and sometimes client B is the first entry.
    Can you help me?

  • @praneethjayawardena7883
    @praneethjayawardena7883 11 หลายเดือนก่อน +1

    Great really helpful ❤

  • @nickkkeyy
    @nickkkeyy 11 หลายเดือนก่อน

    Where do you usually use the @Component? I know the @Service is for the business layers, what im quite confused with the correct usage for @Component.

    • @brunokingz
      @brunokingz 11 หลายเดือนก่อน

      You can use @Component with anything you want to inject

  • @calintamas7576
    @calintamas7576 11 หลายเดือนก่อน

    Mersi Dan,
    Cand o sa vii la Cluj?

  • @blaaarp4u
    @blaaarp4u 11 หลายเดือนก่อน

    why not to use "REST Assured" lib?

  • @MustafaKanzii
    @MustafaKanzii 8 หลายเดือนก่อน

    what is theme of dan vega ıs there any one knows it

  • @AlexWen-h1r
    @AlexWen-h1r 11 หลายเดือนก่อน

    hi Dan, i got a question, what if i have configured two rest client in a configuration file, and i want to test one of them, how should i do

    • @DanVega
      @DanVega  11 หลายเดือนก่อน

      If you have 2 you should give the bean a specific name, so you can just ask for them by name @Qualifier("todoRestClient")

    • @nico-s29
      @nico-s29 10 หลายเดือนก่อน

      @Dan one follow up question what would you recommend when i want to test those clients with @RestClientTest but the rest clients also use Configuration Properties so simply with rest client test i get a bean not found exception for the Config-Properties

  • @stevenrichman7101
    @stevenrichman7101 10 หลายเดือนก่อน

    Hi, what IDE is used in this video?

    • @nico-s29
      @nico-s29 10 หลายเดือนก่อน +1

      IntelliJ IDEA Ultimate

  • @dariuszchmiea3567
    @dariuszchmiea3567 9 หลายเดือนก่อน

    @RestClientTest(PostClient.class) would be more usefull if you could create rest client with properties files rather than put constant url ...
    public PostClient(RestClient.Builder builder, RestClientProperties properties) {
    this.restClient = builder
    .baseUrl(properties.url())
    .build();
    }
    @RestClientTest(PostClient.class)
    @ImportAutoConfiguration(RestClientProperties.class)
    Does not work and produce: No qualifying bean of type 'java.lang.String' available ...