Replace Sone mock methods with a mock builder.
[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 com.google.common.collect.Sets.newHashSet;
24 import static net.pterodactylus.sone.data.Post.TIME_COMPARATOR;
25 import static org.mockito.Matchers.anyString;
26 import static org.mockito.Matchers.eq;
27 import static org.mockito.Mockito.mock;
28 import static org.mockito.Mockito.when;
29
30 import java.util.Collection;
31 import java.util.List;
32
33 import net.pterodactylus.sone.core.Core;
34 import net.pterodactylus.sone.data.impl.DefaultPostBuilder;
35 import net.pterodactylus.sone.data.impl.DefaultPostReplyBuilder;
36 import net.pterodactylus.sone.database.Database;
37 import net.pterodactylus.sone.database.PostReplyBuilder;
38
39 import com.google.common.base.Optional;
40 import com.google.common.collect.FluentIterable;
41 import com.google.common.collect.Multimap;
42 import org.mockito.invocation.InvocationOnMock;
43 import org.mockito.stubbing.Answer;
44
45 /**
46  * Mocks reusable in multiple tests.
47  *
48  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
49  */
50 public class Mocks {
51
52         private final Multimap<Sone, Post> sonePosts = create();
53         private final Collection<Sone> sones = newHashSet();
54         public final Database database;
55         public final Core core;
56
57         public Mocks() {
58                 database = mockDatabase();
59                 core = mockCore(database);
60                 when(core.getLocalSones()).then(new Answer<Collection<Sone>>() {
61                         @Override
62                         public Collection<Sone> answer(InvocationOnMock invocation) throws Throwable {
63                                 return FluentIterable.from(sones).filter(Sone.LOCAL_SONE_FILTER).toList();
64                         }
65                 });
66         }
67
68         private static Core mockCore(Database database) {
69                 Core core = mock(Core.class);
70                 when(core.getDatabase()).thenReturn(database);
71                 when(core.getSone(anyString())).thenReturn(Optional.<Sone>absent());
72                 return core;
73         }
74
75         private static Database mockDatabase() {
76                 Database database = mock(Database.class);
77                 when(database.getSone(anyString())).thenReturn(Optional.<Sone>absent());
78                 when(database.getPost(anyString())).thenReturn(Optional.<Post>absent());
79                 when(database.getPostReply(anyString())).thenReturn(Optional.<PostReply>absent());
80                 return database;
81         }
82
83         public SoneMocker mockSone(String id) {
84                 return new SoneMocker(id);
85         }
86
87         public Post mockPost(Sone sone, String postId) {
88                 Post post = mock(Post.class);
89                 when(post.getId()).thenReturn(postId);
90                 when(post.getSone()).thenReturn(sone);
91                 when(database.getPost(eq(postId))).thenReturn(of(post));
92                 sonePosts.put(sone, post);
93                 return post;
94         }
95
96         public PostReply mockPostReply(Sone sone, String replyId) {
97                 PostReply postReply = mock(PostReply.class);
98                 when(postReply.getId()).thenReturn(replyId);
99                 when(postReply.getSone()).thenReturn(sone);
100                 when(database.getPostReply(eq(replyId))).thenReturn(of(postReply));
101                 return postReply;
102         }
103
104         public class SoneMocker {
105
106                 private final Sone mockedSone = mock(Sone.class);
107                 private final String id;
108                 private boolean local;
109                 private Profile profile = new Profile(mockedSone);
110
111                 private SoneMocker(String id) {
112                         this.id = id;
113                 }
114
115                 public SoneMocker local() {
116                         local = true;
117                         return this;
118                 }
119
120                 public Sone create() {
121                         when(mockedSone.getId()).thenReturn(id);
122                         when(mockedSone.isLocal()).thenReturn(local);
123                         when(mockedSone.getProfile()).thenReturn(profile);
124                         if (local) {
125                                 when(mockedSone.newPostBuilder()).thenReturn(new DefaultPostBuilder(database, id));
126                                 when(mockedSone.newPostReplyBuilder(anyString())).then(new Answer<PostReplyBuilder>() {
127                                         @Override
128                                         public PostReplyBuilder answer(InvocationOnMock invocation) throws Throwable {
129                                                 return new DefaultPostReplyBuilder(database, id, (String) invocation.getArguments()[0]);
130                                         }
131                                 });
132                         } else {
133                                 when(mockedSone.newPostBuilder()).thenThrow(IllegalStateException.class);
134                                 when(mockedSone.newPostReplyBuilder(anyString())).thenThrow(IllegalStateException.class);
135                         }
136                         when(core.getSone(eq(id))).thenReturn(of(mockedSone));
137                         when(database.getSone(eq(id))).thenReturn(of(mockedSone));
138                         when(mockedSone.getPosts()).then(new Answer<List<Post>>() {
139                                 @Override
140                                 public List<Post> answer(InvocationOnMock invocationOnMock) throws Throwable {
141                                         return from(TIME_COMPARATOR).sortedCopy(sonePosts.get(mockedSone));
142                                 }
143                         });
144                         when(mockedSone.toString()).thenReturn(String.format("Sone[%s]", id));
145                         sones.add(mockedSone);
146                         return mockedSone;
147                 }
148
149         }
150
151 }