You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by le...@apache.org on 2020/10/25 12:57:52 UTC

svn commit: r1882838 - /pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/io/UnmodifiableCOSDictionaryTest.java

Author: lehmi
Date: Sun Oct 25 12:57:51 2020
New Revision: 1882838

URL: http://svn.apache.org/viewvc?rev=1882838&view=rev
Log:
PDFBOX-4892: add tests

Added:
    pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/io/UnmodifiableCOSDictionaryTest.java   (with props)

Added: pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/io/UnmodifiableCOSDictionaryTest.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/io/UnmodifiableCOSDictionaryTest.java?rev=1882838&view=auto
==============================================================================
--- pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/io/UnmodifiableCOSDictionaryTest.java (added)
+++ pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/io/UnmodifiableCOSDictionaryTest.java Sun Oct 25 12:57:51 2020
@@ -0,0 +1,390 @@
+/*
+ * 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.io;
+
+import static org.junit.Assert.fail;
+
+import java.util.Calendar;
+
+import org.apache.pdfbox.cos.COSDictionary;
+import org.apache.pdfbox.cos.COSName;
+import org.apache.pdfbox.pdmodel.font.encoding.Encoding;
+import org.junit.Test;
+
+public class UnmodifiableCOSDictionaryTest
+{
+    @Test
+    public void testUnmodifiableCOSDictionary()
+    {
+        COSDictionary unmodifiableCOSDictionary = new COSDictionary().asUnmodifiableDictionary();
+        try
+        {
+            unmodifiableCOSDictionary.clear();
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.removeItem(COSName.A);
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.addAll(new COSDictionary());
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.mergeInto(new COSDictionary());
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.setFlag(COSName.A, 0, true);
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.setNeedToBeUpdated(true);
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+    }
+
+    @Test
+    public void testSetItem()
+    {
+        COSDictionary unmodifiableCOSDictionary = new COSDictionary().asUnmodifiableDictionary();
+        try
+        {
+            unmodifiableCOSDictionary.setItem(COSName.A, COSName.A);
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.setItem(COSName.A,
+                    Encoding.getInstance(COSName.STANDARD_ENCODING));
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.setItem("A", COSName.A);
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+        try
+        {
+            unmodifiableCOSDictionary.setItem("A", Encoding.getInstance(COSName.STANDARD_ENCODING));
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+    }
+
+    @Test
+    public void testSetBoolean()
+    {
+        COSDictionary unmodifiableCOSDictionary = new COSDictionary().asUnmodifiableDictionary();
+        try
+        {
+            unmodifiableCOSDictionary.setBoolean(COSName.A, true);
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.setBoolean("A", true);
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+    }
+
+    @Test
+    public void testSetName()
+    {
+        COSDictionary unmodifiableCOSDictionary = new COSDictionary().asUnmodifiableDictionary();
+        try
+        {
+            unmodifiableCOSDictionary.setName(COSName.A, "A");
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.setName("A", "A");
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+    }
+
+    @Test
+    public void testSetDate()
+    {
+        COSDictionary unmodifiableCOSDictionary = new COSDictionary().asUnmodifiableDictionary();
+        try
+        {
+            unmodifiableCOSDictionary.setDate(COSName.A, Calendar.getInstance());
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.setDate("A", Calendar.getInstance());
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+    }
+
+    @Test
+    public void testSetEmbeddedDate()
+    {
+        COSDictionary unmodifiableCOSDictionary = new COSDictionary().asUnmodifiableDictionary();
+        try
+        {
+            unmodifiableCOSDictionary.setEmbeddedDate("Embedded", COSName.A,
+                    Calendar.getInstance());
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.setEmbeddedDate("Embedded", "A", Calendar.getInstance());
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+    }
+
+    @Test
+    public void testSetString()
+    {
+        COSDictionary unmodifiableCOSDictionary = new COSDictionary().asUnmodifiableDictionary();
+        try
+        {
+            unmodifiableCOSDictionary.setString(COSName.A, "A");
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.setString("A", "A");
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+    }
+
+    @Test
+    public void testSetEmbeddedString()
+    {
+        COSDictionary unmodifiableCOSDictionary = new COSDictionary().asUnmodifiableDictionary();
+        try
+        {
+            unmodifiableCOSDictionary.setEmbeddedString("Embedded", COSName.A, "A");
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.setEmbeddedString("Embedded", "A", "A");
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+    }
+
+    @Test
+    public void testSetInt()
+    {
+        COSDictionary unmodifiableCOSDictionary = new COSDictionary().asUnmodifiableDictionary();
+        try
+        {
+            unmodifiableCOSDictionary.setInt(COSName.A, 0);
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.setInt("A", 0);
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+    }
+
+    @Test
+    public void testSetEmbeddedInt()
+    {
+        COSDictionary unmodifiableCOSDictionary = new COSDictionary().asUnmodifiableDictionary();
+        try
+        {
+            unmodifiableCOSDictionary.setEmbeddedInt("Embedded", COSName.A, 0);
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.setEmbeddedInt("Embedded", "A", 0);
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+    }
+
+    @Test
+    public void testSetLong()
+    {
+        COSDictionary unmodifiableCOSDictionary = new COSDictionary().asUnmodifiableDictionary();
+        try
+        {
+            unmodifiableCOSDictionary.setLong(COSName.A, 0);
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.setLong("A", 0);
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+    }
+
+    @Test
+    public void testSetFloat()
+    {
+        COSDictionary unmodifiableCOSDictionary = new COSDictionary().asUnmodifiableDictionary();
+        try
+        {
+            unmodifiableCOSDictionary.setFloat(COSName.A, 0);
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+
+        try
+        {
+            unmodifiableCOSDictionary.setFloat("A", 0);
+            fail("An UnsupportedOperationException should have been thrown");
+        }
+        catch (UnsupportedOperationException exception)
+        {
+            // nothing to do
+        }
+    }
+}
\ No newline at end of file

Propchange: pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/io/UnmodifiableCOSDictionaryTest.java
------------------------------------------------------------------------------
    svn:eol-style = native