FDFFieldTest.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.
*/
package org.apache.pdfbox.pdmodel.fdf;
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.io.IOException;
import java.io.OutputStream;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
import org.apache.pdfbox.cos.COSArray;
import org.apache.pdfbox.cos.COSBase;
import org.apache.pdfbox.cos.COSName;
import org.apache.pdfbox.cos.COSStream;
import org.apache.pdfbox.cos.COSString;
import org.junit.jupiter.api.Test;
/*
* Test some characteristics of FDFFields
*/
class FDFFieldTest
{
@Test
void testCOSStringValue() throws IOException
{
String testString = "Test value";
COSString testCOSString = new COSString(testString);
FDFField field = new FDFField();
field.setValue(testCOSString);
assertEquals(testCOSString, field.getCOSValue());
assertEquals(testString, field.getValue());
}
@Test
void testTextAsCOSStreamValue() throws IOException
{
String testString = "Test value";
byte[] testBytes = testString.getBytes(StandardCharsets.US_ASCII);
COSStream stream = createStream(testBytes, null);
FDFField field = new FDFField();
field.setValue(stream);
assertEquals(testString, field.getValue());
}
@Test
void testCOSNameValue() throws IOException
{
String testString = "Yes";
COSName testCOSSName = COSName.getPDFName(testString);
FDFField field = new FDFField();
field.setValue(testCOSSName);
assertEquals(testCOSSName, field.getCOSValue());
assertEquals(testString, field.getValue());
}
@Test
void testCOSArrayValue() throws IOException
{
List<String> testList = new ArrayList<>();
testList.add("A");
testList.add("B");
COSArray testCOSArray = COSArray.ofCOSStrings(testList);
FDFField field = new FDFField();
field.setValue(testCOSArray);
assertEquals(testCOSArray, field.getCOSValue());
assertEquals(testList, field.getValue());
}
private COSStream createStream(byte[] testString, COSBase filters) throws IOException
{
COSStream stream = new COSStream();
try (OutputStream output = stream.createOutputStream(filters))
{
output.write(testString);
}
return stream;
}
}