TestContentLengthInputStream.java

/*
 * ====================================================================
 * 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.
 * ====================================================================
 *
 * This software consists of voluntary contributions made by many
 * individuals on behalf of the Apache Software Foundation.  For more
 * information on the Apache Software Foundation, please see
 * <http://www.apache.org/>.
 *
 */

package org.apache.hc.core5.http.impl.io;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;

import org.apache.hc.core5.http.ConnectionClosedException;
import org.apache.hc.core5.http.StreamClosedException;
import org.apache.hc.core5.http.io.SessionInputBuffer;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

class TestContentLengthInputStream {

    @Test
    void testBasics() throws IOException {
        final String s = "1234567890123456";
        final ByteArrayInputStream inputStream = new ByteArrayInputStream(s.getBytes(StandardCharsets.US_ASCII));
        final SessionInputBuffer inBuffer = new SessionInputBufferImpl(16);
        try (InputStream in = new ContentLengthInputStream(inBuffer, inputStream, 10L)) {
            final ByteArrayOutputStream outputStream = new ByteArrayOutputStream();

            final byte[] buffer = new byte[50];
            int len = in.read(buffer, 0, 2);
            outputStream.write(buffer, 0, len);
            len = in.read(buffer);
            outputStream.write(buffer, 0, len);

            final String result = new String(outputStream.toByteArray(), StandardCharsets.US_ASCII);
            Assertions.assertEquals("1234567890", result);
        }
    }

    @Test
    void testSkip() throws IOException {
        final ByteArrayInputStream inputStream1 = new ByteArrayInputStream(new byte[20]);
        final SessionInputBuffer inBuffer1 = new SessionInputBufferImpl(16);
        try (InputStream in1 = new ContentLengthInputStream(inBuffer1, inputStream1, 10L)) {
            Assertions.assertEquals(10, in1.skip(10));
            Assertions.assertEquals(-1, in1.read());
        }

        final ByteArrayInputStream inputStream2 = new ByteArrayInputStream(new byte[20]);
        final SessionInputBuffer inBuffer2 = new SessionInputBufferImpl(16);
        try (InputStream in2 = new ContentLengthInputStream(inBuffer2, inputStream2, 10L)) {
            in2.read();
            Assertions.assertEquals(9, in2.skip(10));
            Assertions.assertEquals(-1, in2.read());
        }

        final ByteArrayInputStream inputStream3 = new ByteArrayInputStream(new byte[20]);
        final SessionInputBuffer inBuffer3 = new SessionInputBufferImpl(16);
        try (InputStream in3 = new ContentLengthInputStream(inBuffer3, inputStream3, 2L)) {
            in3.read();
            in3.read();
            Assertions.assertTrue(in3.skip(10) <= 0);
            Assertions.assertEquals(0, in3.skip(-1));
            Assertions.assertEquals(-1, in3.read());
        }

        final ByteArrayInputStream inputStream4 = new ByteArrayInputStream(new byte[20]);
        final SessionInputBuffer inBuffer4 = new SessionInputBufferImpl(16);
        try (InputStream in4 = new ContentLengthInputStream(inBuffer4, inputStream4, 10L)) {
            Assertions.assertEquals(5, in4.skip(5));
            Assertions.assertEquals(5, in4.read(new byte[20]));
        }
    }

    @Test
    void testAvailable() throws IOException {
        final ByteArrayInputStream inputStream = new ByteArrayInputStream(new byte[] {1, 2, 3});
        final SessionInputBuffer inBuffer = new SessionInputBufferImpl(16);
        try (InputStream in = new ContentLengthInputStream(inBuffer, inputStream, 3L)) {
            Assertions.assertEquals(0, in.available());
            in.read();
            Assertions.assertEquals(2, in.available());
        }
    }

    @Test
    void testClose() throws IOException {
        final String s = "1234567890123456-";
        final ByteArrayInputStream inputStream = new ByteArrayInputStream(s.getBytes(StandardCharsets.US_ASCII));
        final SessionInputBuffer inBuffer = new SessionInputBufferImpl(16);
        final InputStream in = new ContentLengthInputStream(inBuffer, inputStream, 16L);
        in.close();
        in.close();
        Assertions.assertThrows(StreamClosedException.class, in::read);
        final byte[] tmp = new byte[10];
        Assertions.assertThrows(StreamClosedException.class, () -> in.read(tmp));
        Assertions.assertThrows(StreamClosedException.class, () -> in.read(tmp, 0, tmp.length));
        Assertions.assertEquals('-', inBuffer.read(inputStream));
    }

    @Test
    void testTruncatedContent() throws IOException {
        final String s = "1234567890123456";
        final ByteArrayInputStream inputStream = new ByteArrayInputStream(s.getBytes(StandardCharsets.US_ASCII));
        final SessionInputBuffer inBuffer = new SessionInputBufferImpl(16);
        final InputStream in = new ContentLengthInputStream(inBuffer, inputStream, 32L);
        final byte[] tmp = new byte[32];
        final int byteRead = in.read(tmp);
        Assertions.assertEquals(16, byteRead);
        Assertions.assertThrows(ConnectionClosedException.class, () -> in.read(tmp));
        Assertions.assertThrows(ConnectionClosedException.class, () -> in.read());
        Assertions.assertThrows(ConnectionClosedException.class, () -> in.close());
    }

}