/* * Created on 09/lug/2010 * * Copyright 2010 by Andrea Vacondio (andrea.vacondio@gmail.com). * * This file is part of the Sejda source code * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.sejda.core.service; import static org.junit.Assert.assertEquals; import java.io.IOException; import org.junit.Ignore; import org.junit.Test; import org.sejda.model.input.PdfSource; import org.sejda.model.output.ExistingOutputPolicy; import org.sejda.model.parameter.SetMetadataParameters; import org.sejda.model.pdf.PdfMetadataKey; import org.sejda.model.pdf.PdfVersion; import org.sejda.sambox.pdmodel.PDDocument; import org.sejda.sambox.pdmodel.PDDocumentInformation; /** * Test unit for the set metadata task * * @author Andrea Vacondio * */ @Ignore public abstract class SetMetadataTaskTest extends BaseTaskTest<SetMetadataParameters> { private SetMetadataParameters parameters = new SetMetadataParameters(); private void setUpParams(PdfSource<?> source) { parameters.setCompress(true); parameters.setVersion(PdfVersion.VERSION_1_7); parameters.put(PdfMetadataKey.AUTHOR, "test_author"); parameters.put(PdfMetadataKey.KEYWORDS, "test_keywords"); parameters.put(PdfMetadataKey.SUBJECT, "test_subject"); parameters.put(PdfMetadataKey.TITLE, "test_title"); parameters.setSource(source); parameters.setExistingOutputPolicy(ExistingOutputPolicy.OVERWRITE); } @Test public void testExecute() throws IOException { setUpParams(shortInput()); doExecute(); } @Test public void testExecuteEncrypted() throws IOException { setUpParams(stronglyEncryptedInput()); doExecute(); } private void doExecute() throws IOException { testContext.pdfOutputTo(parameters); execute(parameters); PDDocument document = testContext.assertTaskCompleted(); testContext.assertCreator().assertVersion(PdfVersion.VERSION_1_7); PDDocumentInformation info = document.getDocumentInformation(); assertEquals("test_author", info.getAuthor()); assertEquals("test_keywords", info.getKeywords()); assertEquals("test_subject", info.getSubject()); assertEquals("test_title", info.getTitle()); } }