You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ti...@apache.org on 2021/03/23 17:07:52 UTC

svn commit: r1887967 - /pdfbox/branches/2.0/examples/src/test/java/org/apache/pdfbox/examples/pdmodel/TestEmbeddedFiles.java

Author: tilman
Date: Tue Mar 23 17:07:51 2021
New Revision: 1887967

URL: http://svn.apache.org/viewvc?rev=1887967&view=rev
Log:
PDFBOX-5138: add simple test for the two examples

Added:
    pdfbox/branches/2.0/examples/src/test/java/org/apache/pdfbox/examples/pdmodel/TestEmbeddedFiles.java   (with props)

Added: pdfbox/branches/2.0/examples/src/test/java/org/apache/pdfbox/examples/pdmodel/TestEmbeddedFiles.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/2.0/examples/src/test/java/org/apache/pdfbox/examples/pdmodel/TestEmbeddedFiles.java?rev=1887967&view=auto
==============================================================================
--- pdfbox/branches/2.0/examples/src/test/java/org/apache/pdfbox/examples/pdmodel/TestEmbeddedFiles.java (added)
+++ pdfbox/branches/2.0/examples/src/test/java/org/apache/pdfbox/examples/pdmodel/TestEmbeddedFiles.java Tue Mar 23 17:07:51 2021
@@ -0,0 +1,60 @@
+/*
+ * 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.examples.pdmodel;
+
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.IOException;
+import java.io.InputStream;
+
+import org.apache.pdfbox.io.IOUtils;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+
+/**
+ *
+ * @author Tilman Hausherr
+ */
+public class TestEmbeddedFiles
+{
+    /**
+     * Very basic test of embedding and extracting an attachment.
+     *
+     * @throws IOException 
+     */
+    @Test
+    public void TestEmbeddedFiles() throws IOException
+    {
+        String outputFile = "target/test-output/EmbeddedFile.pdf";
+        String embeddedFile = "target/test-output/test.txt";
+
+        new File(outputFile).delete();
+        new File(embeddedFile).delete();
+        String[] args = new String[] { outputFile };
+        EmbeddedFiles.main(args);
+        ExtractEmbeddedFiles.main(args);
+        InputStream is = new FileInputStream(embeddedFile);
+        byte[] bytes = IOUtils.toByteArray(is);
+        is.close();
+        String content = new String(bytes);
+        Assert.assertEquals("This is the contents of the embedded file", content);
+        new File(embeddedFile).delete();
+        new File(outputFile).delete();
+    }
+}
\ No newline at end of file

Propchange: pdfbox/branches/2.0/examples/src/test/java/org/apache/pdfbox/examples/pdmodel/TestEmbeddedFiles.java
------------------------------------------------------------------------------
    svn:eol-style = native