/* ==================================================================== 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.xssf.usermodel; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import java.util.Locale; import org.apache.poi.ss.usermodel.CellType; import org.apache.poi.ss.util.CellAddress; import org.apache.poi.ss.util.CellRangeAddress; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCell; class TestXSSFSheetShiftRowsAndColumns { private static final File resultDir = new File("build/custom-reports-test"); private static final int numRows = 4; private static final int numCols = 4; private static final int INSERT_ROW = 1; private static final int INSERT_COLUMN = 1; private static final int FIRST_MERGE_ROW = INSERT_ROW+1; private static final int LAST_MERGE_ROW = numRows-1; private static final int FIRST_MERGE_COL = INSERT_COLUMN+1; private static final int LAST_MERGE_COL = numCols-1; private XSSFWorkbook workbook = null; private XSSFSheet sheet = null; private String fileName = null; public TestXSSFSheetShiftRowsAndColumns() { assertTrue(resultDir.exists() || resultDir.mkdirs(), "Failed to create directory " + resultDir); } /** * This creates a workbook with one worksheet. It then puts data in rows 0 to numRows-1 and colulmns * 0 to numCols-1. */ @BeforeEach void setup() throws IOException { final String procName = "TestXSSFSheetShiftRowsAndColumns.setup"; fileName = procName+".xlsx"; workbook = new XSSFWorkbook(); sheet = workbook.createSheet(); for (int nRow = 0; nRow < numRows; ++nRow) { final XSSFRow row = sheet.createRow(nRow); for (int nCol = 0; nCol < numCols; ++nCol) { final XSSFCell cell = row.createCell(nCol); cell.setCellType(CellType.STRING); cell.setCellValue(String.format(Locale.US, "Row %d col %d", nRow, nCol)); } } /* * Add a merge area */ final CellRangeAddress range = new CellRangeAddress(FIRST_MERGE_ROW,LAST_MERGE_ROW,FIRST_MERGE_COL,LAST_MERGE_COL); sheet.addMergedRegion(range); writeFile(procName); } /** * This method writes the workbook to resultDir/fileName. */ @AfterEach void cleanup() throws IOException { final String procName = "TestXSSFSheetRemoveTable.cleanup"; if (workbook == null) { return; } if(fileName == null) { return; } writeFile(procName); workbook.close(); } private void writeFile(String procName) throws IOException { final File file = new File(resultDir,fileName); try (OutputStream fileOut = new FileOutputStream(file)) { workbook.write(fileOut); } } /** * Apply no shift. The purpose of this is to test {@code testCellAddresses} and {@code testMergeRegion}. */ @Test void testNoShift() { final String procName = "testNoShift"; fileName = procName+".xlsx"; testCellAddresses(procName,0,0); testMergeRegion(procName,0,0); } @Test void testShiftOneRowAndTestAddresses() { final String procName = "testShiftOneRowAndTestAddresses"; fileName = procName+".xlsx"; final int nRowsToShift = 1; sheet.shiftRows(INSERT_ROW, numRows-1, nRowsToShift); testCellAddresses(procName,nRowsToShift,0); } @Test void testShiftOneRowAndTestMergeRegion() { final String procName = "testShiftOneRowAndTestMergeRegion"; fileName = procName+".xlsx"; final int nRowsToShift = 1; sheet.shiftRows(INSERT_ROW, numRows-1, nRowsToShift); testMergeRegion(procName,nRowsToShift,0); } @Test void testShiftOneColumnAndTestAddresses() { final String procName = "testShiftOneColumnAndTestAddresses"; fileName = procName+".xlsx"; final int nShift = 1; sheet.shiftColumns(INSERT_COLUMN, numCols-1, nShift); testCellAddresses(procName,0,nShift); } @Test void testShiftOneColumnAndTestMergeRegion() { final String procName = "testShiftOneColumnAndTestMergeRegion"; fileName = procName+".xlsx"; final int nShift = 1; sheet.shiftColumns(INSERT_COLUMN, numCols-1, nShift); testMergeRegion(procName,0, nShift); } /** * Verify that the cell addresses are consistent */ private void testCellAddresses(String procName,int nRowsToShift,int nColsToShift) { final int nNumRows = nRowsToShift+ numCols; final int nNumCols = nColsToShift+ numCols; for(int nRow = 0;nRow