b966b19ea082237ebeb90c0eb3c53066f8c59d30
[Sone.git] / src / test / java / net / pterodactylus / sone / fcp / UnlockSoneCommandTest.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 com.google.common.base.Optional;
38 import org.junit.Test;
39
40 /**
41  * Tests for {@link LockSoneCommand}.
42  *
43  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
44  */
45 public class UnlockSoneCommandTest {
46
47         @Test
48         public void testUnlockingALocalSone() throws FcpException {
49                 Sone localSone = mock(Sone.class);
50                 when(localSone.getId()).thenReturn("LocalSone");
51                 when(localSone.isLocal()).thenReturn(true);
52                 Core core = mock(Core.class);
53                 when(core.getSone(eq("LocalSone"))).thenReturn(Optional.of(localSone));
54                 when(core.getLocalSone(eq("LocalSone"), anyBoolean())).thenReturn(localSone);
55                 SimpleFieldSet fields = new SimpleFieldSetBuilder().put("Sone", "LocalSone").get();
56
57                 UnlockSoneCommand unlockSoneCommand = new UnlockSoneCommand(core);
58                 Response response = unlockSoneCommand.execute(fields, null, null);
59
60                 verify(core).unlockSone(eq(localSone));
61                 assertThat(response, notNullValue());
62                 assertThat(response.getReplyParameters(), notNullValue());
63                 assertThat(response.getReplyParameters().get("Message"), is("SoneUnlocked"));
64                 assertThat(response.getReplyParameters().get("Sone"), is("LocalSone"));
65         }
66
67         @Test(expected = FcpException.class)
68         public void testUnlockingARemoteSone() throws FcpException {
69                 Sone removeSone = mock(Sone.class);
70                 Core core = mock(Core.class);
71                 when(core.getSone(eq("RemoteSone"))).thenReturn(Optional.of(removeSone));
72                 SimpleFieldSet fields = new SimpleFieldSetBuilder().put("Sone", "RemoteSone").get();
73
74                 UnlockSoneCommand unlockSoneCommand = new UnlockSoneCommand(core);
75                 unlockSoneCommand.execute(fields, null, null);
76         }
77
78         @Test(expected = FcpException.class)
79         public void testMissingSone() throws FcpException {
80                 Core core = mock(Core.class);
81                 SimpleFieldSet fields = new SimpleFieldSetBuilder().get();
82
83                 UnlockSoneCommand unlockSoneCommand = new UnlockSoneCommand(core);
84                 unlockSoneCommand.execute(fields, null, null);
85         }
86
87 }