Memorize all mocked Sones and implement getLocalSones().
[Sone.git] / src / test / java / net / pterodactylus / sone / data / Mocks.java
index d75f5f6..00c1522 100644 (file)
@@ -20,12 +20,14 @@ package net.pterodactylus.sone.data;
 import static com.google.common.base.Optional.of;
 import static com.google.common.collect.ArrayListMultimap.create;
 import static com.google.common.collect.Ordering.from;
+import static com.google.common.collect.Sets.newHashSet;
 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.Collection;
 import java.util.List;
 
 import net.pterodactylus.sone.core.Core;
@@ -35,6 +37,7 @@ import net.pterodactylus.sone.database.Database;
 import net.pterodactylus.sone.database.PostReplyBuilder;
 
 import com.google.common.base.Optional;
+import com.google.common.collect.FluentIterable;
 import com.google.common.collect.Multimap;
 import org.mockito.Matchers;
 import org.mockito.invocation.InvocationOnMock;
@@ -48,12 +51,19 @@ import org.mockito.stubbing.Answer;
 public class Mocks {
 
        private final Multimap<Sone, Post> sonePosts = create();
+       private final Collection<Sone> sones = newHashSet();
        public final Database database;
        public final Core core;
 
        public Mocks() {
                database = mockDatabase();
                core = mockCore(database);
+               when(core.getLocalSones()).then(new Answer<Collection<Sone>>() {
+                       @Override
+                       public Collection<Sone> answer(InvocationOnMock invocation) throws Throwable {
+                               return FluentIterable.from(sones).filter(Sone.LOCAL_SONE_FILTER).toList();
+                       }
+               });
        }
 
        private static Core mockCore(Database database) {
@@ -73,9 +83,8 @@ public class Mocks {
 
        public Sone mockLocalSone(final String id) {
                final Sone sone = mock(Sone.class);
-               when(sone.getId()).thenReturn(id);
                when(sone.isLocal()).thenReturn(true);
-               when(sone.getProfile()).thenReturn(new Profile(sone));
+               initializeSoneMock(id, sone);
                when(sone.newPostBuilder()).thenReturn(new DefaultPostBuilder(database, id));
                when(sone.newPostReplyBuilder(anyString())).then(new Answer<PostReplyBuilder>() {
                        @Override
@@ -83,24 +92,21 @@ public class Mocks {
                                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 List<Post> answer(InvocationOnMock invocationOnMock) throws Throwable {
-                               return from(TIME_COMPARATOR).sortedCopy(sonePosts.get(sone));
-                       }
-               });
                return sone;
        }
 
        public Sone mockRemoteSone(final String id) {
                final Sone sone = mock(Sone.class);
-               when(sone.getId()).thenReturn(id);
                when(sone.isLocal()).thenReturn(false);
-               when(sone.getProfile()).thenReturn(new Profile(sone));
+               initializeSoneMock(id, sone);
                when(sone.newPostBuilder()).thenThrow(IllegalStateException.class);
                when(sone.newPostReplyBuilder(Matchers.<String>anyObject())).thenThrow(IllegalStateException.class);
+               return sone;
+       }
+
+       private void initializeSoneMock(String id, final Sone sone) {
+               when(sone.getId()).thenReturn(id);
+               when(sone.getProfile()).thenReturn(new Profile(sone));
                when(core.getSone(eq(id))).thenReturn(of(sone));
                when(database.getSone(eq(id))).thenReturn(of(sone));
                when(sone.getPosts()).then(new Answer<List<Post>>() {
@@ -109,7 +115,8 @@ public class Mocks {
                                return from(TIME_COMPARATOR).sortedCopy(sonePosts.get(sone));
                        }
                });
-               return sone;
+               when(sone.toString()).thenReturn(String.format("Sone[%s]", id));
+               sones.add(sone);
        }
 
        public Post mockPost(Sone sone, String postId) {