X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftest%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FMocks.java;h=4b60c1ad98ce795608553902c1b54ab3f53951ef;hb=18a9bf4351d38d15cb809c91545e5819a8605d8b;hp=98de40971da4bb9f550f33047d7282a859b82f12;hpb=479f6b7187938eb68d2f00d9e10394ceeb18e0c5;p=Sone.git diff --git a/src/test/java/net/pterodactylus/sone/data/Mocks.java b/src/test/java/net/pterodactylus/sone/data/Mocks.java index 98de409..4b60c1a 100644 --- a/src/test/java/net/pterodactylus/sone/data/Mocks.java +++ b/src/test/java/net/pterodactylus/sone/data/Mocks.java @@ -18,17 +18,22 @@ package net.pterodactylus.sone.data; import static com.google.common.base.Optional.absent; +import static com.google.common.base.Optional.fromNullable; import static com.google.common.base.Optional.of; import static com.google.common.collect.ArrayListMultimap.create; +import static com.google.common.collect.Maps.newHashMap; import static com.google.common.collect.Ordering.from; -import static com.google.common.collect.Sets.newHashSet; +import static java.util.Collections.emptySet; import static org.mockito.Matchers.anyString; import static org.mockito.Matchers.eq; +import static org.mockito.Mockito.doAnswer; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import java.util.Collection; import java.util.List; +import java.util.Map; +import java.util.Set; import net.pterodactylus.sone.core.Core; import net.pterodactylus.sone.data.impl.DefaultPostBuilder; @@ -36,10 +41,14 @@ import net.pterodactylus.sone.data.impl.DefaultPostReplyBuilder; import net.pterodactylus.sone.database.Database; import net.pterodactylus.sone.database.PostReplyBuilder; +import com.google.common.base.Function; import com.google.common.base.Optional; import com.google.common.collect.FluentIterable; +import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; import com.google.common.collect.Ordering; +import com.google.common.collect.SetMultimap; +import org.mockito.Matchers; import org.mockito.invocation.InvocationOnMock; import org.mockito.stubbing.Answer; @@ -51,18 +60,38 @@ import org.mockito.stubbing.Answer; public class Mocks { private final Multimap sonePosts = create(); - private final Collection sones = newHashSet(); + private final Map sones = newHashMap(); private final Multimap postReplies = create(); + private final Multimap directedPosts = create(); + private final SetMultimap postLikingSones = HashMultimap.create(); public final Database database; public final Core core; public Mocks() { database = mockDatabase(); core = mockCore(database); + when(database.getSone()).thenReturn(new Function>() { + @Override + public Optional apply(String soneId) { + return (soneId == null) ? Optional.absent() : fromNullable(sones.get(soneId)); + } + }); + when(core.getSones()).then(new Answer>() { + @Override + public Collection answer(InvocationOnMock invocation) throws Throwable { + return sones.values(); + } + }); when(core.getLocalSones()).then(new Answer>() { @Override public Collection answer(InvocationOnMock invocation) throws Throwable { - return FluentIterable.from(sones).filter(Sone.LOCAL_SONE_FILTER).toList(); + return FluentIterable.from(sones.values()).filter(Sone.LOCAL_SONE_FILTER).toList(); + } + }); + when(database.getDirectedPosts(anyString())).then(new Answer>() { + @Override + public Collection answer(InvocationOnMock invocation) throws Throwable { + return directedPosts.get((String) invocation.getArguments()[0]); } }); } @@ -99,7 +128,10 @@ public class Mocks { private final Sone mockedSone = mock(Sone.class); private final String id; private boolean local; + private Optional name = absent(); + private long time; private Profile profile = new Profile(mockedSone); + private Collection friends = emptySet(); private SoneMocker(String id) { this.id = id; @@ -110,9 +142,38 @@ public class Mocks { return this; } + public SoneMocker withName(String name) { + this.name = fromNullable(name); + return this; + } + + public SoneMocker withTime(long time) { + this.time = time; + return this; + } + + public SoneMocker withProfileName(String firstName, String middleName, String lastName) { + profile.modify().setFirstName(firstName).setMiddleName(middleName).setLastName(lastName).update(); + return this; + } + + public SoneMocker addProfileField(String fieldName, String fieldValue) { + profile.setField(profile.addField(fieldName), fieldValue); + return this; + } + + public SoneMocker withFriends(Collection friends) { + this.friends = friends; + return this; + } + public Sone create() { when(mockedSone.getId()).thenReturn(id); when(mockedSone.isLocal()).thenReturn(local); + if (name.isPresent()) { + when(mockedSone.getName()).thenReturn(name.get()); + } + when(mockedSone.getTime()).thenReturn(time); when(mockedSone.getProfile()).thenReturn(profile); if (local) { when(mockedSone.newPostBuilder()).thenReturn(new DefaultPostBuilder(database, id)); @@ -122,6 +183,14 @@ public class Mocks { return new DefaultPostReplyBuilder(database, id, (String) invocation.getArguments()[0]); } }); + when(mockedSone.hasFriend(anyString())).thenReturn(false); + when(mockedSone.getFriends()).thenReturn(friends); + when(mockedSone.hasFriend(anyString())).then(new Answer() { + @Override + public Boolean answer(InvocationOnMock invocation) throws Throwable { + return friends.contains(invocation.getArguments()[0]); + } + }); } else { when(mockedSone.newPostBuilder()).thenThrow(IllegalStateException.class); when(mockedSone.newPostReplyBuilder(anyString())).thenThrow(IllegalStateException.class); @@ -135,7 +204,7 @@ public class Mocks { } }); when(mockedSone.toString()).thenReturn(String.format("Sone[%s]", id)); - sones.add(mockedSone); + sones.put(id, mockedSone); return mockedSone; } @@ -146,15 +215,41 @@ public class Mocks { private final Post post = mock(Post.class); private final String id; private final Sone sone; + private Optional recipientId = absent(); + private long time; + private Optional text = absent(); public PostMocker(String id, Sone sone) { this.id = id; this.sone = sone; } + public PostMocker withRecipient(String recipientId) { + this.recipientId = fromNullable(recipientId); + return this; + } + + public PostMocker withTime(long time) { + this.time = time; + return this; + } + + public PostMocker withText(String text) { + this.text = fromNullable(text); + return this; + } + public Post create() { when(post.getId()).thenReturn(id); when(post.getSone()).thenReturn(sone); + when(post.getRecipientId()).thenReturn(recipientId); + if (recipientId.isPresent()) { + directedPosts.put(recipientId.get(), post); + } + when(post.getTime()).thenReturn(time); + if (text.isPresent()) { + when(post.getText()).thenReturn(text.get()); + } when(database.getPost(eq(id))).thenReturn(of(post)); sonePosts.put(sone, post); when(post.getReplies()).then(new Answer>() { @@ -163,6 +258,26 @@ public class Mocks { return Ordering.from(Reply.TIME_COMPARATOR).sortedCopy(postReplies.get(post)); } }); + doAnswer(new Answer() { + @Override + public Void answer(InvocationOnMock invocation) throws Throwable { + postLikingSones.put(post, (Sone) invocation.getArguments()[0]); + return null; + } + }).when(post).like(Matchers.any()); + doAnswer(new Answer() { + @Override + public Void answer(InvocationOnMock invocation) throws Throwable { + postLikingSones.remove(post, (Sone) invocation.getArguments()[0]); + return null; + } + }).when(post).unlike(Matchers.any()); + when(post.getLikes()).thenAnswer(new Answer>() { + @Override + public Set answer(InvocationOnMock invocation) throws Throwable { + return postLikingSones.get(post); + } + }); return post; } @@ -174,6 +289,8 @@ public class Mocks { private final String id; private final Sone sone; private Optional post = absent(); + private long time; + private Optional text = absent(); public PostReplyMocker(String id, Sone sone) { this.id = id; @@ -181,20 +298,33 @@ public class Mocks { } public PostReplyMocker inReplyTo(Post post) { - this.post = of(post); + this.post = fromNullable(post); + return this; + } + + public PostReplyMocker withTime(long time) { + this.time = time; + return this; + } + + public PostReplyMocker withText(String text) { + this.text = fromNullable(text); return this; } public PostReply create() { when(postReply.getId()).thenReturn(id); when(postReply.getSone()).thenReturn(sone); + when(postReply.getTime()).thenReturn(time); when(database.getPostReply(eq(id))).thenReturn(of(postReply)); if (post.isPresent()) { postReplies.put(post.get(), postReply); } + if (text.isPresent()) { + when(postReply.getText()).thenReturn(text.get()); + } return postReply; } - } }