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.OleBaseTestCase;
22  import java.io.ByteArrayInputStream;
23  import java.io.InputStream;
24  
25  import static junit.framework.Assert.assertTrue;
26  
27  public class OlePatronXMLSchemaValidation_UT extends OleBaseTestCase {
28  
29      private static final Logger LOG = Logger.getLogger(OlePatronXMLSchemaValidation_UT.class);
30      private static final String PATRON_XML_FILE = "samplePatronRecord.xml";
31  
32      @Test
33      public void testPatronXMLSchemaValidation() throws Exception {
34          byte[] patronByteArray;
35          patronByteArray = IOUtils.toByteArray(getClass().getResourceAsStream(PATRON_XML_FILE));
36          ByteArrayInputStream patronSchemaByteArray = new ByteArrayInputStream(patronByteArray);
37          OlePatronXMLSchemaValidator olePatronXMLSchemaValidator = new OlePatronXMLSchemaValidator();
38          boolean schemaFlag=olePatronXMLSchemaValidator.validateContentsAgainstSchema(patronSchemaByteArray);
39          assertTrue(schemaFlag);
40      }
41  
42  }