2 * Sone - LockSoneCommandTest.java - Copyright © 2013 David Roden
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.
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.
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/>.
18 package net.pterodactylus.sone.fcp;
20 import static com.google.common.base.Optional.of;
21 import static org.hamcrest.CoreMatchers.is;
22 import static org.hamcrest.CoreMatchers.notNullValue;
23 import static org.hamcrest.MatcherAssert.assertThat;
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;
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;
35 import freenet.support.SimpleFieldSet;
37 import org.junit.Test;
40 * Tests for {@link LockSoneCommand}.
42 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
44 public class UnlockSoneCommandTest {
47 public void testUnlockingALocalSone() throws FcpException {
48 Sone localSone = mock(Sone.class);
49 when(localSone.getId()).thenReturn("LocalSone");
50 when(localSone.isLocal()).thenReturn(true);
51 Core core = mock(Core.class);
52 when(core.getSone(eq("LocalSone"))).thenReturn(of(localSone));
53 when(core.getLocalSone(eq("LocalSone"))).thenReturn(of(localSone));
54 SimpleFieldSet fields = new SimpleFieldSetBuilder().put("Sone", "LocalSone").get();
56 UnlockSoneCommand unlockSoneCommand = new UnlockSoneCommand(core);
57 Response response = unlockSoneCommand.execute(fields, null, null);
59 verify(core).unlockSone(eq(localSone));
60 assertThat(response, notNullValue());
61 assertThat(response.getReplyParameters(), notNullValue());
62 assertThat(response.getReplyParameters().get("Message"), is("SoneUnlocked"));
63 assertThat(response.getReplyParameters().get("Sone"), is("LocalSone"));
66 @Test(expected = FcpException.class)
67 public void testUnlockingARemoteSone() throws FcpException {
68 Sone removeSone = mock(Sone.class);
69 Core core = mock(Core.class);
70 when(core.getSone(eq("RemoteSone"))).thenReturn(of(removeSone));
71 SimpleFieldSet fields = new SimpleFieldSetBuilder().put("Sone", "RemoteSone").get();
73 UnlockSoneCommand unlockSoneCommand = new UnlockSoneCommand(core);
74 unlockSoneCommand.execute(fields, null, null);
77 @Test(expected = FcpException.class)
78 public void testMissingSone() throws FcpException {
79 Core core = mock(Core.class);
80 SimpleFieldSet fields = new SimpleFieldSetBuilder().get();
82 UnlockSoneCommand unlockSoneCommand = new UnlockSoneCommand(core);
83 unlockSoneCommand.execute(fields, null, null);