aboutsummaryrefslogtreecommitdiffstats
path: root/poi-scratchpad/src/test/java/org/apache/poi/hslf/model/TestSheet.java
blob: b640b4f48df0963be08ae5d9ad6f2dbb033490ce (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* ====================================================================
   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.model;

import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertTrue;

import java.util.List;

import org.apache.poi.POIDataSamples;
import org.apache.poi.hslf.exceptions.EncryptedPowerPointFileException;
import org.apache.poi.hslf.record.ColorSchemeAtom;
import org.apache.poi.hslf.record.PPDrawing;
import org.apache.poi.hslf.usermodel.*;
import org.junit.jupiter.api.Test;

/**
 * Test common functionality of the {@code Sheet} object.
 * For each ppt in the test directory check that all sheets are properly initialized
 */
public final class TestSheet {
    private static final POIDataSamples _slTests = POIDataSamples.getSlideShowInstance();

    /**
     * For each ppt in the test directory check that all sheets are properly initialized
     */
    @Test
    void testSheet() throws Exception {
        String[] tests = {"SampleShow.ppt", "backgrounds.ppt", "text_shapes.ppt", "pictures.ppt"};
        for (String file : tests) {
            try {
                HSLFSlideShow ppt = new HSLFSlideShow(_slTests.openResourceAsStream(file));
                doSlideShow(ppt);
            } catch (EncryptedPowerPointFileException e){
                //skip encrypted ppt
            }
        }
    }

    private void doSlideShow(HSLFSlideShow ppt) {
        for (HSLFSlide slide : ppt.getSlides()) {
            verify(slide);

            HSLFNotes notes = slide.getNotes();
            if(notes != null) verify(notes);

            HSLFMasterSheet master = slide.getMasterSheet();
            assertNotNull(master);
            verify(master);
        }
    }

    private void verify(HSLFSheet sheet){
        assertNotNull(sheet.getSlideShow());

        ColorSchemeAtom colorscheme = sheet.getColorScheme();
        assertNotNull(colorscheme);

        PPDrawing ppdrawing = sheet.getPPDrawing();
        assertNotNull(ppdrawing);

        HSLFBackground background = sheet.getBackground();
        assertNotNull(background);

        assertTrue(sheet._getSheetNumber() != 0);
        assertTrue(sheet._getSheetRefId() != 0);

        List<List<HSLFTextParagraph>> txt = sheet.getTextParagraphs();
        // assertTrue("no text runs", txt != null && !txt.isEmpty());
        // backgrounds.ppt has no texts
        for (List<HSLFTextParagraph> t : txt) {
            for (HSLFTextParagraph tp : t) {
                assertNotNull(tp.getSheet());
            }
        }

        List<HSLFShape> shape = sheet.getShapes();
        assertTrue(shape != null && !shape.isEmpty(), "no shapes");
        for (HSLFShape s : shape) {
            assertNotNull(s.getSpContainer());
            assertNotNull(s.getSheet());
            assertNotNull(s.getShapeName());
            assertNotNull(s.getAnchor());
        }
    }
}