b8b5bdf7b1d466efce6e1b2ef1447a6939fae95a
[jFCPlib.git] / test / main / java / net / pterodactylus / fcp / FcpConnectionTest.java
1 /*
2  * jFCPlib - FcpConnectionTest.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 import java.io.InputStream;
24
25
26 /**
27  * TODO
28  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
29  */
30 public class FcpConnectionTest extends FcpAdapter {
31
32         public static void main(String[] commandLine) throws IllegalStateException, IOException {
33                 new FcpConnectionTest();
34         }
35
36         private FcpConnectionTest() throws IllegalStateException, IOException {
37                 FcpConnection fcpConnection = new FcpConnection("wing");
38                 fcpConnection.addFcpListener(this);
39                 fcpConnection.connect();
40                 ClientHello clientHello = new ClientHello("bug-test");
41                 fcpConnection.sendMessage(clientHello);
42                 ClientGet clientGet = new ClientGet("KSK@gpl.txt", "test");
43                 fcpConnection.sendMessage(clientGet);
44         }
45
46         /**
47          * {@inheritDoc}
48          */
49         public void receivedAllData(FcpConnection fcpConnection, AllData allData) {
50                 System.out.println("AllData");
51                 InputStream payloadInputStream = allData.getPayloadInputStream();
52                 int r = 0;
53                 byte[] buffer = new byte[1024];
54                 try {
55                         while ((r = payloadInputStream.read(buffer)) != -1) {
56                                 for (int i = 0; i < r; i++) {
57                                         System.out.print((char) buffer[i]);
58                                 }
59                         }
60                 } catch (IOException e) {
61                         // TODO Auto-generated catch block
62                 }
63                 fcpConnection.close();
64         }
65
66 }