summaryrefslogtreecommitdiffstats
path: root/src/scratchpad/testcases
Commit message (Collapse)AuthorAgeFilesLines
* @Ignore("requires an internet connection to a 3rd party site"Javen O'Neal2017-06-201-1/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1799326 13f79535-47bb-0310-9956-ffa450edef68
* #61162 - En-/decryption support for HWPFAndreas Beeker2017-06-141-69/+0
| | | | | | | | - encryption support for HWPF - refactor/unify EncryptionInfo handling in H**F classes - remove Iterable interface from WorkbookRecordList - use getRecords() instead, to prevent modifications over the Iterator git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1798722 13f79535-47bb-0310-9956-ffa450edef68
* Bug 60374: Add test for ArrayIndexOutOfBounds on old Word Documents due to ↵Dominik Stadler2017-06-091-2/+18
| | | | | | Non-Unicode git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1798200 13f79535-47bb-0310-9956-ffa450edef68
* Replace HWPFOutputStream with ByteArrayOutputStream - it doesn't add any new ↵Andreas Beeker2017-06-065-71/+62
| | | | | | features git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1797838 13f79535-47bb-0310-9956-ffa450edef68
* #61162 - En-/decryption support for HWPFAndreas Beeker2017-06-061-0/+69
| | | | | | Decryption for Binary RC4 and CryptoAPI (... XOR is missing) git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1797837 13f79535-47bb-0310-9956-ffa450edef68
* fix eclipse resource leak warningsAndreas Beeker2017-05-3115-251/+248
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1797043 13f79535-47bb-0310-9956-ffa450edef68
* replace "String.indexOf(String) >= 1" with "String.contains(String)"Javen O'Neal2017-05-162-9/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1795296 13f79535-47bb-0310-9956-ffa450edef68
* Use assertContains instead of assertTrue(text.contains) for better error ↵Javen O'Neal2017-04-206-22/+25
| | | | | | messages on failure git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1792009 13f79535-47bb-0310-9956-ffa450edef68
* Use assertContains instead of assertTrue(text.contains) for better error ↵Javen O'Neal2017-04-194-69/+61
| | | | | | messages on failure git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1792007 13f79535-47bb-0310-9956-ffa450edef68
* Let IntelliJ cleanup some code-warnings across the whole code-base: ↵Dominik Stadler2017-04-171-1/+1
| | | | | | unnecessary toString or semicolon git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1791720 13f79535-47bb-0310-9956-ffa450edef68
* bug 50955 and bug 60953 improve Big5 reader; ensure one characterTim Allison2017-04-052-4/+2
| | | | | | per byte pair git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1790172 13f79535-47bb-0310-9956-ffa450edef68
* bug 50955 -- turn off test that now passes in Java 1.8 and 1.7 Tim Allison2017-04-041-2/+3
| | | | | | but not 1.6 until we can fix it git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1790136 13f79535-47bb-0310-9956-ffa450edef68
* bug 50955 -- fix for java 7Tim Allison2017-04-041-0/+20
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1790130 13f79535-47bb-0310-9956-ffa450edef68
* bug 50955 -- word 6.0 charset fixTim Allison2017-04-043-17/+102
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1790061 13f79535-47bb-0310-9956-ffa450edef68
* Bug 60795 -- add enum for message class in MAPIMessage; deprecate ↵Tim Allison2017-03-011-4/+24
| | | | | | getMessageClass() git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1784978 13f79535-47bb-0310-9956-ffa450edef68
* Convert all *.java files to use native end of line character(s)Javen O'Neal2017-02-0813-1322/+1322
| | | | | | | | $ dos2unix `find -name *.java` $ svn propset svn:eol-style native `find -name *.java` git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1782114 13f79535-47bb-0310-9956-ffa450edef68
* #60625 - Rendering issue with background and shape overlayed by imageAndreas Beeker2017-02-083-57/+73
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1782096 13f79535-47bb-0310-9956-ffa450edef68
* Revert previous changes enough to restore the case in the commoncrawl-corpus ↵Dominik Stadler2017-02-051-0/+7
| | | | | | which is failing now, add a unit-test for this case, enable one disabled unit-test git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1781822 13f79535-47bb-0310-9956-ffa450edef68
* Adjust for JDK 9 ea152 and newer: certain whitespaces in XML may now be trimmedDominik Stadler2017-02-051-58/+54
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1781821 13f79535-47bb-0310-9956-ffa450edef68
* Bug 60677 -- handle multibyte encodings correctly in HwmfGraphics' ↵Tim Allison2017-02-031-0/+26
| | | | | | drawString. Thanks to Dominik Stadler for finding this bug and a triggering doc via large scale regression testing. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1781593 13f79535-47bb-0310-9956-ffa450edef68
* Finally enable test for bug 44937, we got the requested missing ↵Dominik Stadler2017-01-261-2/+3
| | | | | | test-documents a long time ago already. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1780456 13f79535-47bb-0310-9956-ffa450edef68
* IntelliJ warnings, Javadoc, FormattingDominik Stadler2017-01-261-2/+1
| | | | | | Changes for the RecordFormatException deprecation git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1780453 13f79535-47bb-0310-9956-ffa450edef68
* Cover some dev-tools with a few simple tests, close resources correctlyDominik Stadler2017-01-261-0/+54
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1780451 13f79535-47bb-0310-9956-ffa450edef68
* fix eclipse warnings - close resourcesAndreas Beeker2017-01-237-155/+197
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1779869 13f79535-47bb-0310-9956-ffa450edef68
* Bug 60608 -- improve charset handling in HwmfTim Allison2017-01-191-2/+36
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1779519 13f79535-47bb-0310-9956-ffa450edef68
* Bug 60570 - Add rudimentary EMF read-only capabilityTim Allison2017-01-192-0/+263
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1779493 13f79535-47bb-0310-9956-ffa450edef68
* fix eclipse warnings / close resources in testsAndreas Beeker2017-01-164-207/+252
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1778958 13f79535-47bb-0310-9956-ffa450edef68
* fix eclipse warnings - close resources / type genericsAndreas Beeker2017-01-156-273/+276
| | | | | | cleanup sources - add parenthesis to statements git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1778955 13f79535-47bb-0310-9956-ffa450edef68
* add unit tests for MAPIMessage.get*Body()Javen O'Neal2017-01-051-6/+32
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1777463 13f79535-47bb-0310-9956-ffa450edef68
* junit improvements: assertEquals(null|true|false, ...) -> assertNull, ↵Javen O'Neal2017-01-051-8/+8
| | | | | | assertTrue, assertFalse git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1777450 13f79535-47bb-0310-9956-ffa450edef68
* junit3 -> junit4Javen O'Neal2017-01-051-9/+28
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1777435 13f79535-47bb-0310-9956-ffa450edef68
* bug 60550: read ContentID chunks from mail attachments; unit test and ↵Javen O'Neal2017-01-051-1/+1
| | | | | | test-data/hsmf/attachmet_msg_inlineImg.msg contributed by maoblackberry@gmail.com git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1777429 13f79535-47bb-0310-9956-ffa450edef68
* bug 60550: read ContentID chunks from mail attachmentsJaven O'Neal2017-01-051-3/+36
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1777428 13f79535-47bb-0310-9956-ffa450edef68
* whitespace: 3/4sp -> 4spJaven O'Neal2017-01-051-91/+89
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1777427 13f79535-47bb-0310-9956-ffa450edef68
* junit improvements:Javen O'Neal2017-01-051-15/+15
| | | | | | | assertEquals(null, ...) -> assertNull(...) attachment.getAttachFileName().toString() -> attachment.getAttachFileName().getValue() git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1777423 13f79535-47bb-0310-9956-ffa450edef68
* Fix missing license-headersDominik Stadler2016-12-312-0/+40
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1776806 13f79535-47bb-0310-9956-ffa450edef68
* Cover some dev-tools with a few simple tests, close resources correctlyDominik Stadler2016-12-312-0/+44
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1776798 13f79535-47bb-0310-9956-ffa450edef68
* fix eclipse warnings - close resourcesAndreas Beeker2016-12-1910-374/+386
| | | | | | add getter for HSLF slideshows implementation class git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1774974 13f79535-47bb-0310-9956-ffa450edef68
* eclipse warnings - close resourcesAndreas Beeker2016-12-139-823/+925
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773910 13f79535-47bb-0310-9956-ffa450edef68
* SonarCube fix - make members privateAndreas Beeker2016-12-135-203/+184
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773907 13f79535-47bb-0310-9956-ffa450edef68
* SonarCube fix - make members privateAndreas Beeker2016-12-011-18/+34
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1772291 13f79535-47bb-0310-9956-ffa450edef68
* #60427 - Creating pictures in PowerPoint slides requires scratchpad-jar for ↵Andreas Beeker2016-11-281-14/+23
| | | | | | adding WMF images git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1771812 13f79535-47bb-0310-9956-ffa450edef68
* SonarCube fixes - visibility of member attributesAndreas Beeker2016-11-271-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1771583 13f79535-47bb-0310-9956-ffa450edef68
* whitespace clean up before fix for BUG-60305Tim Allison2016-10-281-311/+318
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1767021 13f79535-47bb-0310-9956-ffa450edef68
* Fix close warningsNick Burch2016-10-251-11/+18
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1766503 13f79535-47bb-0310-9956-ffa450edef68
* WhitespaceNick Burch2016-10-251-72/+72
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1766501 13f79535-47bb-0310-9956-ffa450edef68
* v5 text extractionNick Burch2016-10-251-5/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1766497 13f79535-47bb-0310-9956-ffa450edef68
* Inconsistent whitespaceNick Burch2016-10-251-21/+21
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1766493 13f79535-47bb-0310-9956-ffa450edef68
* Refactor child pointer logic to the factoryNick Burch2016-10-251-0/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1766492 13f79535-47bb-0310-9956-ffa450edef68
* Partial Visio v5 pointer supportNick Burch2016-10-252-7/+37
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1766480 13f79535-47bb-0310-9956-ffa450edef68