TestCOSName.java
/*
* Copyright 2018 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.cos;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import org.apache.pdfbox.Loader;
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.pdmodel.PDPage;
import org.junit.jupiter.api.Test;
class TestCOSName
{
/**
* PDFBOX-4076: Check that characters outside of US_ASCII are not replaced with "?".
*
* @throws IOException
*/
@Test
void PDFBox4076() throws IOException
{
String special = "������������!";
ByteArrayOutputStream baos = new ByteArrayOutputStream();
try (PDDocument document = new PDDocument())
{
PDPage page = new PDPage();
document.addPage(page);
document.getDocumentCatalog().getCOSObject().setString(COSName.getPDFName(special), special);
document.save(baos);
}
try (PDDocument document = Loader.loadPDF(baos.toByteArray()))
{
COSDictionary catalogDict = document.getDocumentCatalog().getCOSObject();
assertTrue(catalogDict.containsKey(special));
assertEquals(special, catalogDict.getString(special));
}
}
}