Add tests for LockSoneCommand and UnlockSoneCommand, use newer JUnit, add Mockito...
[Sone.git] / src / test / java / net / pterodactylus / sone / fcp / LockSoneCommandTest.java
1 /*
2  * Sone - LockSoneCommandTest.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.fcp;
19
20 import static org.hamcrest.CoreMatchers.is;
21 import static org.hamcrest.CoreMatchers.notNullValue;
22 import static org.hamcrest.MatcherAssert.assertThat;
23 import static org.mockito.Matchers.anyBoolean;
24 import static org.mockito.Matchers.eq;
25 import static org.mockito.Mockito.mock;
26 import static org.mockito.Mockito.verify;
27 import static org.mockito.Mockito.when;
28
29 import net.pterodactylus.sone.core.Core;
30 import net.pterodactylus.sone.data.Sone;
31 import net.pterodactylus.sone.freenet.SimpleFieldSetBuilder;
32 import net.pterodactylus.sone.freenet.fcp.Command.Response;
33 import net.pterodactylus.sone.freenet.fcp.FcpException;
34
35 import freenet.support.SimpleFieldSet;
36
37 import org.junit.Test;
38
39 /**
40  * Tests for {@link UnlockSoneCommand}.
41  *
42  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
43  */
44 public class LockSoneCommandTest {
45
46         @Test
47         public void testLockingALocalSone() throws FcpException {
48                 Sone localSone = mock(Sone.class);
49                 when(localSone.getId()).thenReturn("LocalSone");
50                 Core core = mock(Core.class);
51                 when(core.getSone(eq("LocalSone"), anyBoolean())).thenReturn(localSone);
52                 when(core.getLocalSone(eq("LocalSone"), anyBoolean())).thenReturn(localSone);
53                 SimpleFieldSet fields = new SimpleFieldSetBuilder().put("Sone", "LocalSone").get();
54
55                 LockSoneCommand lockSoneCommand = new LockSoneCommand(core);
56                 Response response = lockSoneCommand.execute(fields, null, null);
57
58                 verify(core).lockSone(eq(localSone));
59                 assertThat(response, notNullValue());
60                 assertThat(response.getReplyParameters(), notNullValue());
61                 assertThat(response.getReplyParameters().get("Message"), is("SoneLocked"));
62                 assertThat(response.getReplyParameters().get("Sone"), is("LocalSone"));
63         }
64
65         @Test(expected = FcpException.class)
66         public void testLockingARemoteSone() throws FcpException {
67                 Sone removeSone = mock(Sone.class);
68                 Core core = mock(Core.class);
69                 when(core.getSone(eq("RemoteSone"), anyBoolean())).thenReturn(removeSone);
70                 SimpleFieldSet fields = new SimpleFieldSetBuilder().put("Sone", "RemoteSone").get();
71
72                 LockSoneCommand lockSoneCommand = new LockSoneCommand(core);
73                 lockSoneCommand.execute(fields, null, null);
74         }
75
76         @Test(expected = FcpException.class)
77         public void testMissingSone() throws FcpException {
78                 Core core = mock(Core.class);
79                 SimpleFieldSet fields = new SimpleFieldSetBuilder().get();
80
81                 LockSoneCommand lockSoneCommand = new LockSoneCommand(core);
82                 lockSoneCommand.execute(fields, null, null);
83         }
84
85 }