mirror of https://github.com/apache/poi.git
Sonar fixes
JUnit5 test classes and methods should have default package visibility git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1885326 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9c358836b4
commit
834a7628d2
|
@ -58,7 +58,7 @@ import org.junit.jupiter.params.provider.ValueSource;
|
|||
/**
|
||||
* Test that the extractor factory plays nicely
|
||||
*/
|
||||
public class TestExtractorFactory {
|
||||
class TestExtractorFactory {
|
||||
|
||||
private static final POIDataSamples ssTests = POIDataSamples.getSpreadSheetInstance();
|
||||
private static final File xls = getFileAndCheck(ssTests, "SampleSS.xls");
|
||||
|
|
|
@ -40,7 +40,7 @@ import org.junit.jupiter.params.provider.CsvSource;
|
|||
* documents
|
||||
*/
|
||||
@SuppressWarnings("deprecation")
|
||||
public class TestDetectAsOOXML {
|
||||
class TestDetectAsOOXML {
|
||||
@Test
|
||||
void testOpensProperly() throws IOException, InvalidFormatException {
|
||||
try (InputStream is = openSampleFileStream("sample.xlsx");
|
||||
|
|
|
@ -35,7 +35,7 @@ import org.junit.jupiter.api.Test;
|
|||
/**
|
||||
* Class to test that we handle embeded bits in OOXML files properly
|
||||
*/
|
||||
public class TestEmbedded {
|
||||
class TestEmbedded {
|
||||
@Test
|
||||
void testExcel() throws Exception {
|
||||
POIXMLDocument doc = new XSSFWorkbook(
|
||||
|
|
|
@ -56,7 +56,7 @@ import static org.junit.jupiter.api.Assertions.assertNotNull;
|
|||
* Test to trigger code-execution of various parts so
|
||||
* that all required elements are inclueded in the ooxml-schema-lite package
|
||||
*/
|
||||
public class TestTriggerCoverage {
|
||||
class TestTriggerCoverage {
|
||||
private static final Set<String> FAILING = new HashSet<>();
|
||||
static {
|
||||
FAILING.add("stress025.docx");
|
||||
|
|
|
@ -24,7 +24,7 @@ import java.net.URI;
|
|||
import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestPackagingURIHelper {
|
||||
class TestPackagingURIHelper {
|
||||
|
||||
/**
|
||||
* Test relativizePartName() method.
|
||||
|
|
|
@ -36,7 +36,7 @@ import org.apache.poi.util.POILogger;
|
|||
import org.junit.jupiter.api.Test;
|
||||
|
||||
|
||||
public class TestRelationships {
|
||||
class TestRelationships {
|
||||
private static final String HYPERLINK_REL_TYPE =
|
||||
"http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink";
|
||||
private static final String COMMENTS_REL_TYPE =
|
||||
|
|
|
@ -44,7 +44,7 @@ import org.junit.jupiter.api.Test;
|
|||
* M1.11 : A package implementer shall neither create nor recognize a part with
|
||||
* a part name derived from another part name by appending segments to it.
|
||||
*/
|
||||
public class TestOPCCompliancePackageModel {
|
||||
class TestOPCCompliancePackageModel {
|
||||
|
||||
private static File TESTFILE;
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ import org.apache.poi.openxml4j.opc.internal.PackagePropertiesPart;
|
|||
import org.apache.poi.openxml4j.opc.internal.PartMarshaller;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestZipPackagePropertiesMarshaller {
|
||||
class TestZipPackagePropertiesMarshaller {
|
||||
private final PartMarshaller marshaller = new ZipPackagePropertiesMarshaller();
|
||||
|
||||
private boolean marshall() throws OpenXML4JException {
|
||||
|
|
|
@ -27,7 +27,7 @@ import java.util.Enumeration;
|
|||
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
public class TestZipSecureFile {
|
||||
class TestZipSecureFile {
|
||||
@Test
|
||||
void testThresholdInputStream() throws Exception {
|
||||
// This fails in Java 10 because our reflection injection of the ThresholdInputStream causes a
|
||||
|
|
|
@ -25,7 +25,7 @@ import org.apache.poi.poifs.crypt.HashAlgorithm;
|
|||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestSignatureConfig {
|
||||
class TestSignatureConfig {
|
||||
|
||||
@Test
|
||||
@Disabled("failing in automated builds, due to issues loading security classes")
|
||||
|
|
|
@ -161,7 +161,7 @@ import org.w3.x2000.x09.xmldsig.ReferenceType;
|
|||
import org.w3.x2000.x09.xmldsig.SignatureDocument;
|
||||
import org.w3c.dom.Document;
|
||||
|
||||
public class TestSignatureInfo {
|
||||
class TestSignatureInfo {
|
||||
private static final POILogger LOG = POILogFactory.getLogger(TestSignatureInfo.class);
|
||||
private static final POIDataSamples testdata = POIDataSamples.getXmlDSignInstance();
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ import org.junit.jupiter.params.ParameterizedTest;
|
|||
import org.junit.jupiter.params.provider.Arguments;
|
||||
import org.junit.jupiter.params.provider.MethodSource;
|
||||
|
||||
public class TestAgileEncryptionParameters {
|
||||
class TestAgileEncryptionParameters {
|
||||
|
||||
static byte[] testData;
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ import org.apache.poi.poifs.filesystem.POIFSFileSystem;
|
|||
import org.apache.poi.util.IOUtils;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestDecryptor {
|
||||
class TestDecryptor {
|
||||
private static final POIDataSamples samples = POIDataSamples.getPOIFSInstance();
|
||||
|
||||
@Test
|
||||
|
|
|
@ -28,7 +28,7 @@ import org.apache.poi.poifs.crypt.HashAlgorithm;
|
|||
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestEncryptionInfo {
|
||||
class TestEncryptionInfo {
|
||||
@Test
|
||||
void testEncryptionInfo() throws IOException {
|
||||
POIFSFileSystem fs = new POIFSFileSystem(POIDataSamples.getPOIFSInstance().openResourceAsStream("protect.xlsx"));
|
||||
|
|
|
@ -66,7 +66,7 @@ import org.apache.poi.xwpf.usermodel.XWPFParagraph;
|
|||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestEncryptor {
|
||||
class TestEncryptor {
|
||||
@Test
|
||||
void binaryRC4Encryption() throws Exception {
|
||||
// please contribute a real sample file, which is binary rc4 encrypted
|
||||
|
|
|
@ -44,7 +44,7 @@ import org.junit.jupiter.params.ParameterizedTest;
|
|||
import org.junit.jupiter.params.provider.Arguments;
|
||||
import org.junit.jupiter.params.provider.MethodSource;
|
||||
|
||||
public class TestHxxFEncryption {
|
||||
class TestHxxFEncryption {
|
||||
public static Stream<Arguments> data() throws IOException {
|
||||
final String base64 =
|
||||
"H4sIAAAAAAAAAF1Uu24bMRDs/RULVwkgCUhSpHaZwkDgpHJH8fZ0G/Nx4ZI6y13yG/mRfIb9R5mlZFlIpdPtcnZmdnjPf57/vvx6+f3h6obuv3"+
|
||||
|
|
|
@ -43,7 +43,7 @@ import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|||
import org.apache.xmlbeans.XmlException;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestSecureTempZip {
|
||||
class TestSecureTempZip {
|
||||
|
||||
/**
|
||||
* Test case for #59841 - this is an example on how to use encrypted temp files,
|
||||
|
|
|
@ -53,7 +53,7 @@ import org.junit.jupiter.api.Test;
|
|||
/**
|
||||
* Test rendering - specific to font handling
|
||||
*/
|
||||
public class TestFonts {
|
||||
class TestFonts {
|
||||
private static final POIDataSamples _slTests = POIDataSamples.getSlideShowInstance();
|
||||
|
||||
private static final String JPTEXT =
|
||||
|
|
|
@ -33,7 +33,7 @@ import org.apache.poi.sl.usermodel.TextParagraph;
|
|||
import org.apache.poi.sl.usermodel.TextShape;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestHeadersFooters {
|
||||
class TestHeadersFooters {
|
||||
@Test
|
||||
void bug58144c() throws IOException {
|
||||
SlideShow<?,?> ppt = openSampleSlideshow("bug58144-headers-footers-2007.pptx");
|
||||
|
|
|
@ -61,7 +61,7 @@ import org.junit.jupiter.params.ParameterizedTest;
|
|||
import org.junit.jupiter.params.provider.Arguments;
|
||||
import org.junit.jupiter.params.provider.MethodSource;
|
||||
|
||||
public class TestOleShape {
|
||||
class TestOleShape {
|
||||
private static final String PDF_SAMPLE =
|
||||
"H4sIAAAAAAAAAJWUezRUWxzHe+o2FXncVtxLpxi3FPOeKYspjMdM5J1S4TTOaDIzxzpzJo9CUrnrSiUxIeT" +
|
||||
"9jB7yqInihrhepTwqt1AT5VZCC7XcY0LWcv+5Z521zz6fvX+/vb/7t9cX78CyMiQZ0XD4W4OFEzgKQATgg4" +
|
||||
|
|
|
@ -35,7 +35,7 @@ import org.apache.poi.sl.usermodel.SlideShowFactory;
|
|||
import org.apache.poi.xslf.usermodel.XMLSlideShow;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestSlide {
|
||||
class TestSlide {
|
||||
|
||||
@Test
|
||||
void hideHSLF() throws IOException {
|
||||
|
|
|
@ -43,7 +43,7 @@ import org.apache.poi.sl.usermodel.TextShape.TextDirection;
|
|||
import org.apache.poi.xslf.usermodel.XMLSlideShow;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestTable {
|
||||
class TestTable {
|
||||
|
||||
@Test
|
||||
void colWidthRowHeight() throws IOException {
|
||||
|
|
|
@ -40,7 +40,7 @@ import org.apache.poi.util.Units;
|
|||
import org.junit.jupiter.api.BeforeAll;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestDrawPictureShape {
|
||||
class TestDrawPictureShape {
|
||||
final static POIDataSamples ssSamples = POIDataSamples.getSlideShowInstance();
|
||||
|
||||
private static boolean xslfOnly;
|
||||
|
|
|
@ -40,7 +40,7 @@ import org.apache.poi.ss.usermodel.Workbook;
|
|||
import org.apache.poi.ss.usermodel.WorkbookFactory;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestEmbeddedExtractor {
|
||||
class TestEmbeddedExtractor {
|
||||
private static final POIDataSamples samples = POIDataSamples.getSpreadSheetInstance();
|
||||
|
||||
@Test
|
||||
|
|
|
@ -54,7 +54,7 @@ import org.junit.jupiter.api.Test;
|
|||
* flag "Categories" is not empty, only tests that have at least one category
|
||||
* listed in "Categories" are run.
|
||||
*/
|
||||
public class TestCellFormatPart {
|
||||
class TestCellFormatPart {
|
||||
private static final Pattern NUMBER_EXTRACT_FMT = Pattern.compile(
|
||||
"([-+]?[0-9]+)(\\.[0-9]+)?.*(?:(e).*?([+-]?[0-9]+))",
|
||||
Pattern.CASE_INSENSITIVE);
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.junit.jupiter.api.Test;
|
|||
*
|
||||
* @author David North
|
||||
*/
|
||||
public class TestFormulaParser {
|
||||
class TestFormulaParser {
|
||||
|
||||
@Test
|
||||
void testHSSFFailsForOver65536() {
|
||||
|
|
|
@ -42,7 +42,7 @@ import org.junit.jupiter.api.Test;
|
|||
* Excel Structured Reference Syntax
|
||||
* </a>
|
||||
*/
|
||||
public class TestStructuredReferences {
|
||||
class TestStructuredReferences {
|
||||
|
||||
/**
|
||||
* Test the regular expression used in INDIRECT() evaluation to recognize structured references
|
||||
|
|
|
@ -33,7 +33,7 @@ import org.junit.jupiter.api.Test;
|
|||
/**
|
||||
*
|
||||
*/
|
||||
public class TestSumifsXSSF {
|
||||
class TestSumifsXSSF {
|
||||
|
||||
/**
|
||||
* handle null cell predicate
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.junit.jupiter.api.Test;
|
|||
/**
|
||||
* Test the VLOOKUP function
|
||||
*/
|
||||
public class TestVlookup {
|
||||
class TestVlookup {
|
||||
|
||||
@Test
|
||||
void testFullColumnAreaRef61841() throws IOException {
|
||||
|
|
|
@ -65,7 +65,7 @@ import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|||
import org.junit.jupiter.api.BeforeAll;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestEmbedOLEPackage {
|
||||
class TestEmbedOLEPackage {
|
||||
private static byte[] samplePPT, samplePPTX, samplePNG;
|
||||
|
||||
private static final POIDataSamples ssamples = POIDataSamples.getSpreadSheetInstance();
|
||||
|
|
|
@ -35,7 +35,7 @@ import org.junit.jupiter.api.AfterEach;
|
|||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestXSSFRangeCopier extends BaseTestRangeCopier {
|
||||
class TestXSSFRangeCopier extends BaseTestRangeCopier {
|
||||
public TestXSSFRangeCopier() {
|
||||
super();
|
||||
workbook = new XSSFWorkbook();
|
||||
|
|
|
@ -20,7 +20,7 @@ package org.apache.poi.ss.tests.util;
|
|||
import org.apache.poi.ss.util.BaseTestCellUtil;
|
||||
import org.apache.poi.xssf.SXSSFITestDataProvider;
|
||||
|
||||
public class TestSXSSFCellUtil extends BaseTestCellUtil {
|
||||
class TestSXSSFCellUtil extends BaseTestCellUtil {
|
||||
public TestSXSSFCellUtil() {
|
||||
super(SXSSFITestDataProvider.instance);
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ package org.apache.poi.ss.tests.util;
|
|||
import org.apache.poi.ss.util.BaseTestCellUtil;
|
||||
import org.apache.poi.xssf.XSSFITestDataProvider;
|
||||
|
||||
public class TestXSSFCellUtil extends BaseTestCellUtil {
|
||||
class TestXSSFCellUtil extends BaseTestCellUtil {
|
||||
public TestXSSFCellUtil() {
|
||||
super(XSSFITestDataProvider.instance);
|
||||
}
|
||||
|
|
|
@ -35,7 +35,7 @@ import org.apache.poi.ss.util.PropertyTemplate;
|
|||
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestXSSFPropertyTemplate {
|
||||
class TestXSSFPropertyTemplate {
|
||||
|
||||
@Test
|
||||
void applyBorders() throws IOException {
|
||||
|
|
|
@ -26,7 +26,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
|
|||
import org.apache.poi.ooxml.util.IdentifierManager;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestIdentifierManager {
|
||||
class TestIdentifierManager {
|
||||
@Test
|
||||
void testBasic()
|
||||
{
|
||||
|
|
|
@ -40,7 +40,7 @@ import org.junit.jupiter.api.BeforeAll;
|
|||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestTempFileThreaded {
|
||||
class TestTempFileThreaded {
|
||||
private static final int NUMBER_OF_THREADS = 10;
|
||||
private static final int NUMBER_OF_TESTS = 200;
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ import org.openxmlformats.schemas.drawingml.x2006.chart.*;
|
|||
import org.openxmlformats.schemas.drawingml.x2006.main.*;
|
||||
|
||||
// aim is to get these classes loaded and included in poi-ooxml-lite.jar
|
||||
public class TestNecessaryOOXMLClasses {
|
||||
class TestNecessaryOOXMLClasses {
|
||||
|
||||
@Test
|
||||
void testProblemClasses() {
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.xmlunit.builder.DiffBuilder;
|
|||
import org.xmlunit.builder.Input;
|
||||
import org.xmlunit.diff.Diff;
|
||||
|
||||
public class TestXDDFColor {
|
||||
class TestXDDFColor {
|
||||
private static final String XMLNS = "xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"/>";
|
||||
|
||||
@Test
|
||||
|
|
|
@ -26,7 +26,7 @@ import org.apache.poi.ooxml.POIXMLRelation;
|
|||
import org.junit.jupiter.api.Test;
|
||||
import org.openxmlformats.schemas.drawingml.x2006.chart.CTChartSpace;
|
||||
|
||||
public class TestXDDFChart {
|
||||
class TestXDDFChart {
|
||||
@Test
|
||||
void testConstruct() {
|
||||
// minimal test to cause ooxml-lite to include all the classes in poi-ooxml-lite
|
||||
|
|
|
@ -21,7 +21,7 @@ import static org.junit.jupiter.api.Assertions.assertNotNull;
|
|||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestXDDFChartExtensionList {
|
||||
class TestXDDFChartExtensionList {
|
||||
|
||||
@Test
|
||||
void getXmlObject() {
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.junit.jupiter.api.Test;
|
|||
/**
|
||||
* Test case for bug 63153
|
||||
*/
|
||||
public class TestXDDFChartRemoveSeries {
|
||||
class TestXDDFChartRemoveSeries {
|
||||
final File resultDir = new File("build/custom-reports-test");
|
||||
String procName = null;
|
||||
String fileName = null;
|
||||
|
|
|
@ -31,7 +31,7 @@ import org.junit.jupiter.api.Test;
|
|||
/**
|
||||
* Tests for {@link XDDFDataSourcesFactory}.
|
||||
*/
|
||||
public class TestXDDFDataSourcesFactory {
|
||||
class TestXDDFDataSourcesFactory {
|
||||
|
||||
private static final Object[][] numericCells = {
|
||||
{0.0, 1.0, 2.0, 3.0, 4.0},
|
||||
|
|
|
@ -26,7 +26,7 @@ import org.apache.poi.util.Units;
|
|||
import org.junit.jupiter.api.Test;
|
||||
import org.openxmlformats.schemas.drawingml.x2006.main.CTTextBodyProperties;
|
||||
|
||||
public class TestXDDFTextBodyProperties {
|
||||
class TestXDDFTextBodyProperties {
|
||||
|
||||
@Test
|
||||
void testProperties() throws IOException {
|
||||
|
|
|
@ -40,7 +40,7 @@ import org.apache.poi.xssf.usermodel.XSSFTextBox;
|
|||
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestXDDFTextRun {
|
||||
class TestXDDFTextRun {
|
||||
|
||||
@Test
|
||||
void testTextRunPropertiesInSlide() throws IOException {
|
||||
|
|
|
@ -29,7 +29,7 @@ import org.junit.jupiter.api.AfterEach;
|
|||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestXDGFVisioExtractor {
|
||||
class TestXDGFVisioExtractor {
|
||||
|
||||
private static final POIDataSamples SAMPLES = POIDataSamples.getDiagramInstance();
|
||||
private OPCPackage pkg;
|
||||
|
|
|
@ -27,7 +27,7 @@ import org.apache.xmlbeans.XmlObject;
|
|||
import org.junit.jupiter.api.Test;
|
||||
|
||||
// aim is to get these classes loaded and included in poi-ooxml-lite.jar
|
||||
public class TestNecessaryOOXMLClasses {
|
||||
class TestNecessaryOOXMLClasses {
|
||||
|
||||
@Test
|
||||
void testProblemClasses() {
|
||||
|
|
|
@ -112,7 +112,7 @@ import org.junit.jupiter.api.function.ThrowingSupplier;
|
|||
import org.openxmlformats.schemas.drawingml.x2006.main.CTOuterShadowEffect;
|
||||
import org.openxmlformats.schemas.presentationml.x2006.main.CTShape;
|
||||
|
||||
public class TestXSLFBugs {
|
||||
class TestXSLFBugs {
|
||||
private static final POIDataSamples slTests = POIDataSamples.getSlideShowInstance();
|
||||
|
||||
private static boolean xslfOnly;
|
||||
|
|
|
@ -42,7 +42,7 @@ import org.openxmlformats.schemas.presentationml.x2006.main.CTSlideMasterIdListE
|
|||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
public class TestXSLFSlideShow {
|
||||
class TestXSLFSlideShow {
|
||||
private static final POIDataSamples slTests = POIDataSamples.getSlideShowInstance();
|
||||
private OPCPackage pack;
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ import org.junit.jupiter.api.Test;
|
|||
/**
|
||||
* Tests for XSLFPowerPointExtractor
|
||||
*/
|
||||
public class TestXSLFPowerPointExtractor {
|
||||
class TestXSLFPowerPointExtractor {
|
||||
private static final POIDataSamples slTests = POIDataSamples.getSlideShowInstance();
|
||||
|
||||
/**
|
||||
|
|
|
@ -41,7 +41,7 @@ import org.junit.jupiter.params.provider.MethodSource;
|
|||
* Test class for testing PPTX2PNG utility which renders .ppt and .pptx slideshows
|
||||
*/
|
||||
@SuppressWarnings("ConstantConditions")
|
||||
public class TestPPTX2PNG {
|
||||
class TestPPTX2PNG {
|
||||
private static boolean xslfOnly;
|
||||
private static final POIDataSamples samples = POIDataSamples.getSlideShowInstance();
|
||||
private static final File basedir = null;
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.openxmlformats.schemas.presentationml.x2006.main.CTNotesMasterIdListE
|
|||
import org.openxmlformats.schemas.presentationml.x2006.main.CTSlideIdListEntry;
|
||||
import org.openxmlformats.schemas.presentationml.x2006.main.CTSlideMasterIdListEntry;
|
||||
|
||||
public class TestXMLSlideShow extends BaseTestSlideShow<XSLFShape, XSLFTextParagraph> {
|
||||
class TestXMLSlideShow extends BaseTestSlideShow<XSLFShape, XSLFTextParagraph> {
|
||||
private OPCPackage pack;
|
||||
|
||||
@Override
|
||||
|
|
|
@ -36,7 +36,7 @@ import org.openxmlformats.schemas.drawingml.x2006.main.CTTextCharacterProperties
|
|||
import org.openxmlformats.schemas.drawingml.x2006.main.STTextStrikeType;
|
||||
import org.openxmlformats.schemas.drawingml.x2006.main.STTextUnderlineType;
|
||||
|
||||
public class TestXSLFAutoShape {
|
||||
class TestXSLFAutoShape {
|
||||
@Test
|
||||
void testTextBodyProperies() throws IOException {
|
||||
XMLSlideShow ppt = new XMLSlideShow();
|
||||
|
|
|
@ -26,7 +26,7 @@ import java.io.IOException;
|
|||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
public class TestXSLFBackground {
|
||||
class TestXSLFBackground {
|
||||
@Test
|
||||
void testNoFillBackground() throws IOException {
|
||||
XMLSlideShow pptx = new XMLSlideShow();
|
||||
|
|
|
@ -61,7 +61,7 @@ import org.junit.jupiter.api.Test;
|
|||
/**
|
||||
* a modified version from POI-examples
|
||||
*/
|
||||
public class TestXSLFChart {
|
||||
class TestXSLFChart {
|
||||
@Test
|
||||
void testFillPieChartTemplate() throws IOException {
|
||||
XMLSlideShow pptx = XSLFTestDataSamples.openSampleDocument("pie-chart.pptx");
|
||||
|
|
|
@ -32,7 +32,7 @@ import org.openxmlformats.schemas.drawingml.x2006.main.STPresetColorVal;
|
|||
import org.openxmlformats.schemas.drawingml.x2006.main.STSchemeColorVal;
|
||||
import org.openxmlformats.schemas.drawingml.x2006.main.STSystemColorVal;
|
||||
|
||||
public class TestXSLFColor {
|
||||
class TestXSLFColor {
|
||||
|
||||
@Test
|
||||
void testGetters() {
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.openxmlformats.schemas.drawingml.x2006.main.STLineEndWidth;
|
|||
import org.openxmlformats.schemas.drawingml.x2006.main.STShapeType;
|
||||
import org.openxmlformats.schemas.presentationml.x2006.main.CTConnector;
|
||||
|
||||
public class TestXSLFConnectorShape {
|
||||
class TestXSLFConnectorShape {
|
||||
|
||||
@Test
|
||||
void testLineDecorations() throws IOException {
|
||||
|
|
|
@ -55,7 +55,7 @@ import org.openxmlformats.schemas.presentationml.x2006.main.STTLTimeNodeType;
|
|||
* Reimplement and test examples classes so the necessary XmlBeans schema objects are included
|
||||
* in the lite schema
|
||||
*/
|
||||
public class TestXSLFExamples {
|
||||
class TestXSLFExamples {
|
||||
@Test
|
||||
void LinkVideoToPptx() throws IOException, URISyntaxException {
|
||||
String videoFileName = "file_example_MP4_640_3MG.mp4";
|
||||
|
|
|
@ -36,7 +36,7 @@ import java.io.IOException;
|
|||
import static org.apache.poi.xslf.usermodel.TestXSLFSimpleShape.getSpPr;
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
public class TestXSLFFreeformShape {
|
||||
class TestXSLFFreeformShape {
|
||||
|
||||
@Test
|
||||
void testSetPath() throws IOException {
|
||||
|
|
|
@ -26,7 +26,7 @@ import java.awt.geom.Rectangle2D;
|
|||
import org.apache.poi.xslf.XSLFTestDataSamples;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestXSLFGroupShape {
|
||||
class TestXSLFGroupShape {
|
||||
|
||||
@Test
|
||||
void testCreateShapes() throws Exception {
|
||||
|
|
|
@ -30,7 +30,7 @@ import org.apache.poi.openxml4j.opc.TargetMode;
|
|||
import org.apache.poi.xslf.XSLFTestDataSamples;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestXSLFHyperlink {
|
||||
class TestXSLFHyperlink {
|
||||
|
||||
@Test
|
||||
void testRead() throws IOException{
|
||||
|
|
|
@ -26,7 +26,7 @@ import org.apache.poi.sl.usermodel.Placeholder;
|
|||
import org.apache.poi.xslf.XSLFTestDataSamples;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestXSLFNotes {
|
||||
class TestXSLFNotes {
|
||||
|
||||
@Test
|
||||
void createNewNote() throws IOException {
|
||||
|
|
|
@ -45,7 +45,7 @@ import org.apache.poi.xslf.util.PPTX2PNG;
|
|||
import org.junit.jupiter.api.Test;
|
||||
import org.openxmlformats.schemas.presentationml.x2006.main.CTPicture;
|
||||
|
||||
public class TestXSLFPictureShape {
|
||||
class TestXSLFPictureShape {
|
||||
private static POIDataSamples _slTests = POIDataSamples.getSlideShowInstance();
|
||||
|
||||
@Test
|
||||
|
|
|
@ -27,7 +27,7 @@ import org.apache.poi.xslf.XSLFTestDataSamples;
|
|||
import org.junit.jupiter.api.Test;
|
||||
import org.openxmlformats.schemas.drawingml.x2006.main.STTextUnderlineType;
|
||||
|
||||
public class TestXSLFShape {
|
||||
class TestXSLFShape {
|
||||
|
||||
@Test
|
||||
void testReadTextShapes() throws IOException {
|
||||
|
|
|
@ -27,7 +27,7 @@ import org.junit.jupiter.api.Test;
|
|||
/**
|
||||
* test common operations on containers of shapes (sheets and groups of shapes)
|
||||
*/
|
||||
public class TestXSLFShapeContainer {
|
||||
class TestXSLFShapeContainer {
|
||||
|
||||
void verifyContainer(XSLFShapeContainer container) {
|
||||
container.clear();
|
||||
|
|
|
@ -29,7 +29,7 @@ import org.junit.jupiter.api.Test;
|
|||
*
|
||||
* @author Yegor Kozlov
|
||||
*/
|
||||
public class TestXSLFSheet {
|
||||
class TestXSLFSheet {
|
||||
|
||||
@Test
|
||||
void testCreateShapes() throws IOException {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.openxmlformats.schemas.drawingml.x2006.main.STLineCap;
|
|||
import org.openxmlformats.schemas.drawingml.x2006.main.STPresetLineDashVal;
|
||||
import org.openxmlformats.schemas.drawingml.x2006.main.STShapeType;
|
||||
|
||||
public class TestXSLFSimpleShape {
|
||||
class TestXSLFSimpleShape {
|
||||
|
||||
@Test
|
||||
void testLineStyles() throws IOException {
|
||||
|
|
|
@ -34,7 +34,7 @@ import org.junit.jupiter.api.Test;
|
|||
/**
|
||||
* @author Yegor Kozlov
|
||||
*/
|
||||
public class TestXSLFSlide {
|
||||
class TestXSLFSlide {
|
||||
|
||||
@Test
|
||||
void testReadShapes() throws IOException {
|
||||
|
|
|
@ -31,7 +31,7 @@ import org.junit.jupiter.api.Test;
|
|||
/**
|
||||
* @author Yegor Kozlov
|
||||
*/
|
||||
public class TestXSLFSlideShow {
|
||||
class TestXSLFSlideShow {
|
||||
@Test
|
||||
void testCreateSlide() throws IOException {
|
||||
XMLSlideShow ppt = new XMLSlideShow();
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.junit.jupiter.api.Test;
|
|||
import org.openxmlformats.schemas.drawingml.x2006.main.CTTableCell;
|
||||
import org.openxmlformats.schemas.presentationml.x2006.main.CTGraphicalObjectFrame;
|
||||
|
||||
public class TestXSLFTable {
|
||||
class TestXSLFTable {
|
||||
|
||||
@Test
|
||||
void testResize() throws Exception {
|
||||
|
|
|
@ -28,7 +28,7 @@ import org.junit.jupiter.api.Test;
|
|||
import org.openxmlformats.schemas.drawingml.x2006.main.CTTableCell;
|
||||
import org.openxmlformats.schemas.drawingml.x2006.main.CTTableRow;
|
||||
|
||||
public class TestXSLFTableRow {
|
||||
class TestXSLFTableRow {
|
||||
|
||||
private static XMLSlideShow ppt;
|
||||
private static XSLFTable tbl;
|
||||
|
|
|
@ -23,7 +23,7 @@ import java.io.IOException;
|
|||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestXSLFTableStyles {
|
||||
class TestXSLFTableStyles {
|
||||
|
||||
@Test
|
||||
void testRead() throws IOException {
|
||||
|
|
|
@ -28,7 +28,7 @@ import org.openxmlformats.schemas.drawingml.x2006.main.CTTextCharacterProperties
|
|||
/**
|
||||
* @author Yegor Kozlov
|
||||
*/
|
||||
public class TestXSLFTextBox {
|
||||
class TestXSLFTextBox {
|
||||
|
||||
@Test
|
||||
void testPlaceholder() throws IOException {
|
||||
|
|
|
@ -41,7 +41,7 @@ import org.junit.jupiter.api.Test;
|
|||
/**
|
||||
* @author Yegor Kozlov
|
||||
*/
|
||||
public class TestXSLFTextParagraph {
|
||||
class TestXSLFTextParagraph {
|
||||
// private static POILogger _logger = POILogFactory.getLogger(XSLFTextParagraph.class);
|
||||
|
||||
static class DrawTextParagraphProxy extends DrawTextParagraph {
|
||||
|
|
|
@ -39,7 +39,7 @@ import org.openxmlformats.schemas.presentationml.x2006.main.CTShape;
|
|||
/**
|
||||
* @author Yegor Kozlov
|
||||
*/
|
||||
public class TestXSLFTextRun {
|
||||
class TestXSLFTextRun {
|
||||
|
||||
@Test
|
||||
void testRunProperties() throws IOException {
|
||||
|
|
|
@ -52,7 +52,7 @@ import org.openxmlformats.schemas.drawingml.x2006.main.STTextAlignType;
|
|||
import org.openxmlformats.schemas.presentationml.x2006.main.CTPlaceholder;
|
||||
import org.openxmlformats.schemas.presentationml.x2006.main.STPlaceholderType;
|
||||
|
||||
public class TestXSLFTextShape {
|
||||
class TestXSLFTextShape {
|
||||
private static boolean xslfOnly;
|
||||
|
||||
@BeforeAll
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.junit.jupiter.api.Test;
|
|||
*
|
||||
* @author Yegor Kozlov
|
||||
*/
|
||||
public class TestXSLFTheme {
|
||||
class TestXSLFTheme {
|
||||
@Test
|
||||
void testRead(){
|
||||
XMLSlideShow ppt = XSLFTestDataSamples.openSampleDocument("themes.pptx");
|
||||
|
|
|
@ -24,7 +24,7 @@ import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTRow;
|
|||
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTSheetData;
|
||||
|
||||
// aim is to get these classes loaded and included in poi-ooxml-lite.jar
|
||||
public class TestNecessaryOOXMLClasses {
|
||||
class TestNecessaryOOXMLClasses {
|
||||
|
||||
@Test
|
||||
void testProblemClasses() {
|
||||
|
|
|
@ -27,7 +27,7 @@ import java.io.IOException;
|
|||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
public class TestSheetProtection {
|
||||
class TestSheetProtection {
|
||||
private XSSFWorkbook workbook;
|
||||
private XSSFSheet sheet;
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ import org.apache.poi.xssf.usermodel.XSSFSheet;
|
|||
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestWorkbookProtection {
|
||||
class TestWorkbookProtection {
|
||||
|
||||
@Test
|
||||
void workbookAndRevisionPassword() throws Exception {
|
||||
|
|
|
@ -33,7 +33,7 @@ import org.junit.jupiter.api.Test;
|
|||
|
||||
import java.io.IOException;
|
||||
|
||||
public class TestXSSFCloneSheet extends BaseTestCloneSheet {
|
||||
class TestXSSFCloneSheet extends BaseTestCloneSheet {
|
||||
public TestXSSFCloneSheet() {
|
||||
super(HSSFITestDataProvider.instance);
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@ import org.junit.jupiter.api.Test;
|
|||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
public class TestXSSFOffset {
|
||||
class TestXSSFOffset {
|
||||
|
||||
@Test
|
||||
void testOffsetWithEmpty23Arguments() throws IOException {
|
||||
|
|
|
@ -27,7 +27,7 @@ import org.apache.poi.openxml4j.opc.OPCPackage;
|
|||
import org.apache.poi.openxml4j.opc.PackagePart;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestXSSFBSharedStringsTable {
|
||||
class TestXSSFBSharedStringsTable {
|
||||
private static POIDataSamples _ssTests = POIDataSamples.getSpreadSheetInstance();
|
||||
|
||||
@Test
|
||||
|
|
|
@ -29,7 +29,7 @@ import org.apache.poi.xssf.eventusermodel.XSSFBReader;
|
|||
import org.apache.poi.xssf.eventusermodel.XSSFReader;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestXSSFBSheetHyperlinkManager {
|
||||
class TestXSSFBSheetHyperlinkManager {
|
||||
private static POIDataSamples _ssTests = POIDataSamples.getSpreadSheetInstance();
|
||||
|
||||
@Test
|
||||
|
|
|
@ -34,7 +34,7 @@ import org.apache.poi.xssf.binary.XSSFBStylesTable;
|
|||
import org.apache.poi.xssf.usermodel.XSSFComment;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestXSSFBReader {
|
||||
class TestXSSFBReader {
|
||||
|
||||
private static POIDataSamples _ssTests = POIDataSamples.getSpreadSheetInstance();
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ import java.nio.file.Files;
|
|||
/**
|
||||
* Tests for {@link XSSFBEventBasedExcelExtractor}
|
||||
*/
|
||||
public class TestXSSFBEventBasedExcelExtractor {
|
||||
class TestXSSFBEventBasedExcelExtractor {
|
||||
protected XSSFEventBasedExcelExtractor getExtractor(String sampleName) throws Exception {
|
||||
return new XSSFBEventBasedExcelExtractor(XSSFTestDataSamples.
|
||||
openSamplePackage(sampleName));
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.junit.jupiter.api.Test;
|
|||
/**
|
||||
* Tests for {@link XSSFEventBasedExcelExtractor}
|
||||
*/
|
||||
public class TestXSSFEventBasedExcelExtractor {
|
||||
class TestXSSFEventBasedExcelExtractor {
|
||||
protected XSSFEventBasedExcelExtractor getExtractor(String sampleName) throws Exception {
|
||||
return new XSSFEventBasedExcelExtractor(XSSFTestDataSamples.
|
||||
openSamplePackage(sampleName));
|
||||
|
|
|
@ -21,7 +21,7 @@ import org.apache.poi.hssf.HSSFTestDataSamples;
|
|||
import org.junit.jupiter.api.AfterEach;
|
||||
|
||||
|
||||
public class TestXSSFEventBasedExcelExtractorUsingFactory extends TestXSSFEventBasedExcelExtractor {
|
||||
class TestXSSFEventBasedExcelExtractorUsingFactory extends TestXSSFEventBasedExcelExtractor {
|
||||
@Override
|
||||
protected final XSSFEventBasedExcelExtractor getExtractor(String sampleName) throws Exception {
|
||||
ExtractorFactory.setAllThreadsPreferEventExtractors(true);
|
||||
|
|
|
@ -40,7 +40,7 @@ import org.junit.jupiter.api.Test;
|
|||
/**
|
||||
* Tests for {@link XSSFExcelExtractor}
|
||||
*/
|
||||
public class TestXSSFExcelExtractor {
|
||||
class TestXSSFExcelExtractor {
|
||||
protected XSSFExcelExtractor getExtractor(String sampleName) {
|
||||
return new XSSFExcelExtractor(XSSFTestDataSamples.openSampleWorkbook(sampleName));
|
||||
}
|
||||
|
|
|
@ -42,7 +42,7 @@ import org.junit.jupiter.api.Test;
|
|||
import org.junit.jupiter.api.Timeout;
|
||||
import org.xml.sax.SAXException;
|
||||
|
||||
public class TestXSSFImportFromXML {
|
||||
class TestXSSFImportFromXML {
|
||||
|
||||
@Test
|
||||
void testImportFromXML() throws IOException, XPathExpressionException, SAXException{
|
||||
|
|
|
@ -32,7 +32,7 @@ import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|||
import org.junit.jupiter.api.Test;
|
||||
|
||||
|
||||
public class TestLoadSaveXSSF {
|
||||
class TestLoadSaveXSSF {
|
||||
private static final POIDataSamples _ssSamples = POIDataSamples.getSpreadSheetInstance();
|
||||
|
||||
@Test
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComments;
|
|||
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTRst;
|
||||
|
||||
|
||||
public class TestCommentsTable {
|
||||
class TestCommentsTable {
|
||||
|
||||
private static final String TEST_A2_TEXT = "test A2 text";
|
||||
private static final String TEST_A1_TEXT = "test A1 text";
|
||||
|
|
|
@ -44,7 +44,7 @@ import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|||
import org.junit.jupiter.api.Test;
|
||||
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor;
|
||||
|
||||
public class TestThemesTable {
|
||||
class TestThemesTable {
|
||||
private static final String testFileComplex = "Themes2.xlsx";
|
||||
// TODO .xls version available too, add HSSF support then check
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.junit.jupiter.api.Test;
|
|||
*
|
||||
* see Bug #57450 which reported the original misbehaviour
|
||||
*/
|
||||
public class TestAutoSizeColumnTracker {
|
||||
class TestAutoSizeColumnTracker {
|
||||
|
||||
private SXSSFSheet sheet;
|
||||
private SXSSFWorkbook workbook;
|
||||
|
|
|
@ -52,7 +52,7 @@ import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTRst;
|
|||
* Tests various functionality having to do with {@link SXSSFCell}. For instance support for
|
||||
* particular datatypes, etc.
|
||||
*/
|
||||
public class TestSXSSFCell extends BaseTestXCell {
|
||||
class TestSXSSFCell extends BaseTestXCell {
|
||||
|
||||
public TestSXSSFCell() {
|
||||
super(SXSSFITestDataProvider.instance);
|
||||
|
|
|
@ -29,7 +29,7 @@ import org.apache.poi.ss.util.CellRangeAddressList;
|
|||
import org.apache.poi.xssf.SXSSFITestDataProvider;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestSXSSFDataValidation extends BaseTestDataValidation {
|
||||
class TestSXSSFDataValidation extends BaseTestDataValidation {
|
||||
|
||||
public TestSXSSFDataValidation(){
|
||||
super(SXSSFITestDataProvider.instance);
|
||||
|
|
|
@ -28,7 +28,7 @@ import java.util.ArrayList;
|
|||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public class TestSXSSFEvaluationSheet extends BaseTestXEvaluationSheet {
|
||||
class TestSXSSFEvaluationSheet extends BaseTestXEvaluationSheet {
|
||||
private List<Workbook> workbooksToClose = new ArrayList<>();
|
||||
|
||||
@AfterEach
|
||||
|
|
|
@ -31,7 +31,7 @@ import org.apache.poi.xssf.usermodel.XSSFHyperlink;
|
|||
*
|
||||
* @author Yegor Kozlov
|
||||
*/
|
||||
public class TestSXSSFHyperlink extends BaseTestHyperlink {
|
||||
class TestSXSSFHyperlink extends BaseTestHyperlink {
|
||||
|
||||
public TestSXSSFHyperlink() {
|
||||
super(SXSSFITestDataProvider.instance);
|
||||
|
|
|
@ -50,7 +50,7 @@ import org.junit.jupiter.params.provider.MethodSource;
|
|||
*
|
||||
* see Bug #57450 which reported the original misbehaviour
|
||||
*/
|
||||
public class TestSXSSFSheetAutoSizeColumn {
|
||||
class TestSXSSFSheetAutoSizeColumn {
|
||||
|
||||
private static final String SHORT_CELL_VALUE = "Ben";
|
||||
private static final String LONG_CELL_VALUE = "B Be Ben Beni Benif Benify Benif Beni Ben Be B";
|
||||
|
|
|
@ -31,7 +31,7 @@ import java.io.FileInputStream;
|
|||
import java.io.FileOutputStream;
|
||||
import java.io.IOException;
|
||||
|
||||
public class TestSXSSFUnicodeSurrogates {
|
||||
class TestSXSSFUnicodeSurrogates {
|
||||
|
||||
// "𝝊𝝋𝝌𝝍𝝎𝝏𝝐𝝑𝝒𝝓𝝔𝝕𝝖𝝗𝝘𝝙𝝚𝝛𝝜𝝝𝝞𝝟𝝠𝝡𝝢𝝣𝝤𝝥𝝦𝝧𝝨𝝩𝝪𝝫𝝬𝝭𝝮𝝯𝝰𝝱𝝲𝝳𝝴𝝵𝝶𝝷𝝸𝝹𝝺";
|
||||
private static final String unicodeText =
|
||||
|
|
|
@ -35,7 +35,7 @@ import org.junit.jupiter.api.Test;
|
|||
/**
|
||||
* Test built-in table styles
|
||||
*/
|
||||
public class TestTableStyles {
|
||||
class TestTableStyles {
|
||||
|
||||
/**
|
||||
* Test that a built-in style is initialized properly
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue