aboutsummaryrefslogtreecommitdiffstats
path: root/poi-integration/src/test
Commit message (Collapse)AuthorAgeFilesLines
...
* try to fix rat checkPJ Fanning2022-06-281-4/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902313 13f79535-47bb-0310-9956-ffa450edef68
* #66115 - Some Password protected XLS files are not readAndreas Beeker2022-06-161-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1901996 13f79535-47bb-0310-9956-ffa450edef68
* Use a modified version of NullPrintStream in integration testsDominik Stadler2022-04-032-2/+61
| | | | | | | | | | | | The default version from Commons-IO does not avoid doing utf-8 conversion and other work, so it is not well suited for cases where lots of output happens. Using an optimized version can bring down runtime of integration-tests somewhat, especially for large files where XLS2CSV prints out lots of data git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1899532 13f79535-47bb-0310-9956-ffa450edef68
* use spaces for indentsPJ Fanning2022-03-201-5/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1899082 13f79535-47bb-0310-9956-ffa450edef68
* Avoid flaky tests with parallel executionDominik Stadler2022-03-201-0/+1
| | | | | | | One test stores and deletes files named "-saved.xls", so we need to prevent other tests from reading those git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1899077 13f79535-47bb-0310-9956-ffa450edef68
* Remove unused imports, remove unnecessary boxing of int-value and apply some ↵Dominik Stadler2022-03-201-1/+2
| | | | | | other IDE suggestions git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1899076 13f79535-47bb-0310-9956-ffa450edef68
* Fix some SpotBugs reportsDominik Stadler2022-02-242-3/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1898383 13f79535-47bb-0310-9956-ffa450edef68
* exclude files failing on windows nodes, because of limited JCE policiesAndreas Beeker2022-02-221-1/+16
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1898330 13f79535-47bb-0310-9956-ffa450edef68
* refactor some stream codePJ Fanning2022-02-191-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1898213 13f79535-47bb-0310-9956-ffa450edef68
* normdist (init work)PJ Fanning2022-01-251-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1897475 13f79535-47bb-0310-9956-ffa450edef68
* Remove one unnecessary excludeDominik Stadler2022-01-222-1/+1
| | | | | | It seems the problem when cloning was fixed in the meantime git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1897335 13f79535-47bb-0310-9956-ffa450edef68
* Exclude one more file when running tests without poi-scratchpadDominik Stadler2022-01-221-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1897334 13f79535-47bb-0310-9956-ffa450edef68
* Add more output when integration-tests do not fail with the expected exceptionDominik Stadler2022-01-221-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1897333 13f79535-47bb-0310-9956-ffa450edef68
* Adjust thread-names when running integrationDominik Stadler2022-01-221-17/+36
| | | | | | | This allows to identify in thread-dumps which file is taking a long time or is causing issues git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1897332 13f79535-47bb-0310-9956-ffa450edef68
* refactor CopyCompare againPJ Fanning2021-12-301-11/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1896543 13f79535-47bb-0310-9956-ffa450edef68
* try to fix test issuePJ Fanning2021-12-301-5/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1896542 13f79535-47bb-0310-9956-ffa450edef68
* rewrite CopyCompare to remove its ThreadLocal which causes a sonar code smellPJ Fanning2021-12-301-6/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1896536 13f79535-47bb-0310-9956-ffa450edef68
* Move org.apache.poi.hssf.dev classes from poi:main to poi:testAndreas Beeker2021-11-151-5/+2
| | | | | | Use CloseShieldOutputStream instead of CloseIgnoringInputStream git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895041 13f79535-47bb-0310-9956-ffa450edef68
* Add missing exclude for CI run "no-scratchpad"Dominik Stadler2021-11-071-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894816 13f79535-47bb-0310-9956-ffa450edef68
* Use parallel build to speed up building and running testsDominik Stadler2021-11-071-1/+8
| | | | | | | | | | | | | | | | Enable parallel building and parallel test-execution Provide a configuration to still build/test serially on CI via CI_BUILD=TRUE gradle --no-parallel --max-workers=1 clean build Adjust Jenkins DSL to set CI_BUILD to avoid problems in CI Adjust TestAllFiles to not fail when parallel builds are enabled Reduce memory settings to reduce requirements on build-environments Add gradle plugin to list task-dependencies Thanks to Andreas Reichel for the PR Closes #275 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894812 13f79535-47bb-0310-9956-ffa450edef68
* Make file-handlers for integration-test public to be able to use them in ↵Dominik Stadler2021-10-2215-15/+15
| | | | | | poi-mass-testing git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894478 13f79535-47bb-0310-9956-ffa450edef68
* Give better names to parameterized testsDominik Stadler2021-10-211-2/+2
| | | | | | Otherwise they cannot be distinguished in the JUnit HTML report git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894449 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixesAndreas Beeker2021-10-181-12/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894360 13f79535-47bb-0310-9956-ffa450edef68
* setDisallowDocTypeDeclarationPJ Fanning2021-10-143-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894222 13f79535-47bb-0310-9956-ffa450edef68
* deprecationPJ Fanning2021-10-061-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893935 13f79535-47bb-0310-9956-ffa450edef68
* use httpsPJ Fanning2021-09-271-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893673 13f79535-47bb-0310-9956-ffa450edef68
* try to get all ooxml-lite classes loaded for xslfPJ Fanning2021-09-151-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893361 13f79535-47bb-0310-9956-ffa450edef68
* XmlSec/BouncyCastle and Batik are now optionalAndreas Beeker2021-09-122-1/+8
| | | | | | | | | | disable SonarQube build based on ant remove sonar and maven directory, because POMs are now created via Gradle remove maven section from seed-build fix duplicated maven dependencies on POM export git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893289 13f79535-47bb-0310-9956-ffa450edef68
* Adjust imports and apply some IDE suggestionsDominik Stadler2021-09-101-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893211 13f79535-47bb-0310-9956-ffa450edef68
* try not to have poi-integration in pomPJ Fanning2021-09-051-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892931 13f79535-47bb-0310-9956-ffa450edef68
* update to release 5.1.0Andreas Beeker2021-09-031-0/+0
| | | | | | fix ooxml-lite build git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892887 13f79535-47bb-0310-9956-ffa450edef68
* update module-info.classes for next releaseAndreas Beeker2021-09-021-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892829 13f79535-47bb-0310-9956-ffa450edef68
* try to fix no-scratchpad buildAndreas Beeker2021-09-016-155/+115
| | | | | | remove or set-to-static scratchpad dependency from modules git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892795 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixesAndreas Beeker2021-08-282-4/+9
| | | | | | | close resources in tests fix gradle warnings git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892683 13f79535-47bb-0310-9956-ffa450edef68
* exclude file from integration testPJ Fanning2021-07-201-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1891686 13f79535-47bb-0310-9956-ffa450edef68
* try to fix integration testsPJ Fanning2021-07-166-34/+40
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1891579 13f79535-47bb-0310-9956-ffa450edef68
* try to fix failing testsPJ Fanning2021-07-151-2/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1891565 13f79535-47bb-0310-9956-ffa450edef68
* try to fix failing testsPJ Fanning2021-07-141-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1891556 13f79535-47bb-0310-9956-ffa450edef68
* try to fix failing testsPJ Fanning2021-07-142-9/+20
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1891555 13f79535-47bb-0310-9956-ffa450edef68
* add extra debug logging to failing testsPJ Fanning2021-07-142-2/+18
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1891554 13f79535-47bb-0310-9956-ffa450edef68
* convert tabs to spacesPJ Fanning2021-05-2214-540/+540
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1890125 13f79535-47bb-0310-9956-ffa450edef68
* #65304 - Add commons-io as a dependencyAndreas Beeker2021-05-147-58/+32
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1889871 13f79535-47bb-0310-9956-ffa450edef68
* Do not return null for POITextExtractor.getMetadataTextExtractor() for old ↵Dominik Stadler2021-04-261-2/+2
| | | | | | | | | Excel files To adhere to the JavaDoc of the POITextExtractor interface which does not document a possible null return. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1889205 13f79535-47bb-0310-9956-ffa450edef68
* TIKA-3164 - add more .xsb and classes needed for TIKAs extractorAndreas Beeker2021-04-191-6/+18
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1888985 13f79535-47bb-0310-9956-ffa450edef68
* 65206 - Migrate ant / maven to gradle buildAndreas Beeker2021-04-0731-0/+3079
compile / jar / test of mrJars don't include ants build.xml anymore rename directories to match project and maven artifact names refactor artifacts - so each project has one artifact replace static references in hssf/dev tests with junit5 constructs, which had problems in parallel tests increase gradle heap to 4gb because of OOM - maybe less would also work git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1888488 13f79535-47bb-0310-9956-ffa450edef68