我这样修正测试:
@SpringBootTest
@WebAppConfiguration
@ContextConfiguration(classes = {CoreTestSpringConfiguration.class})
@RunWith(SpringRunner.class)
public class NewStudentTest {
@Autowired
protected WebApplicationContext wac;
protected MockMvc mockMvc;
@MockBean
SaveStudentCommand saveStudentCommand;
@Before
public void setupMockMvc() {
mockMvc = MockMvcBuilders
.webAppContextSetup(wac)
.build();
}
@Test
public void createStudentTest() throws Exception {
String jsonLineTest = "[{username:\"532g326\"} ,{name:\"Franco\"} ,{username:\"432ih4j\"} ,{name:\"Ciccio\"} ]";
Student s1 = new Student();
Student s2 = new Student();
List<Student> students = new ArrayList<>();
((Student) s1).setUsername("532g326");
((Student) s1).setName("Franco");
((Student) s2).setUsername("432ih4j");
((Student) s2).setName("Ciccio");
students.add(s1);
students.add(s2);
when(saveStudentCommand.execute()).thenReturn(jsonLineTest);
MvcResult result=mockMvc.perform(post("/credentials/student")
.accept(MediaType.APPLICATION_JSON).accept(MediaType.APPLICATION_JSON).content(jsonLineTest))
.andDo(print())
.andExpect(status().isOk())
.andReturn();
String content=result.getResponse().getContentAsString();
}
}
,现在,根据此新配置,测试失败,显示: java.lang.AssertionError:预期状态:<200>,但<404>。
我想这个答案是由控制台中显示的相同问题引起的:
在DispatcherServlet中未找到名称为“;”的HTTP请求的URI [/ credentials / student]映射;
我不明白上面的最后一条消息。找不到哪个DispatcherServlet?我该如何解决这个问题?提前谢谢
答案 0 :(得分:0)
在Spring.io Getting Started pages for testing requests上有一个非常不错的教程,如果您只是开始学习Spring,那么如果您要进行测试,那么我将从这里开始。
它会逐步进行操作,以构建用于HTTP请求的整个测试套件,并应为您提供帮助。 (他们在指南的中途介绍了MockMvc,并使用@AutoConfigureMockMvc
注释而不是自己进行任何配置)