import java.util.LinkedList;
import junit.framework.TestCase;
import dijjer.io.xfer.PartiallyReceivedBlock;
import dijjer.util.Buffer;
/*
* Dijjer - A Peer to Peer HTTP Cache
* Copyright (C) 2004,2005 Change.Tv, Inc
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* @author ian
*
* To change the template for this generated type comment go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
public class PartiallyReceivedBlockTest extends TestCase {
protected byte[] makePacket(int p) {
return new byte[] {(byte)p, (byte)p};
}
public void testAll() {
PartiallyReceivedBlock prb = new PartiallyReceivedBlock(2, 2);
prb.addPacket(0, new Buffer(makePacket(1)));
LinkedList pr = prb.addListener(new PartiallyReceivedBlock.PacketReceivedListener() {
public void packetReceived(int packetNo) {
System.out.println("Received packet "+packetNo);
}
public void receiveAborted(int reason, String description) {
System.out.println("Receive aborted - "+reason+" "+description);
}
});
prb.addPacket(1, new Buffer(makePacket(2)));
byte[] block = prb.getBlock();
for (int x=0; x<block.length; x++) {
System.out.print(block[x]);
}
System.out.println();
}
}