teststyletextpropatom.java

来自「EXCEL read and write」· Java 代码 · 共 773 行 · 第 1/3 页

JAVA
773
字号
/* ====================================================================   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.poi.hslf.record;import org.apache.poi.hslf.HSLFSlideShow;import org.apache.poi.hslf.model.textproperties.CharFlagsTextProp;import org.apache.poi.hslf.model.textproperties.TextProp;import org.apache.poi.hslf.model.textproperties.TextPropCollection;import org.apache.poi.hslf.record.StyleTextPropAtom.*;import org.apache.poi.hslf.usermodel.SlideShow;import org.apache.poi.util.HexDump;import junit.framework.TestCase;import java.io.ByteArrayOutputStream;import java.util.LinkedList;import java.util.Arrays;/** * Tests that StyleTextPropAtom works properly * * @author Nick Burch (nick at torchbox dot com) */public class TestStyleTextPropAtom extends TestCase {    /** From a real file: a paragraph with 4 different styles */    private byte[] data_a = new byte[] {      0, 0, 0xA1-256, 0x0F, 0x2A, 0, 0, 0,      0x36, 00, 00, 00, // paragraph is 54 long       00, 00,           // (paragraph reserved field)      00, 00, 00, 00,   // it doesn't have any styles      0x15, 00, 00, 00, // first char run is 21 long      00, 00, 00, 00,   // it doesn't have any styles      0x11, 00, 00, 00, // second char run is 17 long      00, 00, 0x04, 00, // font.color only      00, 00, 00, 0x05, // blue      0x10, 00, 00, 00, // third char run is 16 long      00, 00, 0x04, 00, // font.color only      0xFF-256, 0x33, 00, 0xFE-256 // red    };    private int data_a_text_len = 0x36-1;    /**     * From a real file: 4 paragraphs with text in 4 different styles:     * left aligned+bold (30)     * centre aligned+italic+blue (28)     * right aligned+red (25)     * left aligned+underlined+larger font size (96)     * left aligned+underlined+larger font size+red (1)     */    private byte[] data_b = new byte[] {        0, 0, 0xA1-256, 0x0F, 0x80-256, 0, 0, 0,        0x1E, 00, 00, 00,     // paragraph is 30 long        00, 00,               // paragraph reserved field        00, 0x18, 00, 00,     // mask is 0x1800        00, 00,               // left aligned        0x50, 00,             // line spacing 80        0x1C, 00, 00, 00,     // paragprah is 28 long        00, 00,               // paragraph reserved field        00, 0x10, 00, 00,     // mask is 0x1000        0x50, 00,             // line spacing 80        0x19, 00, 00, 00,     // paragraph is 25 long        00, 00,               // paragraph reserved field        00, 0x18, 00, 00,     // mask is 0x1800        02, 00,               // right aligned        0x50, 00,             // line spacing 80        0x61, 00, 00, 00,     // paragraph is 97 long        00, 00,               // paragraph reserved field        00, 0x18, 00, 00,     // mask is 0x1800        00, 00,               // left aligned        0x50, 00,             // line spacing 80        0x1E, 00, 00, 00,     // character run is 30 long        01, 00, 02, 00,       // mask is 0x020001        01, 00,               // char flags 0x0001 = bold        0x14, 00,             // font size 20        0x1C, 00, 00, 00,     // character run is 28 long        02, 00, 06, 00,       // mask is 0x060002        02, 00,               // char flags 0x0002 = italic        0x14, 00,             // font size 20        00, 00, 00, 05,       // colour blue        0x19, 00, 00, 00,     // character run is 25 long        00, 00, 06, 00,       // char flags 0x060000        0x14, 00,             // font size 20        0xFF-256, 0x33, 00, 0xFE-256, // colour red        0x60, 00, 00, 00,     // character run is 96 long        04, 00, 03, 00,       // mask is 0x030004        04, 00,               // char flags 0x0004 = underlined        01, 00,               // font index is 1        0x18, 00,             // font size 24        01, 00, 00, 00,       // character run is 1 long        04, 00, 07, 00,       // mask is 0x070004        04, 00,               // char flags 0x0004 = underlined        01, 00,               // font index is 1        0x18, 00,             // font size 24        0xFF-256, 0x33, 00, 0xFE-256 // colour red    };    private int data_b_text_len = 0xB3;    /**     * From a real file. Has a mask with more bits     *  set than it actually has data for. Shouldn't do,     *  but some real files do :(     */    private byte[] data_c = new byte[] {        0, 0, -95, 15, 62, 0, 0, 0,        123, 0, 0, 0, 0, 0, 48, 8,        10, 0, 1, 0, 0, 0, 0, 0,        1, 0, 2, 0, 1, 0, 0, 0,        0, 0, 48, 0, 10, 0, 1, 0,        0, 0, 0, 0, 2, 0, 123, 0,        0, 0, 0, 0, 3, 0, 1, 0,        28, 0, 1, 0, 0, 0, 0, 0,        3, 0, 1, 0, 24, 0    };    private int data_c_text_len = 123-1;    /**     * From a real file supplied for Bug 40143 by tales@great.ufc.br     */    private byte[] data_d = {        0x00, 0x00, 0xA1-256, 0x0F, 0x1E, 0x00, 0x00, 0x00, //header        (byte)0xA0, 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x08 , 0x00 , 0x00 ,        0x01 , 0x00, (byte)0xA0 , 0x00 , 0x00 , 0x00 , 0x01 , 0x00 , 0x63 , 0x00 ,        0x01 , 0x00, 0x01 , 0x00 , 0x00, 0x00 , 0x01 , 0x00 , 0x14 , 0x00    };    private int data_d_text_len = 0xA0-1;    public void testRecordType() throws Exception {        StyleTextPropAtom stpa = new StyleTextPropAtom(data_a,0,data_a.length);        StyleTextPropAtom stpb = new StyleTextPropAtom(data_b,0,data_b.length);        StyleTextPropAtom stpc = new StyleTextPropAtom(data_c,0,data_c.length);        assertEquals(4001l, stpa.getRecordType());        assertEquals(4001l, stpb.getRecordType());        assertEquals(4001l, stpc.getRecordType());    }    public void testCharacterStyleCounts() throws Exception {        StyleTextPropAtom stpa = new StyleTextPropAtom(data_a,0,data_a.length);        StyleTextPropAtom stpb = new StyleTextPropAtom(data_b,0,data_b.length);        // Set for the appropriate text sizes        stpa.setParentTextSize(data_a_text_len);        stpb.setParentTextSize(data_b_text_len);        // In case A, there is a single styling of the characters        assertEquals(3, stpa.getCharacterStyles().size());        // In case B, there are 5 different stylings        assertEquals(5, stpb.getCharacterStyles().size());    }    public void testParagraphStyleCounts() throws Exception {        StyleTextPropAtom stpa = new StyleTextPropAtom(data_a,0,data_a.length);        StyleTextPropAtom stpb = new StyleTextPropAtom(data_b,0,data_b.length);        // Set for the appropriate text sizes        stpa.setParentTextSize(data_a_text_len);        stpb.setParentTextSize(data_b_text_len);        // In case A, all has the same spacing and alignment        assertEquals(1, stpa.getParagraphStyles().size());        // In case B, all 4 sets have different alignments        assertEquals(4, stpb.getParagraphStyles().size());    }    public void testCharacterStyleLengths() throws Exception {        StyleTextPropAtom stpa = new StyleTextPropAtom(data_a,0,data_a.length);        StyleTextPropAtom stpb = new StyleTextPropAtom(data_b,0,data_b.length);        // Set for the appropriate text sizes        stpa.setParentTextSize(data_a_text_len);        stpb.setParentTextSize(data_b_text_len);        // 54 chars, 21 + 17 + 16        LinkedList a_ch_l = stpa.getCharacterStyles();        TextPropCollection a_ch_1 = (TextPropCollection)a_ch_l.get(0);        TextPropCollection a_ch_2 = (TextPropCollection)a_ch_l.get(1);        TextPropCollection a_ch_3 = (TextPropCollection)a_ch_l.get(2);        assertEquals(21, a_ch_1.getCharactersCovered());        assertEquals(17, a_ch_2.getCharactersCovered());        assertEquals(16, a_ch_3.getCharactersCovered());        // 179 chars, 30 + 28 + 25        LinkedList b_ch_l = stpb.getCharacterStyles();        TextPropCollection b_ch_1 = (TextPropCollection)b_ch_l.get(0);        TextPropCollection b_ch_2 = (TextPropCollection)b_ch_l.get(1);        TextPropCollection b_ch_3 = (TextPropCollection)b_ch_l.get(2);        TextPropCollection b_ch_4 = (TextPropCollection)b_ch_l.get(3);        assertEquals(30, b_ch_1.getCharactersCovered());        assertEquals(28, b_ch_2.getCharactersCovered());        assertEquals(25, b_ch_3.getCharactersCovered());        assertEquals(96, b_ch_4.getCharactersCovered());    }    public void testCharacterPropOrdering() throws Exception {        StyleTextPropAtom stpb = new StyleTextPropAtom(data_b,0,data_b.length);        stpb.setParentTextSize(data_b_text_len);        LinkedList b_ch_l = stpb.getCharacterStyles();        TextPropCollection b_ch_1 = (TextPropCollection)b_ch_l.get(0);        TextPropCollection b_ch_2 = (TextPropCollection)b_ch_l.get(1);        TextPropCollection b_ch_3 = (TextPropCollection)b_ch_l.get(2);        TextPropCollection b_ch_4 = (TextPropCollection)b_ch_l.get(3);        // In first set, we get a CharFlagsTextProp and a font.size        assertEquals(2,b_ch_1.getTextPropList().size());        TextProp tp_1_1 = (TextProp)b_ch_1.getTextPropList().get(0);        TextProp tp_1_2 = (TextProp)b_ch_1.getTextPropList().get(1);        assertEquals(true, tp_1_1 instanceof CharFlagsTextProp);        assertEquals(true, tp_1_2 instanceof TextProp);        assertEquals("font.size", tp_1_2.getName());        assertEquals(20, tp_1_2.getValue());        // In second set, we get a CharFlagsTextProp and a font.size and a font.color        assertEquals(3,b_ch_2.getTextPropList().size());        TextProp tp_2_1 = (TextProp)b_ch_2.getTextPropList().get(0);        TextProp tp_2_2 = (TextProp)b_ch_2.getTextPropList().get(1);        TextProp tp_2_3 = (TextProp)b_ch_2.getTextPropList().get(2);        assertEquals(true, tp_2_1 instanceof CharFlagsTextProp);        assertEquals(true, tp_2_2 instanceof TextProp);        assertEquals(true, tp_2_3 instanceof TextProp);        assertEquals("font.size", tp_2_2.getName());        assertEquals("font.color", tp_2_3.getName());        assertEquals(20, tp_2_2.getValue());        // In third set, it's just a font.size and a font.color        assertEquals(2,b_ch_3.getTextPropList().size());        TextProp tp_3_1 = (TextProp)b_ch_3.getTextPropList().get(0);        TextProp tp_3_2 = (TextProp)b_ch_3.getTextPropList().get(1);        assertEquals(true, tp_3_1 instanceof TextProp);        assertEquals(true, tp_3_2 instanceof TextProp);        assertEquals("font.size", tp_3_1.getName());        assertEquals("font.color", tp_3_2.getName());        assertEquals(20, tp_3_1.getValue());        // In fourth set, we get a CharFlagsTextProp and a font.index and a font.size        assertEquals(3,b_ch_4.getTextPropList().size());        TextProp tp_4_1 = (TextProp)b_ch_4.getTextPropList().get(0);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?