Split Sone mocking back into two separate methods again.
[Sone.git] / src / test / java / net / pterodactylus / sone / data / Mocks.java
1 /*
2  * Sone - Mocks.java - Copyright © 2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.data;
19
20 import static com.google.common.base.Optional.of;
21 import static com.google.common.collect.ArrayListMultimap.create;
22 import static com.google.common.collect.Ordering.from;
23 import static net.pterodactylus.sone.data.Post.TIME_COMPARATOR;
24 import static org.mockito.Matchers.anyString;
25 import static org.mockito.Matchers.eq;
26 import static org.mockito.Mockito.mock;
27 import static org.mockito.Mockito.when;
28
29 import java.util.List;
30
31 import net.pterodactylus.sone.core.Core;
32 import net.pterodactylus.sone.data.impl.DefaultPostBuilder;
33 import net.pterodactylus.sone.data.impl.DefaultPostReplyBuilder;
34 import net.pterodactylus.sone.database.Database;
35 import net.pterodactylus.sone.database.PostReplyBuilder;
36
37 import com.google.common.base.Optional;
38 import com.google.common.collect.Multimap;
39 import org.mockito.Matchers;
40 import org.mockito.invocation.InvocationOnMock;
41 import org.mockito.stubbing.Answer;
42
43 /**
44  * Mocks reusable in multiple tests.
45  *
46  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
47  */
48 public class Mocks {
49
50         private static final Multimap<Sone, Post> sonePosts = create();
51
52         public static Core mockCore(Database database) {
53                 Core core = mock(Core.class);
54                 when(core.getDatabase()).thenReturn(database);
55                 when(core.getSone(anyString())).thenReturn(Optional.<Sone>absent());
56                 return core;
57         }
58
59         public static Database mockDatabase() {
60                 Database database = mock(Database.class);
61                 when(database.getSone(anyString())).thenReturn(Optional.<Sone>absent());
62                 when(database.getPost(anyString())).thenReturn(Optional.<Post>absent());
63                 when(database.getPostReply(anyString())).thenReturn(Optional.<PostReply>absent());
64                 return database;
65         }
66
67         public static Sone mockLocalSone(Core core, final String id) {
68                 final Sone sone = mock(Sone.class);
69                 when(sone.getId()).thenReturn(id);
70                 when(sone.isLocal()).thenReturn(true);
71                 when(sone.getProfile()).thenReturn(new Profile(sone));
72                 final Database database = core.getDatabase();
73                 when(sone.newPostBuilder()).thenReturn(new DefaultPostBuilder(database, id));
74                 when(sone.newPostReplyBuilder(anyString())).then(new Answer<PostReplyBuilder>() {
75                         @Override
76                         public PostReplyBuilder answer(InvocationOnMock invocation) throws Throwable {
77                                 return new DefaultPostReplyBuilder(database, id, (String) invocation.getArguments()[0]);
78                         }
79                 });
80                 when(core.getSone(eq(id))).thenReturn(of(sone));
81                 when(database.getSone(eq(id))).thenReturn(of(sone));
82                 when(sone.getPosts()).then(new Answer<List<Post>>() {
83                         @Override
84                         public List<Post> answer(InvocationOnMock invocationOnMock) throws Throwable {
85                                 return from(TIME_COMPARATOR).sortedCopy(sonePosts.get(sone));
86                         }
87                 });
88                 return sone;
89         }
90
91         public static Sone mockRemoteSone(Core core, final String id) {
92                 final Sone sone = mock(Sone.class);
93                 when(sone.getId()).thenReturn(id);
94                 when(sone.isLocal()).thenReturn(false);
95                 when(sone.getProfile()).thenReturn(new Profile(sone));
96                 final Database database = core.getDatabase();
97                 when(sone.newPostBuilder()).thenThrow(IllegalStateException.class);
98                 when(sone.newPostReplyBuilder(Matchers.<String>anyObject())).thenThrow(IllegalStateException.class);
99                 when(core.getSone(eq(id))).thenReturn(of(sone));
100                 when(database.getSone(eq(id))).thenReturn(of(sone));
101                 when(sone.getPosts()).then(new Answer<List<Post>>() {
102                         @Override
103                         public List<Post> answer(InvocationOnMock invocationOnMock) throws Throwable {
104                                 return from(TIME_COMPARATOR).sortedCopy(sonePosts.get(sone));
105                         }
106                 });
107                 return sone;
108         }
109
110         public static Post mockPost(Core core, Sone sone, String postId) {
111                 Post post = mock(Post.class);
112                 when(post.getId()).thenReturn(postId);
113                 when(post.getSone()).thenReturn(sone);
114                 Database database = core.getDatabase();
115                 when(database.getPost(eq(postId))).thenReturn(of(post));
116                 sonePosts.put(sone, post);
117                 return post;
118         }
119
120         public static PostReply mockPostReply(Core core, Sone sone, String replyId) {
121                 PostReply postReply = mock(PostReply.class);
122                 when(postReply.getId()).thenReturn(replyId);
123                 when(postReply.getSone()).thenReturn(sone);
124                 Database database = core.getDatabase();
125                 when(database.getPostReply(eq(replyId))).thenReturn(of(postReply));
126                 return postReply;
127         }
128
129 }