java - 在 Spring Boot 应用程序中使用 Mockito

标签 java unit-testing spring-boot mockito junit4

我熟悉SpringBoot,也写过一个小应用程序。它有一个扩展 CrudRepositoryProductRepository。我的 ProductService 是这样的:

public interface ProductService {
  Iterable<Product> listAllProducts();
  Product getProductById(Integer id);
  Product saveProduct(Product product);
  void deleteProduct(Integer id);
}

ProductServiceImpl 类自动连接到 ProductRepository 中,并使用 ProductRepository 提供实现。

我的应用程序正在按预期运行,这就是我测试存储库的方式。

@RunWith(SpringRunner.class)
@SpringBootTest(classes = {RepositoryConfiguration.class})
public class ProductRepositoryTest {
  private ProductRepository productRepository;
  @Autowired
  public void setProductRepository(ProductRepository productRepository) {
    this.productRepository = productRepository;
  }
  @Test
  public void testSaveProduct(){
    //setup product
    Product product = new Product();
    product.setDescription("Shirt");
    product.setPrice(new BigDecimal("18.95"));
    product.setProductId("1234");        
    assertNull(product.getId()); //null before save
    productRepository.save(product);
    assertNotNull(product.getId()); //not null after save
    //fetch from DB
    Product fetchedProduct = productRepository.findOne(product.getId());
    //should not be null
    assertNotNull(fetchedProduct);      
 }
}

我想知道如何在没有外部依赖的情况下对 ProductRepository 进行单元测试(上面的测试有,所以不符合单元测试的条件。我相信这更像是一个集成测试)。

另外,我如何对我的 ProductService 进行单元测试?我尝试使用 Mockito 模拟 ProductRepositoryProduct,如下所示:

public class ProductServiceImplTest {
  private ProductServiceImpl productServiceImpl;
  private ProductRepository productRepository;
  private Product product;

  @Before
  public void setupMock() {
    MockitoAnnotations.initMocks(this);
    productServiceImpl=new ProductServiceImpl();
    productRepository = mock(ProductRepository.class);
    product = mock(Product.class);
  }

  @Test
  public void testRetrieveById() throws Exception {
   when(productRepository.findOne(5)).thenReturn(product);
    assertEquals(product, productServiceImpl.getProductById(5));
  }
}

但这就是我得到的:

java.lang.NullPointerException
at    
  ProductServiceImpl.getProductById(ProductServiceImpl.java:24)
at  ProductServiceImplTest.testRetrieveById(ProductServiceImplTest.java:36)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at  sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at  org.junit.runners.model.FrameworkMethod$1.runReflectiveCall
   (FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run
(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:51)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:237)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)

我是否正确使用了Mockito.mock()?另外,如果我使用 Mockito.spy() 代替,会有什么区别?任何帮助将不胜感激。

最佳答案

如果您想编写单元测试,请删除所有用于集成测试的不必要的注释。

您还需要在 @Before 方法中启动模拟:

public class ProductServiceImplTest {
  @InjectMocks
  private ProductServiceImpl productServiceImpl;
  @Mock
  private ProductRepository productRepository;
  @Mock
  private Product product;

  @Before
  public void setupMock() {
    MockitoAnnotations.initMocks(this);
  }

我认为在你的情况下,使用mock应该足够了。

您应该使用 spy 的唯一时间是在您正在测试的类上调用它,在您的情况下,这将是:

productServiceImpl=new ProductServiceImpl();
prodServiceSpy = spy(productServiceImpl);

并模拟一些您不希望调用其实现的方法,或者使用测试场景所需的自定义实现进行调用。

关于java - 在 Spring Boot 应用程序中使用 Mockito,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42371586/

相关文章:

java - Android Java Sharedpreferences不会保存数据

java - 使用 RealmSearchView 时出现 Android DuplicateFileException

java - 无法获取类路径资源的资源路径

java - 如何配对在同一图像的多个 docker 容器内运行的嵌入式 Hazelcast

java - 当用户在 spring boot 应用程序中输入无效 URL 时如何显示自定义 404 页面?

java - 在给定矩阵中搜索值密度的最佳方法是什么?

c# - 使用计数方法

c# - 单元测试工作单元

spring-boot - Cassandra data stax driver update 4.4查询超时问题

java - 使用数组排序