概括
我们正在尝试使用 Pageable 和 Slice 对象模拟对 DB 的调用,但是当应用程序调用时,模拟没有返回分配的返回值。
详细介绍
我们有一个 Pageable 方法Spring-Data Repository:
public interface CatRepository extends CouchbasePagingAndSortingRepository<Cat, String> {
Slice<Cat> findAllByOwnerIdAndName(String ownerId, String name, Pageable pageable);
由于Slice是一个接口,我们创建了一个MockSlice实现其方法的类:
@Builder
@Data
public class MockSlice implements Slice{
...
Mockito在为此调用创建测试时,我们编写了以下代码:
Slice<Cat> slice = MockSlice.builder().content(new LinkedList()).build();
when(catRepository.findAllByOwnerIdAndname(anyString(), anyString(), any(Pageable.class))).thenReturn(slice);
测试类有这些注释:
@RunWith(MockitoJUnitRunner.class)
@SpringBootTest
public class GetCatsTest{
但是,在服务类中,当单元测试运行时,以下slice是null:
Pageable pageable = PageRequest.of(pageNumber, 1000, Sort.by("id"));
Slice<Cat> slice = catRepository.findAllByOwnerIdAndName("23423", "Oscar", pageable);
catList = slice.getContent(); <-- NullpointetException here
编辑
为了确保接线正确,并且整个 conf 工作正常,我在存储库中添加了另一个不可分页的方法,对其进行了模拟并且工作正常:
在测试类中:
LinkedList<Cat> list = new LinkedList<>();
list.add(new Cat("fasdfasf", "Oscar"));
when(catRepository.findAllByOwnerIdAndName(anyString(), anyString())).thenReturn(list);
在存储库界面中:
List<Cat> findAllByOwnerIdAndName(String ownerId, String name);
大话西游666
相关分类