Package test.org.jboss.forge.furnace.classpath

Source Code of test.org.jboss.forge.furnace.classpath.JAXBLookupTest$TestRoot

/*
* Copyright 2014 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Eclipse Public License version 1.0, available at
* http://www.eclipse.org/legal/epl-v10.html
*/
package test.org.jboss.forge.furnace.classpath;

import java.io.ByteArrayInputStream;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.annotation.XmlRootElement;

import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.forge.arquillian.archive.ForgeArchive;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;

@RunWith(Arquillian.class)
public class JAXBLookupTest
{
   @Deployment
   public static ForgeArchive getDeployment()
   {
      ForgeArchive archive = ShrinkWrap.create(ForgeArchive.class)
               .addClass(TestRoot.class)
               .addAsLocalServices(JAXBLookupTest.class);

      return archive;
   }

   @Test
   public void testGetJDKProvidedJAXBImpl() throws Exception
   {
      try
      {
         getClass().getClassLoader().loadClass("com.sun.xml.internal.bind.v2.ContextFactory");
      }
      catch (Exception e)
      {
         Assert.fail("Could not load required Factory class." + e.getMessage());
      }
   }

   @Test
   public void testJAXBLookup() throws Exception
   {
      Assert.assertNotNull(JAXBContext.newInstance(TestRoot.class).createUnmarshaller()
               .unmarshal(new ByteArrayInputStream("<testRoot/>".getBytes())));
   }

   @XmlRootElement
   public static class TestRoot
   {

   }
}
TOP

Related Classes of test.org.jboss.forge.furnace.classpath.JAXBLookupTest$TestRoot

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.