d73b6e31716d41631170faa2630679b584f368df
[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 com.google.common.base.Optional.of;
21 import static net.pterodactylus.sone.fcp.Verifiers.verifyAnswer;
22 import static org.hamcrest.CoreMatchers.is;
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;
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 LockSoneCommand}.
41  *
42  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
43  */
44 public class UnlockSoneCommandTest {
45
46         @Test
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();
55
56                 UnlockSoneCommand unlockSoneCommand = new UnlockSoneCommand(core);
57                 Response response = unlockSoneCommand.execute(fields, null, null);
58
59                 verify(core).unlockSone(eq(localSone));
60                 verifyAnswer(response, "SoneUnlocked");
61                 assertThat(response.getReplyParameters().get("Sone"), is("LocalSone"));
62         }
63
64         @Test(expected = FcpException.class)
65         public void testUnlockingARemoteSone() throws FcpException {
66                 Sone removeSone = mock(Sone.class);
67                 Core core = mock(Core.class);
68                 when(core.getSone(eq("RemoteSone"))).thenReturn(of(removeSone));
69                 SimpleFieldSet fields = new SimpleFieldSetBuilder().put("Sone", "RemoteSone").get();
70
71                 UnlockSoneCommand unlockSoneCommand = new UnlockSoneCommand(core);
72                 unlockSoneCommand.execute(fields, null, null);
73         }
74
75         @Test(expected = FcpException.class)
76         public void testMissingSone() throws FcpException {
77                 Core core = mock(Core.class);
78                 SimpleFieldSet fields = new SimpleFieldSetBuilder().get();
79
80                 UnlockSoneCommand unlockSoneCommand = new UnlockSoneCommand(core);
81                 unlockSoneCommand.execute(fields, null, null);
82         }
83
84 }