Add method to mock a remote Sone.
[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 org.mockito.ArgumentCaptor.forClass;
22 import static org.mockito.Matchers.anyString;
23 import static org.mockito.Matchers.eq;
24 import static org.mockito.Mockito.mock;
25 import static org.mockito.Mockito.when;
26
27 import net.pterodactylus.sone.core.Core;
28 import net.pterodactylus.sone.data.impl.DefaultPostBuilder;
29 import net.pterodactylus.sone.data.impl.DefaultPostReplyBuilder;
30 import net.pterodactylus.sone.database.Database;
31 import net.pterodactylus.sone.database.PostReplyBuilder;
32
33 import com.google.common.base.Optional;
34 import org.mockito.ArgumentCaptor;
35 import org.mockito.Matchers;
36 import org.mockito.invocation.InvocationOnMock;
37 import org.mockito.stubbing.Answer;
38
39 /**
40  * Mocks reusable in multiple tests.
41  *
42  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
43  */
44 public class Mocks {
45
46         public static Core mockCore(Database database) {
47                 Core core = mock(Core.class);
48                 when(core.getDatabase()).thenReturn(database);
49                 when(core.getSone(anyString())).thenReturn(Optional.<Sone>absent());
50                 return core;
51         }
52
53         public static Database mockDatabase() {
54                 Database database = mock(Database.class);
55                 when(database.getSone(anyString())).thenReturn(Optional.<Sone>absent());
56                 when(database.getPost(anyString())).thenReturn(Optional.<Post>absent());
57                 return database;
58         }
59
60         public static Sone mockLocalSone(Core core, final String id) {
61                 Sone sone = mock(Sone.class);
62                 when(sone.getId()).thenReturn(id);
63                 when(sone.isLocal()).thenReturn(true);
64                 final Database database = core.getDatabase();
65                 when(sone.newPostBuilder()).thenReturn(new DefaultPostBuilder(database, id));
66                 final ArgumentCaptor<String> postIdCaptor = forClass(String.class);
67                 when(sone.newPostReplyBuilder(postIdCaptor.capture())).then(new Answer<PostReplyBuilder>() {
68                         @Override
69                         public PostReplyBuilder answer(InvocationOnMock invocationOnMock) throws Throwable {
70                                 return new DefaultPostReplyBuilder(database, id, postIdCaptor.getValue());
71                         }
72                 });
73                 when(core.getSone(eq(id))).thenReturn(of(sone));
74                 when(database.getSone(eq(id))).thenReturn(of(sone));
75                 return sone;
76         }
77
78         public static Sone mockRemoteSone(Core core, final String id) {
79                 Sone sone = mock(Sone.class);
80                 when(sone.getId()).thenReturn(id);
81                 when(sone.isLocal()).thenReturn(false);
82                 final Database database = core.getDatabase();
83                 when(sone.newPostBuilder()).thenReturn(new DefaultPostBuilder(database, id));
84                 when(sone.newPostReplyBuilder(Matchers.<String>anyObject())).thenThrow(IllegalStateException.class);
85                 when(core.getSone(eq(id))).thenReturn(of(sone));
86                 when(database.getSone(eq(id))).thenReturn(of(sone));
87                 return sone;
88         }
89
90         public static Post mockPost(Core core, Sone sone, String postId) {
91                 Post post = mock(Post.class);
92                 when(post.getId()).thenReturn(postId);
93                 when(post.getSone()).thenReturn(sone);
94                 Database database = core.getDatabase();
95                 when(database.getPost(eq(postId))).thenReturn(of(post));
96                 return post;
97         }
98
99 }