You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FOPGVTFontTestCase.java 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. /* $Id$ */
  18. package org.apache.fop.svg.font;
  19. import java.text.StringCharacterIterator;
  20. import org.junit.Before;
  21. import org.junit.Test;
  22. import static org.junit.Assert.assertEquals;
  23. import static org.mockito.Matchers.eq;
  24. import static org.mockito.Mockito.mock;
  25. import static org.mockito.Mockito.when;
  26. import org.apache.fop.fonts.Font;
  27. import org.apache.fop.svg.font.FOPGVTFont;
  28. public class FOPGVTFontTestCase {
  29. private FOPGVTFont font;
  30. @Before
  31. public void createFont() {
  32. Font f = mock(Font.class);
  33. when(f.hasChar(eq((char) 0))).thenReturn(false);
  34. when(f.hasChar(eq((char) 1))).thenReturn(true);
  35. font = new FOPGVTFont(f, null);
  36. }
  37. @Test
  38. public void testCanDisplayUpTo() {
  39. char[] text = new char[] {1, 1, 1};
  40. testCanDisplayUpToVariants(text, -1, 0, 3);
  41. testCanDisplayUpToVariants(text, -1, 1, 3);
  42. text = new char[] {1, 1, 0, 1};
  43. testCanDisplayUpToVariants(text, 2, 0, 4);
  44. testCanDisplayUpToVariants(text, 2, 1, 4);
  45. testCanDisplayUpToVariants(text, 2, 2, 4);
  46. testCanDisplayUpToVariants(text, -1, 3, 4);
  47. testCanDisplayUpToVariants(text, -1, 1, 2);
  48. }
  49. @Test
  50. public void testCanDisplayUpToString() {
  51. assertEquals(-1, font.canDisplayUpTo(new String(new char[] {1, 1, 1})));
  52. assertEquals(0, font.canDisplayUpTo(new String(new char[] {0, 1, 1})));
  53. assertEquals(1, font.canDisplayUpTo(new String(new char[] {1, 0, 1})));
  54. assertEquals(2, font.canDisplayUpTo(new String(new char[] {1, 1, 0})));
  55. }
  56. private void testCanDisplayUpToVariants(char[] text, int expected, int start, int limit) {
  57. assertEquals(expected, font.canDisplayUpTo(text, start, limit));
  58. assertEquals(expected, font.canDisplayUpTo(new StringCharacterIterator(new String(text)), start, limit));
  59. }
  60. }