View Javadoc
1   /*
2    * Copyright 2012 The Kuali Foundation.
3    *
4    * Licensed under the Educational Community License, Version 1.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl1.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.ole.ingest;
17  
18  import org.apache.commons.io.IOUtils;
19  import org.apache.log4j.Logger;
20  import org.junit.Test;
21  import org.kuali.ole.OLEConstants;
22  
23  import java.io.ByteArrayInputStream;
24  import java.util.Map;
25  
26  import static junit.framework.Assert.assertTrue;
27  
28  public class OlePatronXMLSchemaValidation_UT  {
29  
30      private static final Logger LOG = Logger.getLogger(OlePatronXMLSchemaValidation_UT.class);
31      private static final String PATRON_XML_FILE = "samplePatronRecord.xml";
32  
33      @Test
34      public void testPatronXMLSchemaValidation() throws Exception {
35          byte[] patronByteArray;
36          patronByteArray = IOUtils.toByteArray(getClass().getResourceAsStream(PATRON_XML_FILE));
37          ByteArrayInputStream patronSchemaByteArray = new ByteArrayInputStream(patronByteArray);
38          OlePatronXMLSchemaValidator olePatronXMLSchemaValidator = new OlePatronXMLSchemaValidator();
39          //boolean schemaFlag=olePatronXMLSchemaValidator.validateContentsAgainstSchema(patronSchemaByteArray);
40          Map validateResultMap = olePatronXMLSchemaValidator.validateContentsAgainstSchema(patronSchemaByteArray);
41          boolean schemaFlag = (boolean)validateResultMap.get(OLEConstants.OlePatron.PATRON_XML_ISVALID);
42  
43          assertTrue(schemaFlag);
44      }
45  
46  }