blob: ff4f2ea43f6cb5485287a065d242949c8f7f5497 [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.oxm.xmlmarshaller.setschemas;
import java.net.URL;
import org.eclipse.persistence.oxm.*;
import org.eclipse.persistence.testing.oxm.OXTestCase;
import org.xml.sax.ErrorHandler;
public class SetSchemasTestCases extends OXTestCase {
private static final String VALID_XML_RESOURCE = "org/eclipse/persistence/testing/oxm/xmlmarshaller/setschemas/valid.xml";
private static final String INVALID_XML_RESOURCE = "org/eclipse/persistence/testing/oxm/xmlmarshaller/setschemas/invalid.xml";
private XMLContext xmlContext;
private XMLUnmarshaller xmlUnmarshaller;
public SetSchemasTestCases(String name) {
super(name);
}
@Override
public void setUp() {
EmployeeProject project = new EmployeeProject();
xmlContext = getXMLContext(project);
xmlUnmarshaller = xmlContext.createUnmarshaller();
xmlUnmarshaller.setErrorHandler(new MyErrorHandler());
}
public void testInvalidFile() {
URL url = ClassLoader.getSystemResource(INVALID_XML_RESOURCE);
xmlUnmarshaller.unmarshal(url);
}
public void testValidateInvalidFile() {
boolean wasExceptionCaught = false;
try {
xmlUnmarshaller.setValidationMode(XMLUnmarshaller.SCHEMA_VALIDATION);
URL url = ClassLoader.getSystemResource(INVALID_XML_RESOURCE);
xmlUnmarshaller.unmarshal(url);
} catch (Exception e) {
wasExceptionCaught = true;
}
assertTrue("An exception should have been thrown.", wasExceptionCaught);
}
public void testValidFile() {
URL url = ClassLoader.getSystemResource(VALID_XML_RESOURCE);
xmlUnmarshaller.unmarshal(url);
}
public void testValidateValidFile() {
xmlUnmarshaller.setValidationMode(XMLUnmarshaller.SCHEMA_VALIDATION);
URL url = ClassLoader.getSystemResource(VALID_XML_RESOURCE);
xmlUnmarshaller.unmarshal(url);
}
/**
* Error handler implementation for handling parser errors
*/
class MyErrorHandler implements ErrorHandler {
@Override
public void warning(org.xml.sax.SAXParseException sex) throws org.xml.sax.SAXParseException {
}
@Override
public void error(org.xml.sax.SAXParseException sex) throws org.xml.sax.SAXParseException {
throw sex;
}
@Override
public void fatalError(org.xml.sax.SAXParseException sex) throws org.xml.sax.SAXParseException {
throw sex;
}
}
}