aboutsummaryrefslogtreecommitdiff
path: root/juick-api/src/test/java/com/juick/api/tests/MessagesTests.java
diff options
context:
space:
mode:
authorGravatar Alexander Alexeev2016-12-01 00:34:25 +0700
committerGravatar Alexander Alexeev2016-12-01 00:34:25 +0700
commit92d6700919e87c81db4a42a4b286257f62566cbf (patch)
treee1ff4baee90c20194593e6886c6769f442890d19 /juick-api/src/test/java/com/juick/api/tests/MessagesTests.java
parent92f638429647d328d8a6b6168755b148ec237d3a (diff)
remember-me for juick-api by request parameter
Diffstat (limited to 'juick-api/src/test/java/com/juick/api/tests/MessagesTests.java')
-rw-r--r--juick-api/src/test/java/com/juick/api/tests/MessagesTests.java19
1 files changed, 12 insertions, 7 deletions
diff --git a/juick-api/src/test/java/com/juick/api/tests/MessagesTests.java b/juick-api/src/test/java/com/juick/api/tests/MessagesTests.java
index 33704fc5..05744a61 100644
--- a/juick-api/src/test/java/com/juick/api/tests/MessagesTests.java
+++ b/juick-api/src/test/java/com/juick/api/tests/MessagesTests.java
@@ -19,7 +19,6 @@ import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.Primary;
import org.springframework.http.MediaType;
-import org.springframework.security.crypto.codec.Base64;
import org.springframework.security.test.web.servlet.setup.SecurityMockMvcConfigurers;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@@ -29,7 +28,6 @@ import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import org.springframework.web.context.WebApplicationContext;
import javax.inject.Inject;
-import javax.servlet.http.Cookie;
import java.util.*;
import static org.hamcrest.Matchers.hasSize;
@@ -158,6 +156,8 @@ public class MessagesTests {
User user = getUser(1, ugnichName, uginchPassword);
Message msg = getMessage(user, msgText);
+ when(userService.getUIDbyName(ugnichName))
+ .thenReturn(1);
when(userService.getUserByName(ugnichName))
.thenReturn(user);
when(userService.getUserByUID(1))
@@ -171,12 +171,17 @@ public class MessagesTests {
when(userService.getUIDbyHash(hash))
.thenReturn(1);
- Cookie cookie = new Cookie("hash", new String(Base64.encode(hash.getBytes())));
- cookie.setDomain("juick.com");
- cookie.setMaxAge(100);
-
mockMvc.perform(
- get("/home").cookie(cookie))
+ get("/home")
+ .with(httpBasic(ugnichName, uginchPassword)))
+ .andExpect(status().isOk())
+ .andReturn();
+
+ when(userService.getUserByHash(hash))
+ .thenReturn(user);
+
+ mockMvc.perform(get("/home")
+ .param("hash", hash))
.andExpect(status().isOk());
}