Don’t use an argument captor when using an answer.
[Sone.git] / src / test / java / net / pterodactylus / sone / data / Mocks.java
index 841b38e..34aff9b 100644 (file)
@@ -18,6 +18,7 @@
 package net.pterodactylus.sone.data;
 
 import static com.google.common.base.Optional.of;
+import static org.mockito.ArgumentCaptor.forClass;
 import static org.mockito.Matchers.anyString;
 import static org.mockito.Matchers.eq;
 import static org.mockito.Mockito.mock;
@@ -25,9 +26,15 @@ import static org.mockito.Mockito.when;
 
 import net.pterodactylus.sone.core.Core;
 import net.pterodactylus.sone.data.impl.DefaultPostBuilder;
+import net.pterodactylus.sone.data.impl.DefaultPostReplyBuilder;
 import net.pterodactylus.sone.database.Database;
+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;
 
 /**
  * Mocks reusable in multiple tests.
@@ -46,18 +53,54 @@ public class Mocks {
        public static Database mockDatabase() {
                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, String id) {
-               Sone sone = mock(Sone.class);
-               when(sone.getId()).thenReturn(id);
+       public static Sone mockLocalSone(Core core, final String id) {
+               Sone sone = mockRemoteSone(core, id);
                when(sone.isLocal()).thenReturn(true);
-               Database database = core.getDatabase();
+               final Database database = core.getDatabase();
                when(sone.newPostBuilder()).thenReturn(new DefaultPostBuilder(database, id));
+               when(sone.newPostReplyBuilder(anyString())).then(new Answer<PostReplyBuilder>() {
+                       @Override
+                       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, 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;
+       }
+
 }