Spring MVC kullanılarak oluşturulan çok basit bir REST uygulamasına sahibim. (Kod GitHub mevcuttur.) Aşağıdaki gibi basit bir WebSecurityConfigurer
sahiptir:Birim MockMvc kullanarak Spring MVC'de test etme/oturum açma
@Override
protected void configure(HttpSecurity httpSecurity) throws Exception {
httpSecurity
.csrf().disable()
.exceptionHandling()
.authenticationEntryPoint(authenticationEntryPoint)
.and()
.authorizeRequests()
.antMatchers("/user/new").permitAll()
.anyRequest().authenticated()
.and()
.formLogin()
.loginPage("/login").permitAll()
.successHandler(authenticationSuccessHandler)
.failureHandler(authenticationFailureHandler)
.and()
.logout()
.permitAll()
.logoutSuccessHandler(logoutSuccessHandler);
}
Ben özel denetleyicileri ve giriş hem uygulamayı çalıştırdığınızda/çıkış sayfaları sorunsuz çalışır. MockMvc
aracılığıyla unit test/user/new
'u bile yapabilirim.
MockHttpServletRequest:
HTTP Method = POST
Request URI = /login
Parameters = {username=[test-user-UserControllerTest], password=[test-user-UserControllerTest-password]}
Headers = {}
Handler:
Type = org.springframework.web.servlet.resource.ResourceHttpRequestHandler
Async:
Was async started = false
Async result = null
Resolved Exception:
Type = org.springframework.web.HttpRequestMethodNotSupportedException
ModelAndView:
View name = null
View = null
Model = null
FlashMap:
MockHttpServletResponse:
Status = 405
Error message = Request method 'POST' not supported
Headers = {Allow=[HEAD, GET]}
Content type = null
Body =
Forwarded URL = null
Redirected URL = null
Cookies = []
java.lang.AssertionError: Status expected:<200> but was:<405>
Ama testin yerine uygulamayı çalıştırdığınızda oldukça kullanıcıya POST
çalışıyor /login
için duyuyorum: Ancak, ne zaman şöyle başarısız aşağıdaki fonksiyonu
@Test
public void testUserLogin() throws Exception {
RequestBuilder requestBuilder = post("/login")
.param("username", testUser.getUsername())
.param("password", testUser.getPassword());
mockMvc.perform(requestBuilder)
.andDo(print())
.andExpect(status().isOk())
.andExpect(cookie().exists("JSESSIONID"));
}
ile /login
test etmeye çalışacağım. Ayrıca, bir GET
veya HEAD
isteğini (günlüğün Headers = {Allow=[HEAD, GET]}
satırında önerildiği gibi) yapmaya çalıştığımda, bu sefer 404 alırsınız. Neler olup bittiği hakkında herhangi bir fikir ve nasıl giderebilirim?
Inanıyorum/giriş URL'si bahar güvenlik filtresi ile işlenir ve test ayarınız sırasında – sodik