Browse Source

HWPF: test auto-saved document

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@961342 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_7_BETA2
Maxim Valyanskiy 14 years ago
parent
commit
d7c62aae58

+ 10
- 0
src/scratchpad/testcases/org/apache/poi/hwpf/extractor/TestWordExtractor.java View File

@@ -288,4 +288,14 @@ public final class TestWordExtractor extends TestCase {
assertEquals(1, tp.length);
assertEquals("The quick brown fox jumps over the lazy dog\r\n", tp[0]);
}

public void testFastSaved() throws Exception {
extractor = new WordExtractor(
POIDataSamples.getDocumentInstance().openResourceAsStream("rasp.doc")
);

String text = extractor.getText();
assertTrue(text.contains("\u0425\u0425\u0425\u0425\u0425"));
assertTrue(text.contains("\u0423\u0423\u0423\u0423\u0423"));
}
}

+ 8
- 2
src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestPictures.java View File

@@ -141,14 +141,20 @@ public final class TestPictures extends TestCase {
HWPFDocument doc = HWPFTestDataSamples.openSampleFile("Bug44603.doc");

List pics = doc.getPicturesTable().getAllPictures();
assertEquals(pics.size(), 2);
assertEquals(2, pics.size());
}

public void testPicturesInHeader() {
HWPFDocument doc = HWPFTestDataSamples.openSampleFile("header_image.doc");

List pics = doc.getPicturesTable().getAllPictures();
assertEquals(pics.size(), 2);
assertEquals(2, pics.size());
}

public void testFastSaved() {
HWPFDocument doc = HWPFTestDataSamples.openSampleFile("rasp.doc");

doc.getPicturesTable().getAllPictures(); // just check that we do not throw Exception
}

}

BIN
test-data/document/rasp.doc View File


Loading…
Cancel
Save