/* * Copyright 2008 Joachim Grueneis * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.castor.xmlctf.bestpractise; import java.io.InputStream; import junit.framework.Assert; import junit.framework.TestCase; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.castor.mapping.BindingType; import org.castor.mapping.MappingUnmarshaller; import org.exolab.castor.mapping.Mapping; import org.exolab.castor.mapping.MappingException; import org.exolab.castor.mapping.MappingLoader; import org.exolab.castor.xml.ClassDescriptorResolver; import org.exolab.castor.xml.ClassDescriptorResolverFactory; import org.exolab.castor.xml.MarshalException; import org.exolab.castor.xml.ResolverException; import org.exolab.castor.xml.Unmarshaller; import org.exolab.castor.xml.ValidationException; import org.exolab.castor.xml.XMLClassDescriptorResolver; import org.xml.sax.InputSource; /** * @author Joachim Grueneis, jgrueneis AT codehaus DOT org * @version $Id$ * */ public class XmlClassDescriptorResolverTest extends TestCase { private static final Log LOG = LogFactory.getLog(XmlClassDescriptorResolverTest.class); /** * {@inheritDoc} * * @see junit.framework.TestCase#setUp() */ protected void setUp() throws Exception { super.setUp(); } public void testWithMapping() { try { InputStream strmMapping = this.getClass().getClassLoader().getResourceAsStream("withmapping-mapping.xml"); Assert.assertNotNull("InputStream of mapping must not be null", strmMapping); InputSource srcMapping = new InputSource(strmMapping); Assert.assertNotNull("InputSource of mapping must not be null", srcMapping); Mapping mapping = new Mapping(); mapping.loadMapping(srcMapping); ClassDescriptorResolver classDescriptorResolver = ClassDescriptorResolverFactory .createClassDescriptorResolver(BindingType.XML); MappingUnmarshaller mappingUnmarshaller = new MappingUnmarshaller(); MappingLoader mappingLoader = mappingUnmarshaller.getMappingLoader( mapping, BindingType.XML); classDescriptorResolver.setMappingLoader(mappingLoader); Unmarshaller unmarshaller = new Unmarshaller(); unmarshaller .setResolver((XMLClassDescriptorResolver) classDescriptorResolver); InputStream stream = this.getClass().getClassLoader().getResourceAsStream("withmapping-input.xml"); Assert.assertNotNull("InputStream must not be null", stream); InputSource is = new InputSource(stream); Assert.assertNotNull("Inputstream must not be null", is); Object o = unmarshaller.unmarshal(is); Assert.assertNotNull("Result of unmarshal must not be null", o); } catch (MappingException e) { LOG.error("Failed with exception: " + e, e); Assert.fail("Failed with exception: " + e); } catch (MarshalException e) { LOG.error("Failed with exception: " + e, e); Assert.fail("Failed with exception: " + e); } catch (ValidationException e) { LOG.error("Failed with exception: " + e, e); Assert.fail("Failed with exception: " + e); } } public void testWithPackage() { try { XMLClassDescriptorResolver classDescriptorResolver = (XMLClassDescriptorResolver) ClassDescriptorResolverFactory .createClassDescriptorResolver(BindingType.XML); classDescriptorResolver .setClassLoader(XmlClassDescriptorResolverTest.class .getClassLoader()); classDescriptorResolver.addPackage("org.castor.xmlctf.bestpractise.genpackage"); Unmarshaller unmarshaller = new Unmarshaller(); unmarshaller.setResolver(classDescriptorResolver); InputStream stream = this.getClass().getClassLoader().getResourceAsStream("genpackage-input.xml"); Assert.assertNotNull("InputStream must not be null", stream); InputSource is = new InputSource(stream); Assert.assertNotNull("Inputstream must not be null", is); Object o = unmarshaller.unmarshal(is); Assert.assertNotNull("Result of unmarshal must not be null", o); } catch (ResolverException e) { LOG.error("Failed with exception: " + e, e); Assert.fail("Failed with exception: " + e); } catch (MarshalException e) { LOG.error("Failed with exception: " + e, e); Assert.fail("Failed with exception: " + e); } catch (ValidationException e) { LOG.error("Failed with exception: " + e, e); Assert.fail("Failed with exception: " + e); } } }