我有以下带有动态查询的服务类。
public class CarService {
public Page<Cars> getAllCars(CarRequest request, ,, String carCarrier, String carNumber,Pageable pageRequest){
String userCarrier = request.getSubCarrier();
Specification <Car> carSpecification = null;
carSpecification = getCarDetails(request, carCarrier, carNumber);
return carRepository.findAll(carSpecification, pageRequest);
}
public Specification<Car> getCarDetails(CarRequest request, String carCarrier, String carNumber) {
System.out.println("I am in query");
return (Root<Car> root, CriteriaQuery<?> query, CriteriaBuilder cb) -> {
System.out.println("I am executing query");
List<Predicate> predicates = new ArrayList<>();
if(StringUtils.isNotBlank(request.getCarColor())) {
predicates.add(cb.and(cb.equal(root.get(“carColor”), request.getCarColor())));
}
if(StringUtils.isNotBlank(carCarrier)) {
predicates.add(cb.and(root.get("carCarrier”),carCarrier)));
}
if(StringUtils.isNotBlank(carNumber)) {
predicates.add(cb.and(cb.equal(root.get("carNumber"), carNumber)));
}
return cb.and(predicates.toArray(new Predicate[predicates.size()]));
};
}
}
下面是我的测试类,我正在尝试测试动态查询。
public class CarServiceTest {
@Mock
private CarService carService;
@Test
public void test_cars() {
Pageable pageRequest = new PageRequest(0,20);
CarRequest request = new CarRequest();
request.setCarColor(“Red”);
request.setCarMake(“Nissan”);
when(carRepository.findAll(Mockito.any(Specification.class), Mockito.eq(pageRequest)))
.thenReturn(Mockito.mock(Page.class));
Assert.assertNotNull(carService.getAllCars(request, pageRequest));
}
}
上面的测试用例有效,但它只是输入 getCarDetails 并打印第一行“我正在查询”并返回。它不会进一步检查查询中的条件子句。
我还尝试直接从测试类调用该方法
carService.getCarDetails(carRequest. "ABC", “A123”);
结果还是一样。我最近开始使用 Mockito,所以我不确定我是否在这里遗漏了导致此行为的某些内容。
我如何确保我的所有行都从代码覆盖率的角度执行。
慕妹3242003
相关分类