/** * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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.apache.openejb.jee.oejb3; import junit.framework.TestCase; import junit.framework.AssertionFailedError; import javax.xml.bind.JAXBContext; import javax.xml.bind.Unmarshaller; import javax.xml.bind.Marshaller; import javax.xml.bind.ValidationEventHandler; import javax.xml.bind.ValidationEvent; import org.custommonkey.xmlunit.Diff; import org.custommonkey.xmlunit.XMLUnit; import org.custommonkey.xmlunit.DetailedDiff; import org.apache.openejb.jee.JAXBContextFactory; import java.io.InputStream; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.BufferedInputStream; /** * @version $Revision$ $Date$ */ public class OpenejbJarTest extends TestCase { public void testAll() throws Exception { final JAXBContext ctx = JAXBContextFactory.newInstance(OpenejbJar.class); final Unmarshaller unmarshaller = ctx.createUnmarshaller(); final InputStream in = this.getClass().getClassLoader().getResourceAsStream("openejb-jar.xml"); final String expected = readContent(in); unmarshaller.setEventHandler(new TestValidationEventHandler()); final Object object = unmarshaller.unmarshal(new ByteArrayInputStream(expected.getBytes())); assertTrue(object instanceof OpenejbJar); final Marshaller marshaller = ctx.createMarshaller(); marshaller.setProperty("jaxb.formatted.output", true); final ByteArrayOutputStream baos = new ByteArrayOutputStream(); marshaller.marshal(object, baos); final String actual = new String(baos.toByteArray()); XMLUnit.setIgnoreWhitespace(true); try { final Diff myDiff = new DetailedDiff(new Diff(expected, actual)); assertTrue("Files are not similar " + myDiff, myDiff.similar()); } catch (final AssertionFailedError e) { e.printStackTrace(); assertEquals(expected, actual); throw e; } } private java.lang.String readContent(InputStream in) throws IOException { final StringBuilder sb = new StringBuilder(); in = new BufferedInputStream(in); int i = in.read(); while (i != -1) { sb.append((char) i); i = in.read(); } final java.lang.String content = sb.toString(); return content; } private static class TestValidationEventHandler implements ValidationEventHandler { public boolean handleEvent(final ValidationEvent validationEvent) { System.out.println(validationEvent.getMessage()); return true; } } }