我目前正在开发一个 rest api Web 服务,我必须使用单元测试来测试它们,所以我无法弄清楚如何使用 Mockito 和 Junit 使用 Spring 测试 RESTFul API,首先我已经准备好了我在其中使用 @Before 和 @Test 创建两个方法的类,当我在调试模式下转时,控件中的方法"getEmployeDTOList"总是返回 null,因此控制台向我显示异常 NullPointerException。
类 雇用控制器测试:
@RunWith(SpringJUnit4ClassRunner.class)
public class EmployeControllerTest {
private MockMvc mockMvc;
@InjectMocks
private EmployeController employeController ;
@Mock
private EmployeService employeService ;
@Mock
IConverter converterDto ;
@Before
public void setUp() throws Exception{
MockitoAnnotations.initMocks(this);
mockMvc=MockMvcBuilders.standaloneSetup(employeController).build();
}
@Test
public void testgetAllEmployee() throws Exception{
List<Employe> employes= Arrays.asList(
new Employe("BOUROUNIA", "HICHEM", "h.bourounia", "9dfd1be37de137f146ca990310a1483c",true)
,new Employe("BRADAI", "ALI", "a.bradai", "830ddf1b7e8e34261f49d20e5e549338",true) );
when(employeService.findAll()).thenReturn(employes);
mockMvc.perform(get("/employe/dto"))
.andExpect(status().isOk())
.andExpect(MockMvcResultMatchers.content().contentType(MediaType.APPLICATION_JSON_UTF8_VALUE))
.andExpect(jsonPath("$", hasSize(2)))
.andExpect(jsonPath("$[0].nom", is("BOUROUNIA")))
.andExpect(jsonPath("$[0].prenom", is("HICHEM")))
.andExpect(jsonPath("$[0].login", is("h.bourounia")))
.andExpect(jsonPath("$[0].mp", is("9dfd1be37de137f146ca990310a1483c")))
.andExpect(jsonPath("$[0].actif", is(true)))
.andExpect(jsonPath("$[1].nom", is("BRADAI")))
.andExpect(jsonPath("$[1].prenom", is("ALI")))
.andExpect(jsonPath("$[1].login", is("a.bradai")))
.andExpect(jsonPath("$[1].mp", is("830ddf1b7e8e34261f49d20e5e549338")))
.andExpect(jsonPath("$[1].actif", is(true))).andReturn().getResponse().getContentAsString();
verify(employeService,times(1)).findAll();
verifyNoMoreInteractions(employeService);
}
}
这是雇佣控制器:
@CrossOrigin(origins = "*", allowedHeaders = "*")
@RestController
@RequestMapping("/employe")
public class EmployeController {
@GetMapping("/dto")
public List<EmployeDTO > getEmployeDTOList(){
try {
List<Employe> listemp=employeService.findAll();
return listemp.stream()
.filter(Objects::nonNull)
.map(emp ->converterDTO.convertToDto(emp))
.collect(Collectors.toList());
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
}
我得到的错误:
java.lang.AssertionError: JSON 路径 "$[0].id" 处没有值: com.jayway.jsonpath.PathNotFoundException:预期查找对象 在路径 $[0] 中具有属性 ['id'],但找到"null"。这不是 json 对象根据 JsonProvider:'com.jayway.jsonpath.spi.json.JsonSmartJsonProvider'
我也是 rest api Web 服务和单元测试的新手。根据我的经验,jsonPath 不应该jsonPath("$.employes[0].mp")
而不是jsonPath("$[0].mp").
原因是,由于它返回一个 ArrayList,您必须指示保存数据的对象。我使用的语法是 $.ArrayListName[elementPosition].columnName
.