Failing, disabled unit test for bug #60973
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1791098 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1078cef19c
commit
3bd1f662f3
@ -18,6 +18,7 @@ package org.apache.poi.xdgf.extractor;
|
|||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
||||||
|
import static org.apache.poi.POITestCase.assertContains;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
@ -27,6 +28,7 @@ import org.apache.poi.openxml4j.opc.OPCPackage;
|
|||||||
import org.apache.poi.xdgf.usermodel.XmlVisioDocument;
|
import org.apache.poi.xdgf.usermodel.XmlVisioDocument;
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
public class TestXDGFVisioExtractor {
|
public class TestXDGFVisioExtractor {
|
||||||
@ -72,7 +74,26 @@ public class TestXDGFVisioExtractor {
|
|||||||
is.close();
|
is.close();
|
||||||
XDGFVisioExtractor extractor = new XDGFVisioExtractor(document);
|
XDGFVisioExtractor extractor = new XDGFVisioExtractor(document);
|
||||||
String text = extractor.getText();
|
String text = extractor.getText();
|
||||||
assertTrue(text.indexOf("Arrears") > -1);
|
assertContains(text, "Arrears");
|
||||||
|
extractor.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Currently failing with:
|
||||||
|
* org.apache.poi.POIXMLException: Invalid 'Row_Type' name 'PolylineTo'
|
||||||
|
* at org.apache.poi.xdgf.util.ObjectFactory.load
|
||||||
|
* at org.apache.poi.xdgf.usermodel.section.geometry.GeometryRowFactory.load
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
@Ignore("TODO Fix bug #60973")
|
||||||
|
public void testPolylineTo() throws IOException {
|
||||||
|
InputStream is = SAMPLES.openResourceAsStream("60973.vsdx");
|
||||||
|
XmlVisioDocument document = new XmlVisioDocument(is);
|
||||||
|
is.close();
|
||||||
|
XDGFVisioExtractor extractor = new XDGFVisioExtractor(document);
|
||||||
|
String text = extractor.getText();
|
||||||
|
assertContains(text, "42 U");
|
||||||
|
assertContains(text, "Access VLANS");
|
||||||
extractor.close();
|
extractor.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
BIN
test-data/diagram/60973.vsdx
Normal file
BIN
test-data/diagram/60973.vsdx
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user