TestHSSFComment.java

/* ====================================================================
   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.hssf.usermodel;

import static org.apache.poi.poifs.storage.RawDataUtil.decompress;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;

import java.io.IOException;

import org.apache.poi.ddf.EscherContainerRecord;
import org.apache.poi.ddf.EscherSpRecord;
import org.apache.poi.hssf.HSSFITestDataProvider;
import org.apache.poi.hssf.HSSFTestDataSamples;
import org.apache.poi.hssf.record.CommonObjectDataSubRecord;
import org.apache.poi.hssf.record.EscherAggregate;
import org.apache.poi.hssf.record.NoteRecord;
import org.apache.poi.hssf.record.ObjRecord;
import org.apache.poi.hssf.record.TextObjectRecord;
import org.apache.poi.ss.usermodel.BaseTestCellComment;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.ClientAnchor;
import org.apache.poi.ss.usermodel.Comment;
import org.apache.poi.ss.usermodel.CreationHelper;
import org.apache.poi.ss.usermodel.Drawing;
import org.apache.poi.ss.usermodel.RichTextString;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.junit.jupiter.api.Test;

/**
 * Tests TestHSSFCellComment.
 */
final class TestHSSFComment extends BaseTestCellComment {

    public TestHSSFComment() {
        super(HSSFITestDataProvider.instance);
    }

    @Test
    void defaultShapeType() {
        HSSFComment comment = new HSSFComment(null, new HSSFClientAnchor());
        assertEquals(HSSFSimpleShape.OBJECT_TYPE_COMMENT, comment.getShapeType());
    }

    /**
     *  HSSFCell#findCellComment should NOT rely on the order of records
     * when matching cells and their cell comments. The correct algorithm is to map
     */
    @Test
    void bug47924() throws IOException {
        HSSFWorkbook wb = HSSFTestDataSamples.openSampleWorkbook("47924.xls");
        HSSFSheet sheet = wb.getSheetAt(0);
        HSSFCell cell;
        HSSFComment comment;

        cell = sheet.getRow(0).getCell(0);
        comment = cell.getCellComment();
        assertEquals("a1", comment.getString().getString());

        cell = sheet.getRow(1).getCell(0);
        comment = cell.getCellComment();
        assertEquals("a2", comment.getString().getString());

        cell = sheet.getRow(2).getCell(0);
        comment = cell.getCellComment();
        assertEquals("a3", comment.getString().getString());

        cell = sheet.getRow(2).getCell(2);
        comment = cell.getCellComment();
        assertEquals("c3", comment.getString().getString());

        cell = sheet.getRow(4).getCell(1);
        comment = cell.getCellComment();
        assertEquals("b5", comment.getString().getString());

        cell = sheet.getRow(5).getCell(2);
        comment = cell.getCellComment();
        assertEquals("c6", comment.getString().getString());

        wb.close();
    }

    @Test
    void testBug56380InsertComments() throws Exception {
        HSSFWorkbook workbook = new HSSFWorkbook();
        Sheet sheet = workbook.createSheet();
        Drawing<?> drawing = sheet.createDrawingPatriarch();
        int noOfRows = 1025;
        String comment = "c";

        for(int i = 0; i < noOfRows; i++) {
            Row row = sheet.createRow(i);
            Cell cell = row.createCell(0);
            insertComment(drawing, cell, comment + i);
        }

        // assert that the comments are created properly before writing
        checkComments(sheet, noOfRows, comment);

        // save and recreate the workbook from the saved file
        HSSFWorkbook workbookBack = HSSFTestDataSamples.writeOutAndReadBack(workbook);
        sheet = workbookBack.getSheetAt(0);

        // assert that the comments are created properly after reading back in
        checkComments(sheet, noOfRows, comment);

        workbook.close();
        workbookBack.close();
    }

    @Test
    void testBug56380InsertTooManyComments() throws Exception {
        try (HSSFWorkbook workbook = new HSSFWorkbook()) {
            Sheet sheet = workbook.createSheet();
            Drawing<?> drawing = sheet.createDrawingPatriarch();
            String comment = "c";

            for (int rowNum = 0; rowNum < 258; rowNum++) {
                sheet.createRow(rowNum);
            }

            // should still work, for some reason DrawingManager2.allocateShapeId() skips the first 1024...
            for (int count = 1025; count < 65535; count++) {
                int rowNum = count / 255;
                int cellNum = count % 255;
                Cell cell = sheet.getRow(rowNum).createCell(cellNum);
                try {
                    Comment commentObj = insertComment(drawing, cell, comment + cellNum);

                    assertEquals(count, ((HSSFComment) commentObj).getNoteRecord().getShapeId());
                } catch (IllegalArgumentException e) {
                    throw new IllegalArgumentException("While adding shape number " + count, e);
                }
            }

            // this should now fail to insert
            Row row = sheet.createRow(257);
            Cell cell = row.createCell(0);
            insertComment(drawing, cell, comment + 0);
        }
    }

    private void checkComments(Sheet sheet, int noOfRows, String comment) {
        for(int i = 0; i < noOfRows; i++) {
            assertNotNull(sheet.getRow(i));
            assertNotNull(sheet.getRow(i).getCell(0));
            assertNotNull(sheet.getRow(i).getCell(0).getCellComment(), "Did not get a Cell Comment for row " + i);
            assertNotNull(sheet.getRow(i).getCell(0).getCellComment().getString());
            assertEquals(comment + i, sheet.getRow(i).getCell(0).getCellComment().getString().getString());
        }
    }

    private Comment insertComment(Drawing<?> drawing, Cell cell, String message) {
        CreationHelper factory = cell.getSheet().getWorkbook().getCreationHelper();

        ClientAnchor anchor = factory.createClientAnchor();
        anchor.setCol1(cell.getColumnIndex());
        anchor.setCol2(cell.getColumnIndex() + 1);
        anchor.setRow1(cell.getRowIndex());
        anchor.setRow2(cell.getRowIndex() + 1);
        anchor.setDx1(100);
        anchor.setDx2(100);
        anchor.setDy1(100);
        anchor.setDy2(100);

        Comment comment = drawing.createCellComment(anchor);

        RichTextString str = factory.createRichTextString(message);
        comment.setString(str);
        comment.setAuthor("fanfy");
        cell.setCellComment(comment);

        return comment;
    }

    @Test
    void resultEqualsToNonExistingAbstractShape() throws IOException {
        HSSFWorkbook wb = new HSSFWorkbook();
        HSSFSheet sh = wb.createSheet();
        HSSFPatriarch patriarch = sh.createDrawingPatriarch();

        HSSFComment comment = patriarch.createCellComment(new HSSFClientAnchor());
        HSSFRow row = sh.createRow(0);
        HSSFCell cell = row.createCell(0);
        cell.setCellComment(comment);

        assertEquals(5, comment.getEscherContainer().getChildCount());

        //sp record
        byte[] expected = decompress("H4sIAAAAAAAAAFvEw/WBg4GBgZEFSHAxMAAA9gX7nhAAAAA=");
        byte[] actual = comment.getEscherContainer().getChild(0).serialize();

        assertEquals(expected.length, actual.length);
        assertArrayEquals(expected, actual);

        expected = decompress("H4sIAAAAAAAAAGNgEPggxIANAABK4+laGgAAAA==");
        actual = comment.getEscherContainer().getChild(2).serialize();

        assertEquals(expected.length, actual.length);
        assertArrayEquals(expected, actual);

        expected = decompress("H4sIAAAAAAAAAGNgEPzAAAQACl6c5QgAAAA=");
        actual = comment.getEscherContainer().getChild(3).serialize();

        assertEquals(expected.length, actual.length);
        assertArrayEquals(expected, actual);

        expected = decompress("H4sIAAAAAAAAAGNg4P3AAAQA6pyIkQgAAAA=");
        actual = comment.getEscherContainer().getChild(4).serialize();

        assertEquals(expected.length, actual.length);
        assertArrayEquals(expected, actual);

        ObjRecord obj = comment.getObjRecord();

        expected = decompress("H4sIAAAAAAAAAItlMGEQZRBikGRgZBF0YEACvAxiDLgBAJZsuoU4AAAA");
        actual = obj.serialize();

        assertEquals(expected.length, actual.length);
        //assertArrayEquals(expected, actual);

        TextObjectRecord tor = comment.getTextObjectRecord();

        expected = decompress("H4sIAAAAAAAAANvGKMQgxMSABgBGi8T+FgAAAA==");
        actual = tor.serialize();

        assertEquals(expected.length, actual.length);
        assertArrayEquals(expected, actual);

        NoteRecord note = comment.getNoteRecord();

        expected = decompress("H4sIAAAAAAAAAJNh4GGAAEYWEAkAS0KXuRAAAAA=");
        actual = note.serialize();

        assertEquals(expected.length, actual.length);
        assertArrayEquals(expected, actual);

        wb.close();
    }

    @Test
    void addToExistingFile() throws IOException {
        try (HSSFWorkbook wb = new HSSFWorkbook()) {
            HSSFSheet sh = wb.createSheet();
            HSSFPatriarch patriarch = sh.createDrawingPatriarch();
            int idx = wb.addPicture(new byte[]{1, 2, 3}, Workbook.PICTURE_TYPE_PNG);

            HSSFComment comment = patriarch.createCellComment(new HSSFClientAnchor());
            comment.setColumn(5);
            comment.setString(new HSSFRichTextString("comment1"));
            comment = patriarch.createCellComment(new HSSFClientAnchor(0, 0, 100, 100, (short) 0, 0, (short) 10, 10));
            comment.setRow(5);
            comment.setString(new HSSFRichTextString("comment2"));
            comment.setBackgroundImage(idx);
            assertEquals(idx, comment.getBackgroundImageId());

            assertEquals(2, patriarch.getChildren().size());

            try (HSSFWorkbook wbBack = HSSFTestDataSamples.writeOutAndReadBack(wb)) {
                sh = wbBack.getSheetAt(0);
                patriarch = sh.getDrawingPatriarch();

                comment = (HSSFComment) patriarch.getChildren().get(1);
                assertEquals(idx, comment.getBackgroundImageId());
                comment.resetBackgroundImage();
                assertEquals(0, comment.getBackgroundImageId());

                assertEquals(2, patriarch.getChildren().size());
                comment = patriarch.createCellComment(new HSSFClientAnchor());
                comment.setString(new HSSFRichTextString("comment3"));

                assertEquals(3, patriarch.getChildren().size());
                try (HSSFWorkbook wbBack2 = HSSFTestDataSamples.writeOutAndReadBack(wbBack)) {
                    sh = wbBack2.getSheetAt(0);
                    patriarch = sh.getDrawingPatriarch();
                    comment = (HSSFComment) patriarch.getChildren().get(1);
                    assertEquals(0, comment.getBackgroundImageId());
                    assertEquals(3, patriarch.getChildren().size());
                    assertEquals("comment1", ((HSSFComment) patriarch.getChildren().get(0)).getString().getString());
                    assertEquals("comment2", ((HSSFComment) patriarch.getChildren().get(1)).getString().getString());
                    assertEquals("comment3", ((HSSFComment) patriarch.getChildren().get(2)).getString().getString());
                }
            }
        }
    }

    @Test
    void setGetProperties() throws IOException {
        try (HSSFWorkbook wb = new HSSFWorkbook()) {
            HSSFSheet sh = wb.createSheet();
            HSSFPatriarch patriarch = sh.createDrawingPatriarch();

            HSSFComment comment = patriarch.createCellComment(new HSSFClientAnchor());
            comment.setString(new HSSFRichTextString("comment1"));
            assertEquals("comment1", comment.getString().getString());

            comment.setAuthor("poi");
            assertEquals("poi", comment.getAuthor());

            comment.setColumn(3);
            assertEquals(3, comment.getColumn());

            comment.setRow(4);
            assertEquals(4, comment.getRow());

            comment.setVisible(false);
            assertFalse(comment.isVisible());

            try (HSSFWorkbook wbBack = HSSFTestDataSamples.writeOutAndReadBack(wb)) {
                sh = wbBack.getSheetAt(0);
                patriarch = sh.getDrawingPatriarch();

                comment = (HSSFComment) patriarch.getChildren().get(0);

                assertEquals("comment1", comment.getString().getString());
                assertEquals("poi", comment.getAuthor());
                assertEquals(3, comment.getColumn());
                assertEquals(4, comment.getRow());
                assertFalse(comment.isVisible());

                comment.setString(new HSSFRichTextString("comment12"));
                comment.setAuthor("poi2");
                comment.setColumn(32);
                comment.setRow(42);
                comment.setVisible(true);

                try (HSSFWorkbook wbBack2 = HSSFTestDataSamples.writeOutAndReadBack(wbBack)) {
                    sh = wbBack2.getSheetAt(0);
                    patriarch = sh.getDrawingPatriarch();
                    comment = (HSSFComment) patriarch.getChildren().get(0);

                    assertEquals("comment12", comment.getString().getString());
                    assertEquals("poi2", comment.getAuthor());
                    assertEquals(32, comment.getColumn());
                    assertEquals(42, comment.getRow());
                    assertTrue(comment.isVisible());
                }
            }
        }
    }

    @Test
    void existingFileWithComment() throws IOException {
        try (HSSFWorkbook wb = HSSFTestDataSamples.openSampleWorkbook("drawings.xls")) {
            HSSFSheet sheet = wb.getSheet("comments");
            assertNotNull(sheet);
            HSSFPatriarch drawing = sheet.getDrawingPatriarch();
            assertEquals(1, drawing.getChildren().size());
            HSSFComment comment = (HSSFComment) drawing.getChildren().get(0);
            assertEquals("evgeniy", comment.getAuthor());
            assertEquals("evgeniy:\npoi test", comment.getString().getString());
            assertEquals(1, comment.getColumn());
            assertEquals(2, comment.getRow());
        }
    }

    @Test
    void findComments() throws IOException{
        try (HSSFWorkbook wb = new HSSFWorkbook()) {
            HSSFSheet sh = wb.createSheet();
            HSSFPatriarch patriarch = sh.createDrawingPatriarch();

            HSSFComment comment = patriarch.createCellComment(new HSSFClientAnchor());
            HSSFRow row = sh.createRow(5);
            HSSFCell cell = row.createCell(4);
            cell.setCellComment(comment);

            assertNotNull(sh.findCellComment(5, 4));
            assertNull(sh.findCellComment(5, 5));

            try (HSSFWorkbook wbBack = HSSFTestDataSamples.writeOutAndReadBack(wb)) {
                sh = wbBack.getSheetAt(0);

                assertNotNull(sh.findCellComment(5, 4));
                assertNull(sh.findCellComment(5, 5));
            }
        }
    }

    @Test
    void initState() throws IOException{
        try (HSSFWorkbook wb = new HSSFWorkbook()) {
            HSSFSheet sh = wb.createSheet();
            HSSFPatriarch patriarch = sh.createDrawingPatriarch();

            EscherAggregate agg = HSSFTestHelper.getEscherAggregate(patriarch);
            assertEquals(0, agg.getTailRecords().size());

            HSSFComment comment = patriarch.createCellComment(new HSSFClientAnchor());
            assertEquals(1, agg.getTailRecords().size());

            HSSFSimpleShape shape = patriarch.createSimpleShape(new HSSFClientAnchor());
            assertNotNull(shape);

            assertEquals(10, comment.getOptRecord().getEscherProperties().size());
        }
    }

    @Test
    void shapeId() throws IOException{
        try (HSSFWorkbook wb = new HSSFWorkbook()) {
            HSSFSheet sh = wb.createSheet();
            HSSFPatriarch patriarch = sh.createDrawingPatriarch();

            HSSFComment comment = patriarch.createCellComment(new HSSFClientAnchor());

            comment.setShapeId(2024);

            assertEquals(2024, comment.getShapeId());

            CommonObjectDataSubRecord cod = (CommonObjectDataSubRecord) comment.getObjRecord().getSubRecords().get(0);
            assertEquals(2024, cod.getObjectId());
            EscherSpRecord spRecord = (EscherSpRecord) comment.getEscherContainer().getChild(0);
            assertEquals(2024, spRecord.getShapeId(), 2024);
            assertEquals(2024, comment.getShapeId(), 2024);
            assertEquals(2024, comment.getNoteRecord().getShapeId());
        }
    }

    @Test
    void getEmptyShape() throws IOException {
        HSSFComment shape = new HSSFComment(new EscherContainerRecord(), null, null, null);
        assertThrows(IllegalStateException.class,
                () -> shape.setShapeId(1));
    }
}