Skip to content
Snippets Groups Projects
Commit f3ca6e58 authored by Paul-Christian Volkmer's avatar Paul-Christian Volkmer
Browse files

Check result media type in controller tests

parent 784260a8
No related merge requests found
...@@ -71,6 +71,7 @@ public class FeedbackControllerTest { ...@@ -71,6 +71,7 @@ public class FeedbackControllerTest {
userService.setUserAuthenticated(true); userService.setUserAuthenticated(true);
mockMvc.perform(get("/session/87654321/feedback").accept(MediaType.APPLICATION_JSON)) mockMvc.perform(get("/session/87654321/feedback").accept(MediaType.APPLICATION_JSON))
.andExpect(status().isOk()) .andExpect(status().isOk())
.andExpect(content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON))
.andExpect(jsonPath("$.values").isArray()); .andExpect(jsonPath("$.values").isArray());
} }
......
...@@ -13,6 +13,7 @@ import org.junit.Before; ...@@ -13,6 +13,7 @@ import org.junit.Before;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.GrantedAuthority; import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.context.SecurityContextHolder; import org.springframework.security.core.context.SecurityContextHolder;
...@@ -47,10 +48,10 @@ public class LecturerQuestionControllerTest { ...@@ -47,10 +48,10 @@ public class LecturerQuestionControllerTest {
@Autowired @Autowired
private WebApplicationContext webApplicationContext; private WebApplicationContext webApplicationContext;
private void setAuthenticated(boolean isAuthenticated, String username) { private void setAuthenticated(final boolean isAuthenticated, final String username) {
if (isAuthenticated) { if (isAuthenticated) {
List<GrantedAuthority> ga = new ArrayList<GrantedAuthority>(); final List<GrantedAuthority> ga = new ArrayList<GrantedAuthority>();
UsernamePasswordAuthenticationToken token = new UsernamePasswordAuthenticationToken(username, "secret", ga); final UsernamePasswordAuthenticationToken token = new UsernamePasswordAuthenticationToken(username, "secret", ga);
SecurityContextHolder.getContext().setAuthentication(token); SecurityContextHolder.getContext().setAuthentication(token);
userService.setUserAuthenticated(isAuthenticated, username); userService.setUserAuthenticated(isAuthenticated, username);
} else { } else {
...@@ -74,33 +75,49 @@ public class LecturerQuestionControllerTest { ...@@ -74,33 +75,49 @@ public class LecturerQuestionControllerTest {
public void testShouldNotGetLecturerQuestionsIfUnauthorized() throws Exception { public void testShouldNotGetLecturerQuestionsIfUnauthorized() throws Exception {
setAuthenticated(false, "nobody"); setAuthenticated(false, "nobody");
mockMvc.perform(get("/lecturerquestion/").param("sessionkey", "12345678").param("lecturequestionsonly", "true")) mockMvc.perform(
.andExpect(status().isUnauthorized()); get("/lecturerquestion/")
.param("sessionkey", "12345678").param("lecturequestionsonly", "true")
.accept(MediaType.APPLICATION_JSON)
).andExpect(status().isUnauthorized()
);
} }
@Test @Test
public void testShouldNotGetPreparationQuestionsIfUnauthorized() throws Exception { public void testShouldNotGetPreparationQuestionsIfUnauthorized() throws Exception {
setAuthenticated(false, "nobody"); setAuthenticated(false, "nobody");
mockMvc.perform(get("/lecturerquestion/").param("sessionkey", "12345678").param("preparationquestionsonly", "true")) mockMvc.perform(
.andExpect(status().isUnauthorized()); get("/lecturerquestion/")
.param("sessionkey", "12345678").param("preparationquestionsonly", "true")
.accept(MediaType.APPLICATION_JSON)
).andExpect(status().isUnauthorized()
);
} }
@Test @Test
public void testShouldReturnQuestionCount() throws Exception { public void testShouldReturnQuestionCount() throws Exception {
setAuthenticated(true, "somebody"); setAuthenticated(true, "somebody");
mockMvc.perform(get("/lecturerquestion/count").param("sessionkey", "12345678").param("lecturequestionsonly", "true")) mockMvc.perform(
.andExpect(status().isOk()) get("/lecturerquestion/count")
.andExpect(content().string("0")); .param("sessionkey", "12345678").param("lecturequestionsonly", "true")
.accept(MediaType.APPLICATION_JSON)
).andExpect(status().isOk())
.andExpect(content().string("0")
);
} }
@Test @Test
public void testShouldReturnXDeprecatedApiHeaderForQuestionCount() throws Exception { public void testShouldReturnXDeprecatedApiHeaderForQuestionCount() throws Exception {
setAuthenticated(true, "somebody"); setAuthenticated(true, "somebody");
mockMvc.perform(get("/lecturerquestion/count").param("sessionkey", "12345678").param("lecturequestionsonly", "true")) mockMvc.perform(
.andExpect(status().isOk()) get("/lecturerquestion/count")
.andExpect(header().string(AbstractController.X_DEPRECATED_API, "1")); .param("sessionkey", "12345678").param("lecturequestionsonly", "true")
.accept(MediaType.APPLICATION_JSON)
).andExpect(status().isOk())
.andExpect(header().string(AbstractController.X_DEPRECATED_API, "1")
);
} }
} }
...@@ -21,6 +21,7 @@ package de.thm.arsnova.controller; ...@@ -21,6 +21,7 @@ package de.thm.arsnova.controller;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.redirectedUrl; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.redirectedUrl;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
...@@ -28,6 +29,7 @@ import org.junit.Before; ...@@ -28,6 +29,7 @@ import org.junit.Before;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.Authentication; import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContextHolder; import org.springframework.security.core.context.SecurityContextHolder;
...@@ -66,15 +68,22 @@ public class LoginControllerTest { ...@@ -66,15 +68,22 @@ public class LoginControllerTest {
@Test @Test
public void testGuestLogin() throws Exception { public void testGuestLogin() throws Exception {
mockMvc.perform(get("/doLogin").param("type", "guest")).andExpect(status().isMovedTemporarily()).andExpect(redirectedUrl("/#auth/checkLogin")); mockMvc.perform(
get("/doLogin")
.param("type", "guest")
).andExpect(status().isMovedTemporarily())
.andExpect(redirectedUrl("/#auth/checkLogin"));
} }
@Test @Test
public void testReuseGuestLogin() throws Exception { public void testReuseGuestLogin() throws Exception {
mockMvc.perform(get("/doLogin").param("type", "guest").param("user","Guest1234567890")) mockMvc.perform(
.andExpect(status().isMovedTemporarily()).andExpect(redirectedUrl("/#auth/checkLogin")); get("/doLogin")
.param("type", "guest").param("user","Guest1234567890")
).andExpect(status().isMovedTemporarily())
.andExpect(redirectedUrl("/#auth/checkLogin"));
Authentication auth = SecurityContextHolder.getContext() final Authentication auth = SecurityContextHolder.getContext()
.getAuthentication(); .getAuthentication();
assertEquals(auth.getClass(), UsernamePasswordAuthenticationToken.class); assertEquals(auth.getClass(), UsernamePasswordAuthenticationToken.class);
assertEquals("Guest1234567890", auth.getName()); assertEquals("Guest1234567890", auth.getName());
...@@ -85,13 +94,17 @@ public class LoginControllerTest { ...@@ -85,13 +94,17 @@ public class LoginControllerTest {
public void testUser() throws Exception { public void testUser() throws Exception {
userService.setUserAuthenticated(true); userService.setUserAuthenticated(true);
mockMvc.perform(get("/whoami")) mockMvc.perform(get("/whoami").accept(MediaType.APPLICATION_JSON))
.andExpect(status().isOk()) .andExpect(status().isOk())
.andExpect(content().string("{\"username\":\"ptsr00\",\"type\":\"ldap\",\"role\":null}")); .andExpect(content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON))
.andExpect(jsonPath("$.username").value("ptsr00"))
.andExpect(jsonPath("$.type").value("ldap"));
} }
@Test @Test
public void testLogoutWithoutRedirect() throws Exception { public void testLogoutWithoutRedirect() throws Exception {
mockMvc.perform(get("/logout")).andExpect(status().isMovedTemporarily()).andExpect(redirectedUrl("/")); mockMvc.perform(get("/logout"))
.andExpect(status().isMovedTemporarily())
.andExpect(redirectedUrl("/"));
} }
} }
...@@ -49,10 +49,10 @@ public class SessionControllerTest { ...@@ -49,10 +49,10 @@ public class SessionControllerTest {
@Autowired @Autowired
private WebApplicationContext webApplicationContext; private WebApplicationContext webApplicationContext;
private void setAuthenticated(boolean isAuthenticated, String username) { private void setAuthenticated(final boolean isAuthenticated, final String username) {
if (isAuthenticated) { if (isAuthenticated) {
List<GrantedAuthority> ga = new ArrayList<GrantedAuthority>(); final List<GrantedAuthority> ga = new ArrayList<GrantedAuthority>();
UsernamePasswordAuthenticationToken token = new UsernamePasswordAuthenticationToken(username, "secret", ga); final UsernamePasswordAuthenticationToken token = new UsernamePasswordAuthenticationToken(username, "secret", ga);
SecurityContextHolder.getContext().setAuthentication(token); SecurityContextHolder.getContext().setAuthentication(token);
userService.setUserAuthenticated(isAuthenticated, username); userService.setUserAuthenticated(isAuthenticated, username);
} else { } else {
...@@ -76,7 +76,7 @@ public class SessionControllerTest { ...@@ -76,7 +76,7 @@ public class SessionControllerTest {
public void testShouldNotGetUnknownSession() throws Exception { public void testShouldNotGetUnknownSession() throws Exception {
setAuthenticated(true, "ptsr00"); setAuthenticated(true, "ptsr00");
mockMvc.perform(get("/session/00000000")) mockMvc.perform(get("/session/00000000").accept(MediaType.APPLICATION_JSON))
.andExpect(status().isNotFound()); .andExpect(status().isNotFound());
} }
...@@ -84,7 +84,7 @@ public class SessionControllerTest { ...@@ -84,7 +84,7 @@ public class SessionControllerTest {
public void testShouldNotGetUnknownSessionIfUnauthorized() throws Exception { public void testShouldNotGetUnknownSessionIfUnauthorized() throws Exception {
setAuthenticated(false, "ptsr00"); setAuthenticated(false, "ptsr00");
mockMvc.perform(get("/session/00000000")) mockMvc.perform(get("/session/00000000").accept(MediaType.APPLICATION_JSON))
.andExpect(status().isUnauthorized()); .andExpect(status().isUnauthorized());
} }
...@@ -92,15 +92,20 @@ public class SessionControllerTest { ...@@ -92,15 +92,20 @@ public class SessionControllerTest {
public void testShouldCreateSessionIfUnauthorized() throws Exception { public void testShouldCreateSessionIfUnauthorized() throws Exception {
setAuthenticated(false, "ptsr00"); setAuthenticated(false, "ptsr00");
mockMvc.perform(post("/session/").contentType(MediaType.APPLICATION_JSON).content("{\"keyword\":12345678}")) mockMvc.perform(
.andExpect(status().isUnauthorized()); post("/session/")
.accept(MediaType.APPLICATION_JSON)
.contentType(MediaType.APPLICATION_JSON)
.content("{\"keyword\":12345678}")
)
.andExpect(status().isUnauthorized());
} }
@Test @Test
public void testShouldNotReturnMySessionsIfUnauthorized() throws Exception { public void testShouldNotReturnMySessionsIfUnauthorized() throws Exception {
setAuthenticated(false, "ptsr00"); setAuthenticated(false, "ptsr00");
mockMvc.perform(get("/session/").param("ownedonly", "true")) mockMvc.perform(get("/session/").param("ownedonly", "true").accept(MediaType.APPLICATION_JSON))
.andExpect(status().isUnauthorized()); .andExpect(status().isUnauthorized());
} }
...@@ -108,7 +113,7 @@ public class SessionControllerTest { ...@@ -108,7 +113,7 @@ public class SessionControllerTest {
public void testShouldNotReturnMyVisitedSessionsIfUnauthorized() throws Exception { public void testShouldNotReturnMyVisitedSessionsIfUnauthorized() throws Exception {
setAuthenticated(false, "ptsr00"); setAuthenticated(false, "ptsr00");
mockMvc.perform(get("/session/").param("visitedonly", "true")) mockMvc.perform(get("/session/").param("visitedonly", "true").accept(MediaType.APPLICATION_JSON))
.andExpect(status().isUnauthorized()); .andExpect(status().isUnauthorized());
} }
...@@ -116,7 +121,7 @@ public class SessionControllerTest { ...@@ -116,7 +121,7 @@ public class SessionControllerTest {
public void testShouldShowUnimplementedIfNoFlagIsSet() throws Exception { public void testShouldShowUnimplementedIfNoFlagIsSet() throws Exception {
setAuthenticated(false, "ptsr00"); setAuthenticated(false, "ptsr00");
mockMvc.perform(get("/session/")) mockMvc.perform(get("/session/").accept(MediaType.APPLICATION_JSON))
.andExpect(status().isNotImplemented()); .andExpect(status().isNotImplemented());
} }
...@@ -124,8 +129,9 @@ public class SessionControllerTest { ...@@ -124,8 +129,9 @@ public class SessionControllerTest {
public void testShouldReturnActiveUserCount() throws Exception { public void testShouldReturnActiveUserCount() throws Exception {
setAuthenticated(false, "ptsr00"); setAuthenticated(false, "ptsr00");
mockMvc.perform(get("/session/12345678/activeusercount")) mockMvc.perform(get("/session/12345678/activeusercount").accept(MediaType.APPLICATION_JSON))
.andExpect(status().isOk()) .andExpect(status().isOk())
.andExpect(content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON))
.andExpect(content().string("0")); .andExpect(content().string("0"));
} }
...@@ -133,7 +139,7 @@ public class SessionControllerTest { ...@@ -133,7 +139,7 @@ public class SessionControllerTest {
public void testShouldReturnXDeprecatedApiHeaderForActiveUserCount() throws Exception { public void testShouldReturnXDeprecatedApiHeaderForActiveUserCount() throws Exception {
setAuthenticated(false, "ptsr00"); setAuthenticated(false, "ptsr00");
mockMvc.perform(get("/session/12345678/activeusercount")) mockMvc.perform(get("/session/12345678/activeusercount").accept(MediaType.APPLICATION_JSON))
.andExpect(status().isOk()) .andExpect(status().isOk())
.andExpect(header().string(AbstractController.X_DEPRECATED_API, "1")); .andExpect(header().string(AbstractController.X_DEPRECATED_API, "1"));
} }
......
...@@ -74,6 +74,7 @@ public class StatisticsControllerTest { ...@@ -74,6 +74,7 @@ public class StatisticsControllerTest {
public final void testShouldGetStatistics() throws Exception { public final void testShouldGetStatistics() throws Exception {
mockMvc.perform(get("/statistics").accept(MediaType.APPLICATION_JSON)) mockMvc.perform(get("/statistics").accept(MediaType.APPLICATION_JSON))
.andExpect(status().isOk()) .andExpect(status().isOk())
.andExpect(content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON))
.andExpect(jsonPath("$.answers").value(0)) .andExpect(jsonPath("$.answers").value(0))
.andExpect(jsonPath("$.questions").value(0)) .andExpect(jsonPath("$.questions").value(0))
.andExpect(jsonPath("$.openSessions").value(3)) .andExpect(jsonPath("$.openSessions").value(3))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment