import java.io.ByteArrayOutputStream;
import java.io.IOException;
import junit.framework.TestCase;
import dijjer.util.TruncatingOutputStream;
/*
* 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 TruncatingOutputStreamTest extends TestCase {
public void testTOS() throws IOException {
ByteArrayOutputStream bos = new ByteArrayOutputStream();
TruncatingOutputStream tos = new TruncatingOutputStream(bos, 2, 8);
tos.write(new byte[] {55, 0, 1, 2, 3, 4, 55, 55, 55}, 1, 5);
tos.write(new byte[] {55, 5, 6, 7, 8, 9, 10, 11}, 1, 7);
byte[] ba = bos.toByteArray();
byte[] correct = new byte[] {2, 3, 4, 5, 6, 7, 8, 9};
boolean same = ba.length == correct.length;
for (int x=0; x<ba.length; x++) {
System.out.print(" "+ba[x]+":"+correct[x]);
if (ba[x] != correct[x]) {
same = false;
}
assertTrue(same);
}
}
}