rename fcplib to jFCPlib
[jFCPlib.git] / src / net / pterodactylus / 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.fcp;
21
22 import java.io.IOException;
23
24 import junit.framework.TestCase;
25
26 /**
27  * Tests various commands and the FCP connection.
28  * 
29  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
30  * @version $Id$
31  */
32 public class FcpTest extends TestCase {
33
34         /** The FCP connection. */
35         private FcpConnection fcpConnection;
36
37         /**
38          * {@inheritDoc}
39          */
40         @Override
41         protected void setUp() throws Exception {
42                 fcpConnection = new FcpConnection("wing");
43                 fcpConnection.connect();
44                 fcpConnection.sendMessage(new ClientHello("FcpTest"));
45         }
46
47         /**
48          * {@inheritDoc}
49          */
50         @Override
51         protected void tearDown() throws Exception {
52                 fcpConnection.disconnect();
53         }
54
55         /**
56          * Tests the FCP connection be simply {@link #setUp() setting it up} and
57          * {@link #tearDown() tearing it down} again.
58          */
59         public void testFcpConnection() {
60                 /* do nothing. */
61         }
62
63         /**
64          * Generates an SSK key pair.
65          * 
66          * @throws IOException
67          *             if an I/O error occurs
68          * @throws InterruptedException
69          *             if {@link Object#wait()} wakes up spuriously
70          */
71         public void testGenerateSSK() throws IOException, InterruptedException {
72                 final SSKKeypair[] keypair = new SSKKeypair[1];
73                 FcpAdapter fcpAdapter = new FcpAdapter() {
74
75                         /**
76                          * {@inheritDoc}
77                          */
78                         @Override
79                         public void receivedSSKKeypair(FcpConnection fcpConnection, SSKKeypair sskKeypair) {
80                                 keypair[0] = sskKeypair;
81                                 synchronized (this) {
82                                         notify();
83                                 }
84                         }
85                 };
86                 fcpConnection.addFcpListener(fcpAdapter);
87                 synchronized (fcpAdapter) {
88                         fcpConnection.sendMessage(new GenerateSSK());
89                         fcpAdapter.wait();
90                 }
91                 assertNotNull("ssk keypair", keypair[0]);
92         }
93
94 }