X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Ftest%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffcp%2FAbstractSoneCommandTest.java;h=3ac732831eca55458323bbde61a79554b49c4ef7;hb=959c51e271d7da6566ecd13b912ede0d5e627b3d;hp=787baea922eb379c57813c7405820393fb3696bf;hpb=6e31405f788fac2cc7cb1b904e8f63b3ced4398b;p=Sone.git diff --git a/src/test/java/net/pterodactylus/sone/fcp/AbstractSoneCommandTest.java b/src/test/java/net/pterodactylus/sone/fcp/AbstractSoneCommandTest.java index 787baea..3ac7328 100644 --- a/src/test/java/net/pterodactylus/sone/fcp/AbstractSoneCommandTest.java +++ b/src/test/java/net/pterodactylus/sone/fcp/AbstractSoneCommandTest.java @@ -17,6 +17,7 @@ package net.pterodactylus.sone.fcp; +import static com.google.common.base.Optional.fromNullable; import static com.google.common.base.Optional.of; import static java.util.Arrays.asList; import static java.util.UUID.randomUUID; @@ -229,11 +230,17 @@ public class AbstractSoneCommandTest { PostReply postReply = mock(PostReply.class); when(postReply.getId()).thenReturn(randomUUID().toString()); when(postReply.getSone()).thenReturn(sone); - when(postReply.getTime()).thenReturn((long) (Math.random() * Long.MAX_VALUE)); + when(postReply.getTime()).thenReturn(System.currentTimeMillis()); when(postReply.getText()).thenReturn(text); return postReply; } + private PostReply createFuturePostReply(Sone sone, String text) { + PostReply postReply = createPostReply(sone, text); + when(postReply.getTime()).thenReturn(System.currentTimeMillis() + 86400000); + return postReply; + } + @Test public void testEncodingLikes() throws FSParseException { List likes = prepareMultipleSones(); @@ -324,7 +331,8 @@ public class AbstractSoneCommandTest { @Test public void testParsingAPost() throws FcpException { - Post post = createPost(); + Sone sone = createSone("jXH8d-eFdm14R69WyaCgQoSjaY0jl-Ut6etlXjK0e6E", "Test", "First", "M.", "Last", (long) (Math.random() * Long.MAX_VALUE)); + Post post = createPost(sone, null, (long) (Math.random() * Long.MAX_VALUE), "Some Text."); when(database.getPost(eq(post.getId()))).thenReturn(of(post)); SimpleFieldSet postFieldSet = new SimpleFieldSetBuilder().put("Post", post.getId()).get(); Post parsedPost = abstractSoneCommand.getPost(postFieldSet, "Post"); @@ -332,15 +340,20 @@ public class AbstractSoneCommandTest { assertThat(parsedPost, is(post)); } - private Post createPost() { + private Post createPost(Sone sone, String recipient, long time, String text) { Post post = mock(Post.class); when(post.getId()).thenReturn(randomUUID().toString()); + when(post.getSone()).thenReturn(sone); + when(post.getRecipientId()).thenReturn(fromNullable(recipient)); + when(post.getTime()).thenReturn(time); + when(post.getText()).thenReturn(text); return post; } @Test(expected = FcpException.class) public void testThatTryingToParseANonExistingPostCausesAnError() throws FcpException { - Post post = createPost(); + Sone sone = createSone("jXH8d-eFdm14R69WyaCgQoSjaY0jl-Ut6etlXjK0e6E", "Test", "First", "M.", "Last", (long) (Math.random() * Long.MAX_VALUE)); + Post post = createPost(sone, null, (long) (Math.random() * Long.MAX_VALUE), "Some Text."); when(database.getPost(Matchers.any())).thenReturn(Optional.absent()); SimpleFieldSet postFieldSet = new SimpleFieldSetBuilder().put("Post", post.getId()).get(); abstractSoneCommand.getPost(postFieldSet, "Post"); @@ -352,4 +365,120 @@ public class AbstractSoneCommandTest { abstractSoneCommand.getPost(postFieldSet, "Post"); } + @Test + public void testParsingAReply() throws FcpException { + PostReply reply = createPostReply(); + when(database.getPostReply(eq(reply.getId()))).thenReturn(of(reply)); + SimpleFieldSet replyFieldSet = new SimpleFieldSetBuilder().put("Reply", reply.getId()).get(); + PostReply parsedReply = abstractSoneCommand.getReply(replyFieldSet, "Reply"); + assertThat(parsedReply, notNullValue()); + assertThat(parsedReply, is(reply)); + } + + private PostReply createPostReply() { + PostReply postReply = mock(PostReply.class); + when(postReply.getId()).thenReturn(randomUUID().toString()); + return postReply; + } + + @Test(expected = FcpException.class) + public void testParsingANonExistingReply() throws FcpException { + PostReply reply = createPostReply(); + when(database.getPostReply(Matchers.any())).thenReturn(Optional.absent()); + SimpleFieldSet replyFieldSet = new SimpleFieldSetBuilder().put("Reply", reply.getId()).get(); + abstractSoneCommand.getReply(replyFieldSet, "Reply"); + } + + @Test(expected = FcpException.class) + public void testParsingAReplyFromANonExistingField() throws FcpException { + SimpleFieldSet replyFieldSet = new SimpleFieldSetBuilder().get(); + abstractSoneCommand.getReply(replyFieldSet, "Reply"); + } + + @Test + public void testEncodingAPostWithoutRecipientAndReplies() throws FSParseException { + Sone sone = createSone("jXH8d-eFdm14R69WyaCgQoSjaY0jl-Ut6etlXjK0e6E", "Test", "First", "M.", "Last", (long) (Math.random() * Long.MAX_VALUE)); + Post post = createPost(sone, null, (long) (Math.random() * Long.MAX_VALUE), "Some Text."); + SimpleFieldSet postFieldSet = abstractSoneCommand.encodePost(post, "Post."); + assertThat(postFieldSet, notNullValue()); + assertThat(postFieldSet.get("Post.ID"), is(post.getId())); + assertThat(postFieldSet.get("Post.Sone"), is(sone.getId())); + assertThat(postFieldSet.get("Post.Recipient"), nullValue()); + assertThat(postFieldSet.getLong("Post.Time"), is(post.getTime())); + assertThat(postFieldSet.get("Post.Text"), is(post.getText())); + } + + @Test + public void testEncodingAPostWithRecipientWithoutReplies() throws FSParseException { + Sone sone = createSone("jXH8d-eFdm14R69WyaCgQoSjaY0jl-Ut6etlXjK0e6E", "Test", "First", "M.", "Last", (long) (Math.random() * Long.MAX_VALUE)); + Post post = createPost(sone, "KpoohJSbZGltHHG-YsxKV8ojjS5gwScRv50kl3AkLXg", (long) (Math.random() * Long.MAX_VALUE), "Some Text."); + SimpleFieldSet postFieldSet = abstractSoneCommand.encodePost(post, "Post."); + assertThat(postFieldSet, notNullValue()); + assertThat(postFieldSet.get("Post.ID"), is(post.getId())); + assertThat(postFieldSet.get("Post.Sone"), is(sone.getId())); + assertThat(postFieldSet.get("Post.Recipient"), is("KpoohJSbZGltHHG-YsxKV8ojjS5gwScRv50kl3AkLXg")); + assertThat(postFieldSet.getLong("Post.Time"), is(post.getTime())); + assertThat(postFieldSet.get("Post.Text"), is(post.getText())); + } + + @Test + public void testEncodingAPostWithoutRecipientWithReplies() throws FSParseException { + Sone sone = createSone("jXH8d-eFdm14R69WyaCgQoSjaY0jl-Ut6etlXjK0e6E", "Test", "First", "M.", "Last", (long) (Math.random() * Long.MAX_VALUE)); + Post post = createPost(sone, null, (long) (Math.random() * Long.MAX_VALUE), "Some Text."); + PostReply postReply = createPostReply(sone, "Reply."); + when(post.getReplies()).thenReturn(asList(postReply)); + SimpleFieldSet postFieldSet = abstractSoneCommand.encodePostWithReplies(post, "Post."); + assertThat(postFieldSet, notNullValue()); + assertThat(postFieldSet.get("Post.ID"), is(post.getId())); + assertThat(postFieldSet.get("Post.Sone"), is(sone.getId())); + assertThat(postFieldSet.get("Post.Recipient"), nullValue()); + assertThat(postFieldSet.getLong("Post.Time"), is(post.getTime())); + assertThat(postFieldSet.get("Post.Text"), is(post.getText())); + assertThat(postFieldSet.getInt("Post.Replies.Count"), is(1)); + assertThat(postFieldSet.get("Post.Replies.0.ID"), is(postReply.getId())); + assertThat(postFieldSet.get("Post.Replies.0.Sone"), is(postReply.getSone().getId())); + assertThat(postFieldSet.getLong("Post.Replies.0.Time"), is(postReply.getTime())); + assertThat(postFieldSet.get("Post.Replies.0.Text"), is(postReply.getText())); + } + + @Test + public void testEncodingAPostWithoutRecipientWithFutureReplies() throws FSParseException { + Sone sone = createSone("jXH8d-eFdm14R69WyaCgQoSjaY0jl-Ut6etlXjK0e6E", "Test", "First", "M.", "Last", (long) (Math.random() * Long.MAX_VALUE)); + Post post = createPost(sone, null, (long) (Math.random() * Long.MAX_VALUE), "Some Text."); + PostReply postReply = createFuturePostReply(sone, "Reply."); + when(post.getReplies()).thenReturn(asList(postReply)); + SimpleFieldSet postFieldSet = abstractSoneCommand.encodePostWithReplies(post, "Post."); + assertThat(postFieldSet, notNullValue()); + assertThat(postFieldSet.get("Post.ID"), is(post.getId())); + assertThat(postFieldSet.get("Post.Sone"), is(sone.getId())); + assertThat(postFieldSet.get("Post.Recipient"), nullValue()); + assertThat(postFieldSet.getLong("Post.Time"), is(post.getTime())); + assertThat(postFieldSet.get("Post.Text"), is(post.getText())); + assertThat(postFieldSet.getInt("Post.Replies.Count"), is(0)); + assertThat(postFieldSet.get("Post.Replies.0.ID"), nullValue()); + assertThat(postFieldSet.get("Post.Replies.0.Sone"), nullValue()); + assertThat(postFieldSet.get("Post.Replies.0.Time"), nullValue()); + assertThat(postFieldSet.get("Post.Replies.0.Text"), nullValue()); + } + + @Test + public void testEncodingAPostWithRecipientAndReplies() throws FSParseException { + Sone sone = createSone("jXH8d-eFdm14R69WyaCgQoSjaY0jl-Ut6etlXjK0e6E", "Test", "First", "M.", "Last", (long) (Math.random() * Long.MAX_VALUE)); + Post post = createPost(sone, "KpoohJSbZGltHHG-YsxKV8ojjS5gwScRv50kl3AkLXg", (long) (Math.random() * Long.MAX_VALUE), "Some Text."); + PostReply postReply = createPostReply(sone, "Reply."); + when(post.getReplies()).thenReturn(asList(postReply)); + SimpleFieldSet postFieldSet = abstractSoneCommand.encodePostWithReplies(post, "Post."); + assertThat(postFieldSet, notNullValue()); + assertThat(postFieldSet.get("Post.ID"), is(post.getId())); + assertThat(postFieldSet.get("Post.Sone"), is(sone.getId())); + assertThat(postFieldSet.get("Post.Recipient"), is("KpoohJSbZGltHHG-YsxKV8ojjS5gwScRv50kl3AkLXg")); + assertThat(postFieldSet.getLong("Post.Time"), is(post.getTime())); + assertThat(postFieldSet.get("Post.Text"), is(post.getText())); + assertThat(postFieldSet.getInt("Post.Replies.Count"), is(1)); + assertThat(postFieldSet.get("Post.Replies.0.ID"), is(postReply.getId())); + assertThat(postFieldSet.get("Post.Replies.0.Sone"), is(postReply.getSone().getId())); + assertThat(postFieldSet.getLong("Post.Replies.0.Time"), is(postReply.getTime())); + assertThat(postFieldSet.get("Post.Replies.0.Text"), is(postReply.getText())); + } + }