Browse Source

Added Testcase from Bug #47872 (thanks to alex kiel) and fixed it in FontLoader

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@818424 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-1_0
Maximilian Berger 14 years ago
parent
commit
4e970b8a7d

+ 2
- 2
src/java/org/apache/fop/fonts/FontLoader.java View 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);
}

/**

+ 2
- 0
test/java/org/apache/fop/StandardTestSuite.java View 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));

+ 52
- 0
test/java/org/apache/fop/fonts/DejaVuLGCSerifTest.java View File

@@ -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());
}
}

Loading…
Cancel
Save