b07bb8593b85b4193811d54a7713172acdda8839
[jSite2.git] / src / net / pterodactylus / util / fcp / FcpTest.java
1 /*
2  * jSite2 - FcpTest.java -
3  * Copyright © 2008 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package net.pterodactylus.util.fcp;
21
22 import java.io.IOException;
23
24 import junit.framework.TestCase;
25 import net.pterodactylus.util.fcp.message.ClientHello;
26 import net.pterodactylus.util.fcp.message.CloseConnectionDuplicateClientName;
27 import net.pterodactylus.util.fcp.message.GenerateSSK;
28 import net.pterodactylus.util.fcp.message.NodeHello;
29
30 /**
31  * Tests various commands and the FCP connection.
32  * 
33  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
34  * @version $Id$
35  */
36 public class FcpTest extends TestCase {
37
38         /** The FCP connection. */
39         private FcpConnection fcpConnection;
40
41         /**
42          * {@inheritDoc}
43          */
44         @Override
45         protected void setUp() throws Exception {
46                 fcpConnection = new FcpConnection("wing");
47                 fcpConnection.connect();
48                 fcpConnection.sendMessage(new ClientHello("FcpTest"));
49         }
50
51         /**
52          * {@inheritDoc}
53          */
54         @Override
55         protected void tearDown() throws Exception {
56                 fcpConnection.disconnect();
57         }
58
59         /**
60          * Tests the FCP connection be simply {@link #setUp() setting it up} and
61          * {@link #tearDown() tearing it down} again.
62          * 
63          * @throws FcpException
64          *             if an FCP error occurs
65          * @throws IOException
66          *             if an I/O error occurs
67          */
68         public void testFcpConnection() throws FcpException, IOException {
69                 /* do nothing. */
70         }
71
72 //      public void testListPeers() throws FcpException, IOException {
73 //              List<Map<String, String>> peers = fcpConnection.sendListPeers(true, true);
74 //              for (Map<String, String> peer: peers) {
75 //                      for (Map.Entry<String, String> entry: peer.entrySet()) {
76 //                              System.out.println(entry.getKey() + ": " + entry.getValue());
77 //                      }
78 //              }
79 //      }
80
81 //      public void testListPeerNotes() throws FcpException, IOException {
82 //              List<Map<String, String>> peers = fcpConnection.sendListPeerNotes("AY6rGAGjayoyQD2CkvQibf1Ct3mh6iwqyntzNpfRsiM");
83 //              for (Map<String, String> peer: peers) {
84 //                      for (Map.Entry<String, String> entry: peer.entrySet()) {
85 //                              System.out.println(entry.getKey() + ": " + entry.getValue());
86 //                      }
87 //              }
88 //      }
89
90         /**
91          * Generates an SSK key pair.
92          * 
93          * @throws FcpException
94          *             if an FCP error occurs
95          * @throws IOException
96          *             if an I/O error occurs
97          * @throws InterruptedException
98          *             if {@link Object#wait()} wakes up spuriously
99          */
100         public void testGenerateSSK() throws IOException, FcpException, InterruptedException {
101                 final boolean[] result = new boolean[1];
102                 FcpAdapter fcpAdapter = new FcpAdapter() {
103                         /**
104                          * @see net.pterodactylus.util.fcp.FcpAdapter#receivedNodeHello(net.pterodactylus.util.fcp.FcpConnection,
105                          *      net.pterodactylus.util.fcp.message.NodeHello)
106                          */
107                         @Override
108                         public void receivedNodeHello(FcpConnection fcpConnection, NodeHello nodeHello) {
109                                 result[0] = true;
110                                 synchronized (this) {
111                                         notify();
112                                 }
113                         }
114
115                         /**
116                          * @see net.pterodactylus.util.fcp.FcpAdapter#receivedCloseConnectionDuplicateClientName(net.pterodactylus.util.fcp.FcpConnection,
117                          *      net.pterodactylus.util.fcp.message.CloseConnectionDuplicateClientName)
118                          */
119                         @Override
120                         public void receivedCloseConnectionDuplicateClientName(FcpConnection fcpConnection, CloseConnectionDuplicateClientName closeConnectionDuplicateClientName) {
121                                 result[0] = false;
122                                 synchronized (this) {
123                                         notify();
124                                 }
125                         }
126                 };
127                 synchronized (fcpAdapter) {
128                         fcpConnection.sendMessage(new GenerateSSK());
129                         fcpAdapter.wait();
130                 }
131                 assertTrue("received NodeHello", result[0]);
132         }
133
134 }