Split Sone mocking back into two separate methods again.
[Sone.git] / src / test / java / net / pterodactylus / sone / data / Mocks.java
index e1b9102..5181f04 100644 (file)
 package net.pterodactylus.sone.data;
 
 import static com.google.common.base.Optional.of;
-import static org.mockito.ArgumentCaptor.forClass;
+import static com.google.common.collect.ArrayListMultimap.create;
+import static com.google.common.collect.Ordering.from;
+import static net.pterodactylus.sone.data.Post.TIME_COMPARATOR;
 import static org.mockito.Matchers.anyString;
 import static org.mockito.Matchers.eq;
 import static org.mockito.Mockito.mock;
 import static org.mockito.Mockito.when;
 
+import java.util.List;
+
 import net.pterodactylus.sone.core.Core;
 import net.pterodactylus.sone.data.impl.DefaultPostBuilder;
 import net.pterodactylus.sone.data.impl.DefaultPostReplyBuilder;
@@ -31,7 +35,7 @@ import net.pterodactylus.sone.database.Database;
 import net.pterodactylus.sone.database.PostReplyBuilder;
 
 import com.google.common.base.Optional;
-import org.mockito.ArgumentCaptor;
+import com.google.common.collect.Multimap;
 import org.mockito.Matchers;
 import org.mockito.invocation.InvocationOnMock;
 import org.mockito.stubbing.Answer;
@@ -43,6 +47,8 @@ import org.mockito.stubbing.Answer;
  */
 public class Mocks {
 
+       private static final Multimap<Sone, Post> sonePosts = create();
+
        public static Core mockCore(Database database) {
                Core core = mock(Core.class);
                when(core.getDatabase()).thenReturn(database);
@@ -59,22 +65,31 @@ public class Mocks {
        }
 
        public static Sone mockLocalSone(Core core, final String id) {
-               Sone sone = mockRemoteSone(core, id);
+               final Sone sone = mock(Sone.class);
+               when(sone.getId()).thenReturn(id);
                when(sone.isLocal()).thenReturn(true);
+               when(sone.getProfile()).thenReturn(new Profile(sone));
                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 invocation) throws Throwable {
+                               return new DefaultPostReplyBuilder(database, id, (String) invocation.getArguments()[0]);
+                       }
+               });
+               when(core.getSone(eq(id))).thenReturn(of(sone));
+               when(database.getSone(eq(id))).thenReturn(of(sone));
+               when(sone.getPosts()).then(new Answer<List<Post>>() {
                        @Override
-                       public PostReplyBuilder answer(InvocationOnMock invocationOnMock) throws Throwable {
-                               return new DefaultPostReplyBuilder(database, id, postIdCaptor.getValue());
+                       public List<Post> answer(InvocationOnMock invocationOnMock) throws Throwable {
+                               return from(TIME_COMPARATOR).sortedCopy(sonePosts.get(sone));
                        }
                });
                return sone;
        }
 
        public static Sone mockRemoteSone(Core core, final String id) {
-               Sone sone = mock(Sone.class);
+               final Sone sone = mock(Sone.class);
                when(sone.getId()).thenReturn(id);
                when(sone.isLocal()).thenReturn(false);
                when(sone.getProfile()).thenReturn(new Profile(sone));
@@ -83,6 +98,12 @@ public class Mocks {
                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));
+               when(sone.getPosts()).then(new Answer<List<Post>>() {
+                       @Override
+                       public List<Post> answer(InvocationOnMock invocationOnMock) throws Throwable {
+                               return from(TIME_COMPARATOR).sortedCopy(sonePosts.get(sone));
+                       }
+               });
                return sone;
        }
 
@@ -92,6 +113,7 @@ public class Mocks {
                when(post.getSone()).thenReturn(sone);
                Database database = core.getDatabase();
                when(database.getPost(eq(postId))).thenReturn(of(post));
+               sonePosts.put(sone, post);
                return post;
        }