Use a builder-style mocker for post replies, too.
[Sone.git] / src / test / java / net / pterodactylus / sone / data / Mocks.java
index 5715084..98de409 100644 (file)
 
 package net.pterodactylus.sone.data;
 
+import static com.google.common.base.Optional.absent;
 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 com.google.common.collect.Sets.newHashSet;
 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;
 import net.pterodactylus.sone.data.impl.DefaultPostBuilder;
 import net.pterodactylus.sone.data.impl.DefaultPostReplyBuilder;
@@ -31,8 +37,9 @@ 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 com.google.common.collect.FluentIterable;
+import com.google.common.collect.Multimap;
+import com.google.common.collect.Ordering;
 import org.mockito.invocation.InvocationOnMock;
 import org.mockito.stubbing.Answer;
 
@@ -43,14 +50,31 @@ import org.mockito.stubbing.Answer;
  */
 public class Mocks {
 
-       public static Core mockCore(Database database) {
+       private final Multimap<Sone, Post> sonePosts = create();
+       private final Collection<Sone> sones = newHashSet();
+       private final Multimap<Post, PostReply> postReplies = create();
+       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) {
                Core core = mock(Core.class);
                when(core.getDatabase()).thenReturn(database);
                when(core.getSone(anyString())).thenReturn(Optional.<Sone>absent());
                return core;
        }
 
-       public static Database mockDatabase() {
+       private static Database mockDatabase() {
                Database database = mock(Database.class);
                when(database.getSone(anyString())).thenReturn(Optional.<Sone>absent());
                when(database.getPost(anyString())).thenReturn(Optional.<Post>absent());
@@ -58,49 +82,119 @@ public class Mocks {
                return database;
        }
 
-       public static Sone mockLocalSone(Core core, final String 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>() {
-                       @Override
-                       public PostReplyBuilder answer(InvocationOnMock invocationOnMock) throws Throwable {
-                               return new DefaultPostReplyBuilder(database, id, postIdCaptor.getValue());
-                       }
-               });
-               return sone;
+       public SoneMocker mockSone(String id) {
+               return new SoneMocker(id);
+       }
+
+       public PostMocker mockPost(Sone sone, String postId) {
+               return new PostMocker(postId, 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);
-               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 PostReplyMocker mockPostReply(Sone sone, String replyId) {
+               return new PostReplyMocker(replyId, sone);
+       }
+
+       public class SoneMocker {
+
+               private final Sone mockedSone = mock(Sone.class);
+               private final String id;
+               private boolean local;
+               private Profile profile = new Profile(mockedSone);
+
+               private SoneMocker(String id) {
+                       this.id = id;
+               }
+
+               public SoneMocker local() {
+                       local = true;
+                       return this;
+               }
+
+               public Sone create() {
+                       when(mockedSone.getId()).thenReturn(id);
+                       when(mockedSone.isLocal()).thenReturn(local);
+                       when(mockedSone.getProfile()).thenReturn(profile);
+                       if (local) {
+                               when(mockedSone.newPostBuilder()).thenReturn(new DefaultPostBuilder(database, id));
+                               when(mockedSone.newPostReplyBuilder(anyString())).then(new Answer<PostReplyBuilder>() {
+                                       @Override
+                                       public PostReplyBuilder answer(InvocationOnMock invocation) throws Throwable {
+                                               return new DefaultPostReplyBuilder(database, id, (String) invocation.getArguments()[0]);
+                                       }
+                               });
+                       } else {
+                               when(mockedSone.newPostBuilder()).thenThrow(IllegalStateException.class);
+                               when(mockedSone.newPostReplyBuilder(anyString())).thenThrow(IllegalStateException.class);
+                       }
+                       when(core.getSone(eq(id))).thenReturn(of(mockedSone));
+                       when(database.getSone(eq(id))).thenReturn(of(mockedSone));
+                       when(mockedSone.getPosts()).then(new Answer<List<Post>>() {
+                               @Override
+                               public List<Post> answer(InvocationOnMock invocationOnMock) throws Throwable {
+                                       return from(Post.TIME_COMPARATOR).sortedCopy(sonePosts.get(mockedSone));
+                               }
+                       });
+                       when(mockedSone.toString()).thenReturn(String.format("Sone[%s]", id));
+                       sones.add(mockedSone);
+                       return mockedSone;
+               }
+
        }
 
-       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 class PostMocker {
+
+               private final Post post = mock(Post.class);
+               private final String id;
+               private final Sone sone;
+
+               public PostMocker(String id, Sone sone) {
+                       this.id = id;
+                       this.sone = sone;
+               }
+
+               public Post create() {
+                       when(post.getId()).thenReturn(id);
+                       when(post.getSone()).thenReturn(sone);
+                       when(database.getPost(eq(id))).thenReturn(of(post));
+                       sonePosts.put(sone, post);
+                       when(post.getReplies()).then(new Answer<List<PostReply>>() {
+                               @Override
+                               public List<PostReply> answer(InvocationOnMock invocation) throws Throwable {
+                                       return Ordering.from(Reply.TIME_COMPARATOR).sortedCopy(postReplies.get(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;
+       public class PostReplyMocker {
+
+               private final PostReply postReply = mock(PostReply.class);
+               private final String id;
+               private final Sone sone;
+               private Optional<Post> post = absent();
+
+               public PostReplyMocker(String id, Sone sone) {
+                       this.id = id;
+                       this.sone = sone;
+               }
+
+               public PostReplyMocker inReplyTo(Post post) {
+                       this.post = of(post);
+                       return this;
+               }
+
+               public PostReply create() {
+                       when(postReply.getId()).thenReturn(id);
+                       when(postReply.getSone()).thenReturn(sone);
+                       when(database.getPostReply(eq(id))).thenReturn(of(postReply));
+                       if (post.isPresent()) {
+                               postReplies.put(post.get(), postReply);
+                       }
+                       return postReply;
+               }
+
        }
 
 }