diff options
author | Vitaly Takmazov | 2018-10-04 19:33:03 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-10-04 19:33:03 +0300 |
commit | 0cb00c61bd1ab203c66878d3c313b6f40b4cc707 (patch) | |
tree | b2d92995d1e33593908d9bfb420205f821452a77 /juick-server/src/test/java/com/juick/server | |
parent | 9848227c11f3cc4c0ccf6e01d0185c5fda506e80 (diff) |
fix some tests, disable Note endpoint until negotiation fixed
Diffstat (limited to 'juick-server/src/test/java/com/juick/server')
-rw-r--r-- | juick-server/src/test/java/com/juick/server/tests/ServerTests.java | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/juick-server/src/test/java/com/juick/server/tests/ServerTests.java b/juick-server/src/test/java/com/juick/server/tests/ServerTests.java index 386b989a..3c59fde0 100644 --- a/juick-server/src/test/java/com/juick/server/tests/ServerTests.java +++ b/juick-server/src/test/java/com/juick/server/tests/ServerTests.java @@ -1692,7 +1692,7 @@ public class ServerTests { @Test public void signingSpec() throws IOException { Key fromKey = new Key(); - fromKey.setId("to-key-id"); + fromKey.setId("http://localhost:8080/u/freefd#main-key"); Person from = new Person(); from.setPublicKey(fromKey); Person to = new Person(); @@ -1708,4 +1708,15 @@ public class ServerTests { .andExpect(status().isOk()).andReturn(); String xrd = result.getResponse().getContentAsString(); } + @Test + public void contentNegotiationTest() throws Exception { + int mid = messagesService.createMessage(ugnich.getUid(),"TXT", null, Collections.emptyList()); + mockMvc.perform(get("/m/" + mid) + .header("Accept", "text/html")).andExpect(status().is3xxRedirection()); + mockMvc.perform(get("/m/" + mid) + .header("Accept", "application/activity+json")).andExpect(status().isOk()); + mockMvc.perform(get("/m/" + mid) + .header("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8")) + .andExpect(status().is3xxRedirection()); + } } |