]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Added Testcase from Bug #47872 (thanks to alex kiel) and fixed it in FontLoader
authorMaximilian Berger <maxberger@apache.org>
Thu, 24 Sep 2009 10:09:55 +0000 (10:09 +0000)
committerMaximilian Berger <maxberger@apache.org>
Thu, 24 Sep 2009 10:09:55 +0000 (10:09 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@818424 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fonts/FontLoader.java
test/java/org/apache/fop/StandardTestSuite.java
test/java/org/apache/fop/fonts/DejaVuLGCSerifTest.java [new file with mode: 0644]

index aaca5b3fd9a0043db59dd8cc3af2926581567b06..93d4ae03f280217b9093bd8b1d526525027e8ebd 100644 (file)
@@ -87,8 +87,8 @@ public abstract class FontLoader {
      */
     public static CustomFont loadFont(File fontFile, String subFontName,
             boolean embedded, EncodingMode encodingMode, FontResolver resolver) throws IOException {
-        return loadFont(fontFile.getAbsolutePath(), subFontName,
-                embedded, encodingMode, true, resolver);
+        return loadFont(fontFile.toURI().toURL(), subFontName,
+                embedded, encodingMode, resolver);
     }
 
     /**
index b8bb541cde87f7ad101710c1c4098969a88874d4..250ddaad64a695c4d4d9644204204cc194b672b4 100644 (file)
@@ -22,6 +22,7 @@ package org.apache.fop;
 import junit.framework.Test;
 import junit.framework.TestSuite;
 
+import org.apache.fop.fonts.DejaVuLGCSerifTest;
 import org.apache.fop.fonts.TrueTypeAnsiTestCase;
 import org.apache.fop.image.loader.batik.ImageLoaderTestCase;
 import org.apache.fop.image.loader.batik.ImagePreloaderTestCase;
@@ -54,6 +55,7 @@ public class StandardTestSuite {
         suite.addTest(new TestSuite(PDFCMapTestCase.class));
         suite.addTest(new TestSuite(PDFsRGBSettingsTestCase.class));
         suite.addTest(new TestSuite(TrueTypeAnsiTestCase.class));
+        suite.addTest(new TestSuite(DejaVuLGCSerifTest.class));
         suite.addTest(RichTextFormatTestSuite.suite());
         suite.addTest(new TestSuite(ImageLoaderTestCase.class));
         suite.addTest(new TestSuite(ImagePreloaderTestCase.class));
diff --git a/test/java/org/apache/fop/fonts/DejaVuLGCSerifTest.java b/test/java/org/apache/fop/fonts/DejaVuLGCSerifTest.java
new file mode 100644 (file)
index 0000000..181fff4
--- /dev/null
@@ -0,0 +1,52 @@
+/*
+ * 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.
+ */
+
+/* $Id$ */
+
+package org.apache.fop.fonts;
+
+import java.io.File;
+
+import junit.framework.TestCase;
+
+/**
+ *
+ */
+public class DejaVuLGCSerifTest extends TestCase {
+
+    private FontResolver fontResolver = FontManager.createMinimalFontResolver();
+    private CustomFont font;
+
+    /**
+     * sets up the testcase by loading the DejaVu Font.
+     * 
+     * @throws Exception
+     *             if the test fails.
+     */
+    public void setUp() throws Exception {
+        File file = new File("test/resources/fonts/DejaVuLGCSerif.ttf");
+        font = FontLoader.loadFont(file, "", true, EncodingMode.AUTO,
+                fontResolver);
+    }
+
+    /**
+     * Simple test to see if font name was detected correctly.
+     */
+    public void testFontName() {
+        assertEquals("DejaVu", font.getFontName());
+    }
+}