我无法验证jsonPath所做的一切是否适合我的控制器。我是测试领域的新手,我已经选择了一个推荐网站,但是设计中有很多东西很有特色,所以很难找到一些答案。如果有人可以帮助我,我将不胜感激。代码:
package test
public class FormControllerTest {
private MockMvc mockMvc;
@Mock
private FormServiceImpl formService;
@Mock
private UserServiceImpl userService;
@InjectMocks
private FormController formController;
@Before
public void init() {
MockitoAnnotations.initMocks(this);
mockMvc = MockMvcBuilders
.standaloneSetup(formController)
.build();
}
测试:
@Test
public void test_get_Form_success() throws Exception {
SimpleDateFormat formato = new SimpleDateFormat("yyyy-mm-dd HH:mm:ss");
Date data = formato.parse("2017-01-03 02:00:02");
Date data2 = formato.parse("2017-01-05 02:00:02");
Form form = new Form().id(1).name("formTest")
.active(true).description("Formtesting")
.dateInit(data).dateEnd(data2);
//List<Form> forms = Arrays.asList(form.dateInit(data).dateEnd(data2));
//System.out.println(form.getDateEnd());
when(formService.findOneForm(form.getId())).thenReturn(form);
mockMvc.perform(get("/form/{id}",form.getId()))
.andExpect(status().isOk())
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
.andExpect(jsonPath("$.id", is(1)))
.andExpect(jsonPath("$.name", is("formTest")))
.andExpect(jsonPath("$.active", is(true)))
.andExpect(jsonPath("$.description", is("Formtesting")))
.andExpect(jsonPath("$.dateInit", is(form.getDateInit())))
.andExpect(jsonPath("$.dateEnd", is(form.getDateEnd())));
verify(formService, times(2)).findOneForm(form.getId());
verifyNoMoreInteractions(formService);
}
错误
java.lang.AssertionError:JSON路径&#34; $ .dateInit&#34;预计:是星期二(1月 03 02:00:02 BRST 2017) 但是:是&#34; 2017-01-03 04:00:02&#34;
然后它在执行结束时增加了2个小时,如何解决这个问题?
答案 0 :(得分:1)
SimpleDateFormat formato = new SimpleDateFormat("yyyy-mm-dd HH:mm:ss");
不正确。应该是yyyy-MM-dd。
请参阅:https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html