blob: 89ed2733d50dce29bb1b1491a4647d0ae1ef06a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
/*
* 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.fo.properties;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import org.apache.fop.apps.FOPException;
import org.apache.fop.apps.FOUserAgent;
import org.apache.fop.fo.Constants;
import org.apache.fop.fo.FONode;
import org.apache.fop.fo.FONodeMocks;
import org.apache.fop.fo.PropertyList;
import org.apache.fop.fo.expr.PropertyException;
import org.apache.fop.fo.flow.AbstractGraphics;
import org.apache.fop.fo.flow.ExternalGraphic;
import org.apache.fop.fo.flow.InstreamForeignObject;
/**
* Tests that the fox:alt-text property is correctly set on objects that support it.
*/
public class AltTextHolderTestCase {
private final String altText = "alternative text";
@Test
public void externalGraphicHasAltText() throws FOPException {
testAltTextGetter(new ExternalGraphic(mockFONode()));
}
@Test
public void instreamForeignObjectHasAltText() throws FOPException {
testAltTextGetter(new InstreamForeignObject(mockFONode()));
}
private FONode mockFONode() {
FONode mockFONode = FONodeMocks.mockFONode();
FOUserAgent mockFOUserAgent = mockFONode.getFOEventHandler().getUserAgent();
when(mockFOUserAgent.isAccessibilityEnabled()).thenReturn(true);
return mockFONode;
}
private void testAltTextGetter(AbstractGraphics g) throws FOPException {
g.bind(mockPropertyList());
assertEquals(altText, g.getAltText());
}
private PropertyList mockPropertyList() throws PropertyException {
PropertyList mockPropertyList = PropertyListMocks.mockPropertyList();
Property mockAltText = mock(Property.class);
when(mockAltText.getString()).thenReturn(altText);
when(mockPropertyList.get(Constants.PR_X_ALT_TEXT)).thenReturn(mockAltText);
return mockPropertyList;
}
}
|