PDStreamTest.java
/*
* Copyright 2015 The Apache Software Foundation.
*
* Licensed 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.pdfbox.pdmodel.common;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import org.apache.pdfbox.cos.COSArray;
import org.apache.pdfbox.cos.COSName;
import org.apache.pdfbox.pdmodel.PDDocument;
import org.junit.jupiter.api.Test;
/**
*
* @author Tilman Hausherr
*/
class PDStreamTest
{
/**
* Test for null filter list (PDFBOX-2948)
*/
@Test
void testCreateInputStreamNullFilters() throws Exception
{
try (PDDocument doc = new PDDocument())
{
InputStream is = new ByteArrayInputStream(new byte[] { 12, 34, 56, 78 });
PDStream pdStream = new PDStream(doc, is, (COSArray) null);
assertTrue(pdStream.getFilters().isEmpty());
List<String> stopFilters = new ArrayList<>();
stopFilters.add(COSName.DCT_DECODE.toString());
stopFilters.add(COSName.DCT_DECODE_ABBREVIATION.toString());
is = pdStream.createInputStream(stopFilters);
assertEquals(12,is.read());
assertEquals(34,is.read());
assertEquals(56,is.read());
assertEquals(78,is.read());
assertEquals(-1,is.read());
}
}
/**
* Test for empty filter list
*/
@Test
void testCreateInputStreamEmptyFilters() throws Exception
{
try (PDDocument doc = new PDDocument())
{
InputStream is = new ByteArrayInputStream(new byte[] { 12, 34, 56, 78 });
PDStream pdStream = new PDStream(doc, is, new COSArray());
assertEquals(0,pdStream.getFilters().size());
List<String> stopFilters = new ArrayList<>();
stopFilters.add(COSName.DCT_DECODE.toString());
stopFilters.add(COSName.DCT_DECODE_ABBREVIATION.toString());
is = pdStream.createInputStream(stopFilters);
assertEquals(12,is.read());
assertEquals(34,is.read());
assertEquals(56,is.read());
assertEquals(78,is.read());
assertEquals(-1,is.read());
}
}
/**
* Test for null stop filters
*/
@Test
void testCreateInputStreamNullStopFilters() throws Exception
{
try (PDDocument doc = new PDDocument())
{
InputStream is = new ByteArrayInputStream(new byte[] { 12, 34, 56, 78 });
PDStream pdStream = new PDStream(doc, is, new COSArray());
assertEquals(0, pdStream.getFilters().size());
is = pdStream.createInputStream((List<String>) null);
assertEquals(12, is.read());
assertEquals(34, is.read());
assertEquals(56, is.read());
assertEquals(78,is.read());
assertEquals(-1,is.read());
}
}
}