繁体   English   中英

ModelMapper JUnit Mockito抛出NullPointerException

[英]ModelMapper JUnit Mockito throws NullPointerException

我正在尝试测试服务类中的一种方法,该方法使用ModelMapper将实体转换为dto,但是我在此行获取NullPointerException mapper.getConfiguration().setMatchingStrategy(MatchingStrategies.STRICT); 在服务类别中。

例外

java.lang.NullPointerException
at pro.budthapa.service.impl.StockCategoryServiceImpl.getStockCategoryByIdAndBusinessGroupId(StockCategoryServiceImpl.java:56)
at pro.budthapa.service.impl.StockCategoryServiceImplTest.WhenCategoryPresent_ShouldReturnCategory(StockCategoryServiceImplTest.java:81)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
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.mockito.internal.runners.JUnit45AndHigherRunnerImpl.run(JUnit45AndHigherRunnerImpl.java:37)
at org.mockito.runners.MockitoJUnitRunner.run(MockitoJUnitRunner.java:62)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:538)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:760)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:460)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:206)

测试班

@RunWith(MockitoJUnitRunner.class)
public class StockCategoryServiceImplTest {

@Mock
private ModelMapper mapper;

@Mock
private StockCategoryRepository stockCategoryRepository;

@InjectMocks
private StockCategoryServiceImpl stockCategoryService;

@Before
public void setup() {
    mapper = new ModelMapper();
}

@Test
public void WhenCategoryPresent_ShouldReturnCategory() throws Exception {
    int bgId = 10;
    int categoryId = 5;

    StockCategory sc = new StockCategory();
    sc.setCategoryId(categoryId);
    sc.setBusinessGroupId(String.valueOf(bgId));
    sc.setDescription("Test Item");

    Mockito.when(stockCategoryRepository.findByCategoryIdAndBusinessGroupId(categoryId, String.valueOf(bgId))).thenReturn(Optional.of(sc));

    StockCategoryDto result = stockCategoryService.getStockCategoryByIdAndBusinessGroupId(categoryId, bgId);

    assertEquals(5, result.getCategoryId() );
    assertEquals(10, result.getBusinessGroupId());
    assertNotNull(result.getDescription());
    Mockito.verify(stockCategoryRepository, Mockito.times(1)).findByCategoryIdAndBusinessGroupId(categoryId, String.valueOf(bgId));
}

}

服务等级

@Service
public class StockCategoryServiceImpl implements StockCategoryService {

private ModelMapper mapper;
private StockCategoryRepository stockCategoryRepository;

public StockCategoryServiceImpl(ModelMapper mapper, StockCategoryRepository stockCategoryRepository) {
    this.mapper = mapper;
    this.stockCategoryRepository = stockCategoryRepository;
}

@Override
public StockCategoryDto getStockCategoryByIdAndBusinessGroupId(int categoryId, int bgId) {

    Optional<StockCategory> cat = stockCategoryRepository.findByCategoryIdAndBusinessGroupId(categoryId, String.valueOf(bgId));
    if(cat.isPresent()) {

        //getting NullPointerException at this line        
    mapper.getConfiguration().setMatchingStrategy(MatchingStrategies.STRICT);

        return mapper.map(cat.get(), StockCategoryDto.class);
    }

    StockCategoryDto dto = new StockCategoryDto();
    dto.setMessage("Category not found for given id: "+categoryId);
    return dto;
}

}

您不应该在setup方法中重新分配ModelMapper 删除此方法

而且我在您的代码模拟定义中mapper.getConfiguration()

when(mapper.getConfiguration()).thenReturn(...)

您应该告诉它模仿。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM