Software Testing with Spring boot and Mockito Framework

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 พ.ย. 2024

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

  • @youbabagayogo3052
    @youbabagayogo3052 10 หลายเดือนก่อน +13

    You changed my life of spring developper and i'm ready to buy on your plateforme a complete course of how to deploy spring boot project on aws (AWS Amplify, AWS S3, AWS RDS, AWS EC2). It will be a pleasure to follow such course. Thanks for everything

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน +11

      now, all my content is and will be for free. No one should pay to learn
      You are welcome to contribute if you want to

  • @hieunguyen0801
    @hieunguyen0801 10 หลายเดือนก่อน +19

    Can you make a video about using Redis in Spring Boot and PostgreSQL?

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน +4

      soon

    • @thilaks3895
      @thilaks3895 2 หลายเดือนก่อน +1

      @@BoualiAli please make a video for integration testing with the redis and postgresql in springboot 3.

  • @melissapereira6957
    @melissapereira6957 8 หลายเดือนก่อน +4

    can you do more videos about testing ? perhaps testing the controller layer ? i loved the lecture, you helped me a lot. 😊

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      Yes, soon

  • @poorpanda9033
    @poorpanda9033 10 หลายเดือนก่อน +9

    Perfect Upload. I was just learning about unit & integration testing & you've uploaded at the right time. Thanks a lot !

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      Glad it was helpful!

  • @Obrik
    @Obrik 5 หลายเดือนก่อน +4

    *Table of Contents*
    (By the way, a "mock" is an empty version of an object, and a "stub" is a mock with some functionality added back in.)
    00:00 Testing is important, here's why
    06:05 What is Spring Test?
    (tl;dw it's a testing library for Java).
    8:49 How the example program is organized
    (tl;dw StudentMapper has a Student object with student info, and has a StudentResponseDto object (Dto stands for Data transfer object). StudentService has a StudentRepository object and a StudentMapper object.)
    10:59 Making a test class for StudentMapper
    14:58 Test Class exists, first (Hello World) test function
    ```
    @Test
    public void testMethod1(){
    System.out.println(“My first test method”);
    }
    ```
    16:50 The SetUp method, @BeforeEach
    19:01 The TearDown method, @AfterEach
    20:42 @BeforeAll (BeforeClass) method
    22:30 @AfterAll (AfterClass) method
    23:55 First actual test, and what the StudentMapper functions do
    29:57 First test is done and runs
    30:06 Causing the first test to fail
    32:07 Practice Exercise - implement test for toStudentResponseDto method
    32:50 Practice Exercise answer
    34:44 Given, When, Then, test structure
    35:39 Third test: studentDto to student if null.
    38:15 Fixing the source code to handle null. Adjusting test to expect exception, and getting the exception message (assertThrows(exceptionType, () -> { code });)
    42:31 Explanation of StudentService and database, test isolation with mocking (Mockito)
    45:01 Creating new test class for StudentService
    46:30 First and second @Mock
    47:33 @InjectMocks
    48:22 Opening/starting the mocks (MockitoAnnotations.openMocks(this);)
    49:21 First test method for StudentService, saving a student
    52:48 Why the result is null/failing. Mocking functions for test isolation’s sake. when().thenReturn()
    57:31 Test with mocks (and stubs) is ready and runs
    59:06 Making sure the methods were only called once, using Mockito.verify()
    1:02:20 Practice Exercise - test findAllStudent() method, using mocks (and stubs) as needed
    1:02:53 Practice Exercise answer (including using mockito any() method)
    1:06:33 Practice Exercise - test findStudentById() method
    1:06:52 Practice Exercise answer (including Optional.of())
    1:10:07 Bouali Ali is proud of you
    1:10:13 Practice Exercise - test findStudentsByName()
    1:10:45 Practice Exercise answer

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

    Perfectly explained, thank you Mr.Perfecto

  • @kanehamath6162
    @kanehamath6162 9 หลายเดือนก่อน +1

    Interessting and well understanding, big thanks

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

    بارك الله فيك و يرحم والديك ، جات الوقت المناسب

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      baraka allahou fik

  • @davidb.5486
    @davidb.5486 5 หลายเดือนก่อน

    Literally amazing tutorial, the only thing missing was testing the controller.

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

    please make more videos on unit testing and mockito which used more complex code like service class depends on multiple different service class and use spring security for authorization and authentication and encryption decryption for request and response object. Your video is really helpful and thanks sir for sharing your great knowledge with us.

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

      noted

  • @raghusama4273
    @raghusama4273 5 หลายเดือนก่อน +2

    Do we have the video of development / Implementation of that Student project ?

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

    Thank you for this video. Please continue topic of testing.

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      sure

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

    You are a fantastic teacher. Thanks a lot. Can you please cover integration testing of REST services ?

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      Yes, soon

  • @TarunStk-bf5re
    @TarunStk-bf5re 5 หลายเดือนก่อน

    Hi Alibou, Your content is very good, much appreciated. It would've been even great if you've covered code coverage as well.
    Thanks

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

    Great Video!!! Could you provide us with the link to the repository? How to test controller classes ? How do you test the database connection and whether data is read and saved correctly?

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

    Always providing high quality Content , THANK YOU !!

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      Glad you think so!

  • @cdinglevel8626
    @cdinglevel8626 5 หลายเดือนก่อน +4

    Sir codesource please is not in the description

  • @zee8105
    @zee8105 3 หลายเดือนก่อน

    Hi Bouali , do you have any videos on integration testing? it could be a payed version too, really interested if you do. thanks!

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

    Do you have a complete course on testing, where we can get the initial code to learn along with you? I enrolled into your platform, the content is awesome, thanks for the effort.

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

    After One month Sir ALi Bouali come Back 🥰

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

    Should you write test first before implementation or the other way round?

  • @krishnamadhav7639
    @krishnamadhav7639 2 หลายเดือนก่อน

    Can you please upload the link for the code used in this tutorial. I couldn't find it in the description.

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

    Thank you very much. Really appreciate your for your effert ❤❤❤❤

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      my pleasure

  • @samahmahdi5511
    @samahmahdi5511 7 หลายเดือนก่อน

    Thanks, it is excellent illustration

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      I'm glad you like it

  • @2RAJ21
    @2RAJ21 3 หลายเดือนก่อน

    Thank you

    • @BoualiAli
      @BoualiAli  2 หลายเดือนก่อน

      You're welcome

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

    Could you do a video about how to be in testing with jwt-security ? how to add jwts or fake jwts when testing and how to test login or auth methods, endpoints?

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน +1

      good idea

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

      Waiting for it

  • @Vinicius-xe8br
    @Vinicius-xe8br 4 หลายเดือนก่อน

    you're amazing thanks !

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

    I had the same query asked below. Want to know the spring boot version used here.

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      spring 3

  • @k.ousmanediallo4134
    @k.ousmanediallo4134 10 หลายเดือนก่อน

    This is a great video explaining the basic concept for ut. please can you provide the code source for all app not including for test part

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      there is no app for that. just showcase services

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

    Thank you man, this video is really helpful

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      Glad you liked it!

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

    where is the repo for the demo, in order to follow it?

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

    Very nice boulai Ali thank you☺️☺️☺️🎁🙏🏾🙏🏾 for the video happy the new year

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      Glad you liked it!

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

    Thanks. Great explanation as usual

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      My pleasure!

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

    I think that the repository level must be tested first of all. It doesn't need to test basic CRUD operations of a repository. But we have a lot of fun besides. For insance, test the fact that repository realy gives an id for a new entity. Does the audit feature (createdAt, modifiedAt) realy work? Does it throw correct exceptions? Does your SQL query correspond to your expectations? How to mock DB (embedded, docker) ...

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

      This is the integration tests level.
      I will cover it soon

  • @armaan.nagpuri
    @armaan.nagpuri 2 หลายเดือนก่อน

    How to see the class diagram that you showed?

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

    can you tell me which repo, you used for the testing, can you provide the link?

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      I dont have a repo for it

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

    Awesome dude ❤🙏🙏🙏

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      Glad you think so!

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

    best as always

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

    Great content, keep going !!

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      Glad you liked it!

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

    Can you make a video about Integration testing?

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน +1

      soon

  • @aliksargsyan2782
    @aliksargsyan2782 3 หลายเดือนก่อน

    how can i find the source code of this project ?

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

    saha aloulou

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      you're the best

  • @pritikumari-n7o1h
    @pritikumari-n7o1h 10 หลายเดือนก่อน

    hi Ali, can i get the source code link?

  • @DJCava3000
    @DJCava3000 7 หลายเดือนก่อน

    where can I find the code for this video?

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน +1

      in the description

    • @rijorejimathew1776
      @rijorejimathew1776 3 หลายเดือนก่อน

      @@BoualiAli cant find it in description

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

    Can you make videos on DevOps

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      which part of it?

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

    Thanks a lot. Can you please share source code?

    • @BoualiAli
      @BoualiAli  7 หลายเดือนก่อน

      In the description

  • @MonsterBebesi-cd7ot
    @MonsterBebesi-cd7ot 8 หลายเดือนก่อน

    githup ?? this video resoruce