Junit测试用例:java.lang.exception:json不能为null或为空

时间:2018-04-26 08:09:55

标签: unit-testing spring-data-jpa mockito junit4

我正在尝试使用JUnitmockito为控制器编写测试用例。但我收到错误,因为JSON不能为null或为空。任何人都可以告诉我我做错了什么?

DepartmentController

@RestController
@RequestMapping("/api.spacestudy.com/SpaceStudy")
public class DepartmentController {

    @Autowired
    DepartmentService depService;

    @GetMapping("/Control/SearchFilter/loadDepartments")
    public ResponseEntity<Set<Department>> findDepName() {

        Set<Department> depname = depService.findDepName();
        return ResponseEntity.ok(depname);
    }

DepartmentControllerTest

@RunWith(SpringJUnit4ClassRunner.class)
public class DepartmentControllerTest {

    private MockMvc mockMvc;

   @Mock
   public DepartmentService depService;  

   @InjectMocks
   DepartmentController departmentController;

   @Before
    public void setup() throws Exception    {
        mockMvc = MockMvcBuilders.standaloneSetup(departmentController).build(); 
    }
    @Test(timeout = 10000)
       public void findDepNameTest() throws Exception
       {
           Department dep = new Department();
           dep.setsDeptName("ABC");

           Set<Department> department = new  HashSet<Department>();
           department.add(dep);

           Mockito.when(depService.findDepName()).thenReturn(department);

        mockMvc.perform(get("/api.spacestudy.com/SpaceStudy/LoadDept").accept(MediaType.APPLICATION_JSON))
                .andExpect(status().isOk())
                .andExpect(jsonPath("$[0].sDeptName" , is("abc")));


       }

    }

失败追踪

java.lang.AssertionError: No value at JSON path "$[0].sDeptName", exception: json can not be null or empty
    at org.springframework.test.util.JsonPathExpectationsHelper.evaluateJsonPath(JsonPathExpectationsHelper.java:245)
    at org.springframework.test.util.JsonPathExpectationsHelper.assertValue(JsonPathExpectationsHelper.java:73)
    at org.springframework.test.web.servlet.result.JsonPathResultMatchers$1.match(JsonPathResultMatchers.java:87)
    at org.springframework.test.web.servlet.MockMvc$1.andExpect(MockMvc.java:171)
    at com.spacestudy.DepartmentControllerTest.findDepNameTest(DepartmentControllerTest.java:76)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at 

1 个答案:

答案 0 :(得分:0)

我发现了自己的错误。我在上面的代码中给出了获取请求的错误路径。我改变了这条道路并正常运作。

mockMvc.perform(get("/api.spacestudy.com/SpaceStudy/Control/SearchFilter/loadDepartmentsLoadDept").accept(MediaType.APPLICATION_JSON))