blob: 0e63e18ae2ceff4fcbe9157cc90d32839ee377d5 [file] [log] [blame]
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance *
// * with the License. You may obtain a copy of the License at *
// * *
// * http://www.apache.org/licenses/LICENSE-2.0 *
// * *
// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an *
// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the *
// * specific language governing permissions and limitations under the License. *
// ***************************************************************************************************************************
package org.apache.juneau.utils;
import static org.junit.Assert.*;
import java.io.*;
import org.apache.juneau.internal.*;
import org.junit.*;
@SuppressWarnings("javadoc")
public class IOUtilsTest {
//====================================================================================================
// read(File)
// read(InputStream, Charset)
// read(InputStream)
// read(Reader, int, int)
//====================================================================================================
@Test
public void testRead() throws Exception {
TestReader in;
TestWriter out;
in = new TestReader("foobar");
out = new TestWriter();
IOPipe.create(in, out).run();
assertTrue(in.closed);
assertFalse(out.closed);
assertEquals("foobar", out.toString());
}
public static class TestReader extends StringReader {
boolean closed;
public TestReader(String s) {
super(s);
}
@Override /* Reader */
public void close() {
closed = true;
}
}
public static class TestWriter extends StringWriter {
boolean closed;
public TestWriter() {
super();
}
@Override /* Writer */
public void close() {
closed = true;
}
}
public static class TestInputStream extends ByteArrayInputStream {
boolean closed;
public TestInputStream(String s) {
super(s.getBytes());
}
@Override /* InputStream */
public void close() throws IOException {
super.close();
closed = true;
}
}
public static class TestOutputStream extends ByteArrayOutputStream {
boolean closed;
public TestOutputStream() {
super();
}
@Override /* OutputStream */
public void close() throws IOException {
super.close();
closed = true;
}
@Override /* Object */
public String toString() {
return new String(this.toByteArray(), IOUtils.UTF8);
}
}
}