1 package org.kuali.ole.utility;
2
3 import org.junit.Test;
4 import org.kuali.ole.docstore.model.xmlpojo.ingest.RequestDocument;
5 import org.kuali.ole.docstore.model.xstream.ingest.IngestDocumentHandler;
6 import org.kuali.ole.docstore.utility.XMLUtility;
7 import org.kuali.ole.docstore.xstream.BaseTestCase;
8 import org.kuali.ole.docstore.xstream.FileUtil;
9 import org.slf4j.Logger;
10 import org.slf4j.LoggerFactory;
11
12 import java.io.File;
13 import java.net.URL;
14
15
16
17
18
19
20
21
22 public class XMLUtility_UT extends BaseTestCase {
23 private static final Logger LOG = LoggerFactory.getLogger(XMLUtility_UT.class);
24
25 @Test
26 public void testXMLUtility() throws Exception {
27 XMLUtility xmlUtility = new XMLUtility();
28 URL resource = getClass().getResource("/org/kuali/ole/docstore/model/xstream/ingest/single-record-ingest.xml");
29 File file = new File(resource.toURI());
30 String fileContnet = new FileUtil().readFile(file);
31 IngestDocumentHandler ingestDocumentHandler = new IngestDocumentHandler();
32 RequestDocument request = ingestDocumentHandler.toObject(fileContnet);
33 StringBuffer sb = xmlUtility.getAllContentText(request.getContent().getContent());
34 LOG.info(sb.toString());
35 }
36
37 }