Giter VIP home page Giter VIP logo

spring-unit-testing-with-junit-and-mockito's Introduction

Unit Testing with Spring, JUnit and Mockito

Image

Learn Unit Testing with most popular frameworks - Spring Boot, JUnit and Mockito

Spring Boot is the most popular framework to develop RESTful Services. It has awesome unit testing capabilities through Spring Boot Starter Test. Mockito is the most popular mocking framework. JUnit is most popular Java Unit Testing Framework.

In this course, you will learn to build unit tests for simple RESTful Services with Spring Boot Starter Test, Mockito and JUnit. You will learn to write independent unit tests for RESTful web services talking with multiple layers - web, business and data. You will learn how to write integration tests using an in memory database H2.

You will build the unit tests step by step - in more than 50 steps. This course would be a perfect first step as an introduction to unit testing with Spring Boot and Mockito Frameworks.

You will be using Spring (Dependency Management), Spring Boot, Maven (dependencies management), Eclipse (IDE), in memory database H2 and Tomcat Embedded Web Server. We will help you set up each one of these.

You will use all the frameworks that are part of Spring Boot Starter Test - JUnit, Spring Test, Spring Boot Test, AssertJ, Hamcrest, Mockito, JSONassert and JsonPath.

You will learn to use the most important Unit Testing Annotations - @RunWith(SpringRunner.class), @SpringBootTest, @WebMvcTest, @DataJpaTest and @MockBean.

Recommended Tools

  • Java 8 or Later
  • Eclipse Oxygen or Later
  • Spring Boot 2.0.0.RELEASE or Later

Installing Java 8 and Eclipse

References

Mockito

Easier Static Imports

Window > Preferences > Java > Editor > Content Assist > Favorites
org.junit.Assert
org.mockito.BDDMockito
org.mockito.Mockito
org.assertj.core.api.Assertions
org.hamcrest.Matchers
org.hamcrest.CoreMatchers
org.hamcrest.MatcherAssert

What You will learn

  • You will learn to write great Unit and Integration tests using Spring Boot Starter Test
  • You will learn to write unit tests using Mocks and Spys created with Mockito
  • You will learn to write independent unit tests for RESTful web services talking with multiple layers - web, business and data
  • You will learn to write integration tests using an in memory database - H2
  • You will learn to use all the frameworks that are part of Spring Boot Starter Test - JUnit, Spring Test, Spring Boot Test, AssertJ, Hamcrest, Mockito, JSONassert and JsonPath.
  • You will learn to use the most important Unit Testing Annotations - @RunWith(SpringRunner.class), @SpringBootTest, @WebMvcTest, @DataJpaTest and @MockBean.

Requirements

  • You should have working knowledge of Java and Annotations.
  • We will help you install Eclipse and get up and running with Maven and Tomcat.
  • You should have basic knowledge about Spring, Spring Boot and JPA/Hibernate. We provide resources that can be used as starting points to enrich your knowledge in the course.

Mockito

Step By Step Details

  • Step 01: Setting up the project using Spring Initializr
  • Step 02: Writing Unit Test for a Simple Business Service
  • Step 03: Setting up a Business Service to call a Data Service
  • Step 04: Writing your first unit test with Stub
    • Exercise - Update Tests 2 & 3
  • Step 05: Exercise Solution - Updating Tests 2 & 3 to use Stubs - Problem with Stubs.
  • Step 06: Writing Unit Tests with Mocking using Mockito
    • Exercise - Updating Tests 2 & 3 to use Mockito
  • Step 07: Exercise Solution - Updating Tests 2 & 3 to use Mockito
  • Step 08: More Refactoring - @Mock, @InjectMocks and @RunWith(MockitoJUnitRunner.class)
  • Step 09: Mockito Tips - Multiple Return Values and Specific Argument Matchers
  • Step 10: Mockito Tips - Argument Matchers
  • Step 11: Mockito Tips - Verify method calls
  • Step 12: Mockito Tips - Argument Capture
  • Step 13: Mockito Tips - Argument Capture on Multiple Calls
  • Step 14: Introduction to Spy
  • Step 15: Mockito FAQ

Spring Boot & Mockito - Unit Testing

Step By Step Details

  • Step 01: Creating a Hello World Controller
  • Step 02: Using Mock Mvc to test Hello World Controller
  • Step 03: Using Response Matchers to check status and content
  • Step 04: Creating a Basic REST Service in Item Controller
  • Step 05: Unit Testing Item Controller and Basic JSON Assertions
  • Step 06: Digging deeper into JSON Assert
  • Step 07: Writing a REST Service talking to Business Layer
  • Step 08: Writing Unit Test for REST Service mocking Business Layer
  • Step 09 - 01 - Prepare Data Layers with JPA, Hibernate and H2
  • Step 10: Create Item Entity and Populate data with data.sql
  • Step 11: Create a RESTful Service talking to the database
  • Step 12: Writing Unit Test for Web Layer - Controller - Using Mock MVC
  • Step 13: Exercise & Solution - Writing Unit Test for Business Layer - Mocking
  • Step 14: Writing Unit Test for Data Layer - Data JPA Test
    • Exercise - Write Unit Test for findById method retrieving item with id 10001
  • Step 15: Writing an Integration Test using @SpringBootTest
    • Exercise - Make Asserts Better
  • Step 16: Tip : Using @MockBean to mock out dependencies you do not want to talk to!
  • Step 17: Tip : Creating Different Test Configuration
  • Step 18: Writing Unit Tests for Other Request Methods
  • Step 19: Refactor SomeBusinessImpl to use Functional Programming
    • Exercise - Convert the second method to use Functional Approach
  • Step 20: Better Assertions with Hamcrest - HamcrestMatcherTest
  • Step 21: Better Assertions with AssertJ - AssertJTest
  • Step 22: Better Assertions with JSONPath - JSONPathTest
  • Step 23: Easier Static Imports
  • Step 24: Tip : Measuring Test Coverage with Eclipse
  • Step 25: Tip : Keep an eye on performance of unit tests!
  • Step 26: Good Unit Tests

Troubleshooting

Youtube Playlists - 500+ Videos

Click here - 30+ Playlists with 500+ Videos on Spring, Spring Boot, REST, Microservices and the Cloud

Keep Learning in28Minutes

in28Minutes is creating amazing solutions for you to learn Spring Boot, Full Stack and the Cloud - Docker, Kubernetes, AWS, React, Angular etc. - Check out all our courses here

in28MinutesLearningRoadmap-July2019.png

spring-unit-testing-with-junit-and-mockito's People

Contributors

bsmahi avatar in28minutes avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

spring-unit-testing-with-junit-and-mockito's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.