Don’t use an argument captor when using an answer.
[Sone.git] / src / test / java / net / pterodactylus / sone / data / Mocks.java
index a1c1a71..34aff9b 100644 (file)
@@ -32,6 +32,7 @@ import net.pterodactylus.sone.database.PostReplyBuilder;
 
 import com.google.common.base.Optional;
 import org.mockito.ArgumentCaptor;
+import org.mockito.Matchers;
 import org.mockito.invocation.InvocationOnMock;
 import org.mockito.stubbing.Answer;
 
@@ -53,33 +54,53 @@ public class Mocks {
                Database database = mock(Database.class);
                when(database.getSone(anyString())).thenReturn(Optional.<Sone>absent());
                when(database.getPost(anyString())).thenReturn(Optional.<Post>absent());
+               when(database.getPostReply(anyString())).thenReturn(Optional.<PostReply>absent());
                return database;
        }
 
        public static Sone mockLocalSone(Core core, final String id) {
-               Sone sone = mock(Sone.class);
-               when(sone.getId()).thenReturn(id);
+               Sone sone = mockRemoteSone(core, id);
                when(sone.isLocal()).thenReturn(true);
                final Database database = core.getDatabase();
                when(sone.newPostBuilder()).thenReturn(new DefaultPostBuilder(database, id));
-               final ArgumentCaptor<String> postIdCaptor = forClass(String.class);
-               when(sone.newPostReplyBuilder(postIdCaptor.capture())).then(new Answer<PostReplyBuilder>() {
+               when(sone.newPostReplyBuilder(anyString())).then(new Answer<PostReplyBuilder>() {
                        @Override
-                       public PostReplyBuilder answer(InvocationOnMock invocationOnMock) throws Throwable {
-                               return new DefaultPostReplyBuilder(database, id, postIdCaptor.getValue());
+                       public PostReplyBuilder answer(InvocationOnMock invocation) throws Throwable {
+                               return new DefaultPostReplyBuilder(database, id, (String) invocation.getArguments()[0]);
                        }
                });
+               return sone;
+       }
+
+       public static Sone mockRemoteSone(Core core, final String id) {
+               Sone sone = mock(Sone.class);
+               when(sone.getId()).thenReturn(id);
+               when(sone.isLocal()).thenReturn(false);
+               when(sone.getProfile()).thenReturn(new Profile(sone));
+               final Database database = core.getDatabase();
+               when(sone.newPostBuilder()).thenThrow(IllegalStateException.class);
+               when(sone.newPostReplyBuilder(Matchers.<String>anyObject())).thenThrow(IllegalStateException.class);
                when(core.getSone(eq(id))).thenReturn(of(sone));
                when(database.getSone(eq(id))).thenReturn(of(sone));
                return sone;
        }
 
-       public static Post mockPost(Core core, String postId) {
+       public static Post mockPost(Core core, Sone sone, String postId) {
                Post post = mock(Post.class);
                when(post.getId()).thenReturn(postId);
+               when(post.getSone()).thenReturn(sone);
                Database database = core.getDatabase();
                when(database.getPost(eq(postId))).thenReturn(of(post));
                return post;
        }
 
+       public static PostReply mockPostReply(Core core, Sone sone, String replyId) {
+               PostReply postReply = mock(PostReply.class);
+               when(postReply.getId()).thenReturn(replyId);
+               when(postReply.getSone()).thenReturn(sone);
+               Database database = core.getDatabase();
+               when(database.getPostReply(eq(replyId))).thenReturn(of(postReply));
+               return postReply;
+       }
+
 }